/* ─── /speak — keynote and panel booking landing page
   Reuses .dna-paul-* typography tokens from about-dr-paul.css.
   Page-local rules only — keeps the visual rhythm identical to the
   authority-positioning page but avoids re-declaring shared tokens. */

/* Speaker bio block — sits directly under the credentials + media strips */
.speak-bio {
  background: var(--black);
  padding: 8rem 3rem 6rem;
  border-bottom: 1px solid var(--border);
}

.speak-bio-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Recent keynotes mini-list */
.speak-keynotes {
  background: var(--dark);
  padding: 7rem 3rem 6rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.speak-keynotes-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.speak-keynotes-list {
  list-style: none;
  margin-top: 2.5rem;
  padding: 0;
  border-top: 1px solid var(--border-strong);
}

.speak-keynotes-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.speak-keynotes-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-muted);
  font-weight: 500;
}

.speak-keynotes-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

/* Booking enquiry form section */
.speak-booking {
  background: var(--black);
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
}

.speak-booking-inner {
  max-width: 760px;
  margin: 0 auto;
}

.speak-booking .dna-paul-standfirst {
  margin-bottom: 3rem;
}

/* Responsive — collapse keynotes list to single column under hero/grid breakpoint */
@media (max-width: 768px) {
  .speak-bio,
  .speak-keynotes,
  .speak-booking {
    padding: 5rem 1.5rem;
  }
  .speak-keynotes-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.5rem 0;
  }
  .speak-keynotes-label {
    font-size: 1.05rem;
  }
}
