/* Speaker and presentation */
.geo-speaker-page,
.geo-presentation-page {
  --speaker-width: min(1320px, calc(100% - 80px));
}
.geo-speaker-page h1,
.geo-speaker-page h2,
.geo-presentation-page h1,
.geo-presentation-page h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.geo-speaker-page .service-eyebrow,
.geo-presentation-page .service-eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
}

.geo-speaker-hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.geo-speaker-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(42px, 6vw, 105px);
  position: relative;
  z-index: 1;
}

.geo-speaker-hero-copy::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -150px;
  width: 480px;
  height: 480px;
  border: 1px dashed rgba(8, 116, 203, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.geo-speaker-hero h1 {
  max-width: 800px;
  font-size: clamp(76px, 8.7vw, 144px);
}

.geo-speaker-hero-copy > p:not(.service-eyebrow) {
  max-width: 670px;
  margin: 34px 0 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
}

.geo-speaker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.geo-speaker-actions > a,
.geo-speaker-featured a,
.geo-presentation-speaker a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 27px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.geo-speaker-actions > a:hover,
.geo-speaker-featured a:hover,
.geo-presentation-speaker a:hover {
  transform: translateY(-2px);
  background: #0567b7;
}

.geo-speaker-actions > .geo-speaker-outline {
  background: transparent;
  color: var(--blue);
}

.geo-speaker-actions > .geo-speaker-outline:hover {
  background: rgba(8, 116, 203, 0.07);
}

.geo-speaker-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 28px;
  color: rgba(7, 26, 50, 0.64);
  font-size: 12px;
}

.geo-speaker-meta span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.geo-speaker-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

.geo-speaker-portrait {
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #06162b;
  border-left: 1px solid var(--line);
}

.geo-speaker-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.12), transparent 18%),
    linear-gradient(180deg, transparent 66%, rgba(7, 26, 50, 0.24));
}

.geo-speaker-portrait > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 46% center;
}

.geo-speaker-portrait > div:last-child {
  position: absolute;
  right: 28px;
  bottom: 27px;
  z-index: 3;
  max-width: 285px;
  padding: 19px 22px;
  background: rgba(248, 245, 239, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.geo-speaker-portrait > div:last-child strong,
.geo-speaker-portrait > div:last-child span {
  display: block;
}

.geo-speaker-portrait > div:last-child strong {
  margin-bottom: 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.geo-speaker-portrait > div:last-child span {
  font-size: 11px;
  line-height: 1.5;
}

.geo-speaker-signal {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.geo-speaker-signal span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  color: rgba(7, 26, 50, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.geo-speaker-signal span:not(:last-child) {
  border-right: 1px solid var(--line);
}

.geo-speaker-intro,
.geo-speaker-fit,
.geo-speaker-invite,
.geo-presentation-access {
  width: var(--speaker-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(55px, 8vw, 130px);
  padding: 115px 0;
}

.geo-speaker-intro h2,
.geo-speaker-fit h2,
.geo-speaker-invite h2,
.geo-presentation-access h2,
.geo-presentation-speaker h2 {
  font-size: clamp(50px, 5.6vw, 84px);
}

.geo-speaker-intro > div:last-child {
  padding-top: 36px;
}

.geo-speaker-intro > div:last-child p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
}

.geo-speaker-intro > div:last-child p + p {
  margin-top: 24px;
}

.geo-speaker-topics {
  padding: 112px max(40px, calc((100% - 1320px) / 2));
  background: var(--ink);
  color: #f8f5ef;
}

.geo-speaker-topics .service-eyebrow,
.geo-speaker-featured .service-eyebrow,
.geo-speaker-invite .service-eyebrow {
  color: var(--sky);
}

.geo-speaker-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.geo-speaker-section-head h2 {
  font-size: clamp(53px, 6.8vw, 96px);
}

.geo-speaker-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.geo-speaker-topic-grid article {
  min-height: 340px;
  padding: 31px clamp(23px, 2.2vw, 37px);
}

.geo-speaker-topic-grid article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.geo-speaker-topic-grid article > span {
  color: var(--sky);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.geo-speaker-topic-grid h3 {
  min-height: 98px;
  margin: 45px 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.03;
}

.geo-speaker-topic-grid p {
  margin: 0;
  color: rgba(248, 245, 239, 0.68);
  font-size: 13px;
  line-height: 1.75;
}

.geo-speaker-materials {
  width: var(--speaker-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.58fr 1fr;
  gap: 55px;
  align-items: center;
  padding: 115px 0;
}

.geo-speaker-materials h2,
.geo-speaker-featured h2 {
  font-size: clamp(53px, 6vw, 90px);
}

.geo-speaker-materials-copy > p:not(.service-eyebrow) {
  max-width: 590px;
  margin: 27px 0 0;
  font-size: 16px;
  line-height: 1.75;
}

.geo-speaker-qr-card {
  padding: 25px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 26, 50, 0.09);
}

.geo-speaker-qr-card img {
  display: block;
  width: 100%;
  height: auto;
}

.geo-speaker-qr-card p {
  margin: 17px 0 0;
  text-align: center;
}

.geo-speaker-qr-card strong,
.geo-speaker-qr-card span {
  display: block;
}

.geo-speaker-qr-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
}

.geo-speaker-qr-card span {
  margin-top: 3px;
  color: rgba(7, 26, 50, 0.57);
  font-size: 10px;
}

.geo-speaker-material-points article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.geo-speaker-material-points article:first-child {
  border-top: 1px solid var(--line);
}

.geo-speaker-material-points article > span {
  padding-top: 4px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
}

.geo-speaker-material-points strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.geo-speaker-material-points p {
  margin: 7px 0 0;
  color: rgba(7, 26, 50, 0.64);
  font-size: 12px;
  line-height: 1.55;
}

.geo-speaker-featured {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 600px;
  background: var(--ink);
  color: var(--cream);
}

.geo-speaker-featured > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 75px clamp(42px, 6vw, 100px);
}

.geo-speaker-featured > div > p:not(.service-eyebrow) {
  margin: 27px 0 0;
  color: rgba(248, 245, 239, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.geo-speaker-featured a {
  margin-top: 33px;
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.geo-speaker-featured a:hover {
  background: #ffd16d;
}

.geo-speaker-featured > img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.geo-speaker-fit > div:first-child ul {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.geo-speaker-fit > div:first-child li {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
}

.geo-speaker-fit > div:first-child li > span {
  color: var(--blue);
  font-weight: 600;
}

.geo-speaker-formats {
  padding-top: 15px;
}

.geo-speaker-formats article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 22px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.geo-speaker-formats article > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
}

.geo-speaker-formats strong,
.geo-speaker-formats small {
  display: block;
}

.geo-speaker-formats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
}

.geo-speaker-formats small {
  margin-top: 4px;
  color: rgba(7, 26, 50, 0.62);
  font-size: 12px;
}

.geo-speaker-invite {
  width: 100%;
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.24fr);
  align-items: start;
  padding: 110px max(40px, calc((100% - 1320px) / 2));
  background: var(--ink);
  color: var(--cream);
}

.geo-speaker-invite > div:first-child {
  position: sticky;
  top: 120px;
}

.geo-speaker-invite > div:first-child > p:not(.service-eyebrow) {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(248, 245, 239, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.geo-speaker-direct {
  display: grid;
  gap: 11px;
  margin-top: 35px;
  color: var(--sky);
  font-size: 13px;
}

.geo-speaker-invite-card {
  padding: clamp(28px, 4vw, 54px);
  background: var(--cream);
  color: var(--ink);
}

.geo-speaker-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}

.geo-speaker-form label,
.geo-presentation-form label {
  display: grid;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.geo-speaker-form input,
.geo-speaker-form textarea,
.geo-presentation-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(7, 26, 50, 0.27);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.geo-speaker-form input,
.geo-presentation-form input {
  min-height: 48px;
}

.geo-speaker-form textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.geo-speaker-form input:focus,
.geo-speaker-form textarea:focus,
.geo-presentation-form input:focus {
  border-color: var(--blue);
}

.geo-speaker-form-full {
  grid-column: 1 / -1;
}

.geo-speaker-form-consent,
.geo-presentation-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 11px !important;
  margin-top: 25px;
  color: rgba(7, 26, 50, 0.64);
  font-size: 10px !important;
  font-weight: 400 !important;
  line-height: 1.5;
  letter-spacing: 0 !important;
}

.geo-speaker-form-consent input,
.geo-presentation-consent input {
  width: 15px;
  min-height: 15px;
  flex: 0 0 15px;
  margin: 0;
  accent-color: var(--blue);
}

.geo-speaker-form-consent a,
.geo-presentation-card > small a {
  text-decoration: underline;
}

.geo-speaker-form button,
.geo-presentation-form button,
.geo-presentation-success > a:first-of-type {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 0 24px;
  border: 0;
  border-radius: 3px;
  background: var(--yellow);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.geo-speaker-form button:disabled,
.geo-presentation-form button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.geo-speaker-form-success {
  padding: 24px 0;
}

.geo-speaker-form-success > span,
.geo-presentation-success > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 23px;
}

.geo-speaker-form-success h3,
.geo-presentation-success h3 {
  margin: 24px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 600;
}

.geo-speaker-form-success p,
.geo-presentation-success p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.geo-speaker-form-success a {
  display: inline-flex;
  gap: 20px;
  margin-top: 25px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.geo-form-error {
  margin: 14px 0 0;
  color: #a82b2b;
  font-size: 11px;
  line-height: 1.5;
}

.geo-presentation-hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  padding: 86px clamp(40px, 6vw, 105px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.97) 0 46%, transparent 70%),
    radial-gradient(circle at 85% 20%, rgba(143, 201, 236, 0.28), transparent 32%);
}

.geo-presentation-copy {
  position: relative;
  z-index: 1;
}

.geo-presentation-copy h1 {
  font-size: clamp(82px, 9.2vw, 145px);
}

.geo-presentation-copy h2 {
  max-width: 720px;
  margin-top: 21px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.geo-presentation-copy > p:not(.service-eyebrow) {
  max-width: 520px;
  margin: 27px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.geo-presentation-benefits {
  display: grid;
  gap: 12px;
  margin-top: 31px;
  font-size: 12px;
}

.geo-presentation-benefits span {
  display: flex;
  align-items: center;
  gap: 11px;
}

.geo-presentation-benefits i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-style: normal;
}

.geo-presentation-visual {
  margin-left: -45px;
  position: relative;
}

.geo-presentation-visual > img {
  display: block;
  width: 100%;
  min-height: 455px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(7, 26, 50, 0.18);
  transform: rotate(1.8deg);
}

.geo-presentation-visual > p {
  position: absolute;
  right: 24px;
  bottom: 21px;
  margin: 0;
  padding: 16px 19px;
  background: rgba(248, 245, 239, 0.93);
  backdrop-filter: blur(12px);
}

.geo-presentation-visual strong,
.geo-presentation-visual span {
  display: block;
}

.geo-presentation-visual strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
}

.geo-presentation-visual span {
  margin-top: 3px;
  color: rgba(7, 26, 50, 0.6);
  font-size: 9px;
}

.geo-presentation-access {
  grid-template-columns: 1fr 0.72fr;
  align-items: start;
}

.geo-presentation-card {
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 80px rgba(7, 26, 50, 0.08);
}

.geo-presentation-card > p:not(.service-eyebrow) {
  max-width: 610px;
  margin: 23px 0 34px;
  font-size: 14px;
  line-height: 1.7;
}

.geo-presentation-card > small {
  display: block;
  margin-top: 21px;
  color: rgba(7, 26, 50, 0.57);
  font-size: 9px;
  line-height: 1.6;
}

.geo-presentation-form {
  display: grid;
  gap: 20px;
}

.geo-presentation-consent {
  margin-top: 2px;
}

.geo-presentation-form button {
  margin-top: 0;
}

.geo-presentation-qr {
  padding: 45px;
  background: var(--ink);
  color: var(--cream);
}

.geo-presentation-qr .service-eyebrow {
  color: var(--sky);
}

.geo-presentation-qr h2 {
  font-size: clamp(43px, 4vw, 64px);
}

.geo-presentation-qr img {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin: 31px auto 25px;
  padding: 18px;
  background: #fff;
}

.geo-presentation-qr > p:last-child {
  margin: 0;
  color: rgba(248, 245, 239, 0.67);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.geo-presentation-success {
  padding: 15px 0 5px;
}

.geo-presentation-success > a:first-of-type {
  margin-top: 25px;
}

.geo-presentation-secondary-download {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-decoration: underline;
}

.geo-presentation-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.geo-presentation-proof > div {
  min-height: 220px;
  padding: 45px clamp(30px, 5vw, 85px);
}

.geo-presentation-proof > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.geo-presentation-proof span,
.geo-presentation-proof strong {
  display: block;
}

.geo-presentation-proof span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
}

.geo-presentation-proof strong {
  margin-top: 27px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 600;
}

.geo-presentation-proof p {
  margin: 10px 0 0;
  color: rgba(7, 26, 50, 0.62);
  font-size: 11px;
  line-height: 1.6;
}

.geo-presentation-speaker {
  width: var(--speaker-width);
  min-height: 550px;
  margin: 115px auto;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.geo-presentation-speaker > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 7vw, 105px);
}

.geo-presentation-speaker .service-eyebrow {
  color: var(--sky);
}

.geo-presentation-speaker > div > p:not(.service-eyebrow) {
  max-width: 600px;
  margin: 27px 0 0;
  color: rgba(248, 245, 239, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.geo-presentation-speaker a {
  margin-top: 31px;
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.geo-presentation-speaker a:hover {
  background: #ffd16d;
}

.geo-presentation-speaker > img {
  align-self: end;
  justify-self: center;
  width: min(100%, 390px);
  height: 510px;
  object-fit: contain;
  object-position: bottom;
}

@media (max-width: 1180px) {
  .geo-speaker-hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(450px, 1.06fr);
  }

  .geo-speaker-materials {
    grid-template-columns: 1fr 0.6fr;
  }

  .geo-speaker-material-points {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .geo-speaker-material-points article:first-child {
    border-top: 0;
  }

  .geo-speaker-material-points article {
    border-top: 1px solid var(--line);
  }

  .geo-speaker-material-points article:not(:last-child) {
    padding-right: 24px;
    border-right: 1px solid var(--line);
  }

  .geo-speaker-invite {
    grid-template-columns: minmax(0, 0.7fr) minmax(510px, 1.3fr);
    gap: 55px;
  }
}

@media (max-width: 940px) {
  .geo-speaker-page,
  .geo-presentation-page {
    --speaker-width: min(760px, calc(100% - 48px));
  }

  .geo-speaker-hero,
  .geo-speaker-featured,
  .geo-presentation-hero,
  .geo-presentation-speaker {
    grid-template-columns: 1fr;
  }

  .geo-speaker-portrait {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .geo-speaker-portrait > img {
    object-position: center;
  }

  .geo-speaker-intro,
  .geo-speaker-fit,
  .geo-speaker-invite,
  .geo-presentation-access {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .geo-speaker-topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .geo-speaker-topic-grid article:nth-child(2) {
    border-right: 0;
  }

  .geo-speaker-topic-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .geo-speaker-materials {
    grid-template-columns: 1fr;
  }

  .geo-speaker-qr-card {
    width: min(100%, 380px);
  }

  .geo-speaker-featured > img {
    min-height: 430px;
  }

  .geo-speaker-invite {
    width: 100%;
  }

  .geo-speaker-invite > div:first-child {
    position: static;
  }

  .geo-presentation-hero {
    gap: 60px;
  }

  .geo-presentation-visual {
    margin-left: 0;
  }

  .geo-presentation-proof {
    grid-template-columns: 1fr;
  }

  .geo-presentation-proof > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .geo-presentation-speaker > img {
    height: 500px;
  }
}

@media (max-width: 640px) {
  .geo-speaker-page,
  .geo-presentation-page {
    --speaker-width: calc(100% - 40px);
  }

  .geo-speaker-hero-copy {
    padding: 62px 20px 58px;
  }

  .geo-speaker-hero h1,
  .geo-presentation-copy h1 {
    font-size: clamp(62px, 19vw, 88px);
  }

  .geo-speaker-portrait {
    min-height: 0;
  }

  .geo-speaker-portrait > div:last-child {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .geo-speaker-signal {
    grid-template-columns: repeat(2, 1fr);
  }

  .geo-speaker-signal span:nth-child(2) {
    border-right: 0;
  }

  .geo-speaker-signal span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .geo-speaker-intro,
  .geo-speaker-fit,
  .geo-presentation-access {
    padding: 82px 0;
  }

  .geo-speaker-intro h2,
  .geo-speaker-fit h2,
  .geo-speaker-invite h2,
  .geo-presentation-access h2,
  .geo-presentation-speaker h2 {
    font-size: clamp(49px, 14vw, 67px);
  }

  .geo-speaker-topics {
    padding: 82px 20px;
  }

  .geo-speaker-section-head {
    display: block;
  }

  .geo-speaker-section-head h2 {
    font-size: clamp(51px, 14vw, 69px);
  }

  .geo-speaker-topic-grid {
    grid-template-columns: 1fr;
    margin-top: 47px;
  }

  .geo-speaker-topic-grid article {
    min-height: 0;
  }

  .geo-speaker-topic-grid article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .geo-speaker-topic-grid h3 {
    min-height: 0;
    margin-top: 31px;
  }

  .geo-speaker-materials {
    padding: 82px 0;
  }

  .geo-speaker-materials h2,
  .geo-speaker-featured h2 {
    font-size: clamp(49px, 14vw, 68px);
  }

  .geo-speaker-material-points {
    display: block;
  }

  .geo-speaker-material-points article:not(:last-child) {
    padding-right: 0;
    border-right: 0;
  }

  .geo-speaker-featured > div {
    padding: 74px 20px;
  }

  .geo-speaker-featured > img {
    min-height: 310px;
  }

  .geo-speaker-form-grid {
    grid-template-columns: 1fr;
  }

  .geo-speaker-form-full {
    grid-column: auto;
  }

  .geo-speaker-invite {
    padding: 82px 20px;
  }

  .geo-speaker-invite-card {
    padding: 28px 21px;
  }

  .geo-presentation-hero {
    min-height: 0;
    padding: 62px 20px 80px;
  }

  .geo-presentation-visual > img {
    min-height: 280px;
    border-radius: 15px;
    transform: none;
  }

  .geo-presentation-card,
  .geo-presentation-qr {
    padding: 31px 22px;
  }

  .geo-presentation-proof > div {
    min-height: 0;
    padding: 38px 20px;
  }

  .geo-presentation-speaker {
    width: calc(100% - 40px);
    min-height: 0;
    margin: 82px auto;
  }

  .geo-presentation-speaker > div {
    padding: 52px 24px;
  }

  .geo-presentation-speaker > img {
    height: 440px;
  }
}
