/* THL Theme — speaker profile (single-thl_speaker.php) + our-speakers index.
   Ported from speaker-page-mockup.html. Nav / announcement / footer / sign-in
   modal come from the global theme; this file owns the speaker-specific
   sections. Tokens are inherited from style.css :root. */

/* ============================================================ */
/* SPEAKER HERO                                                  */
/* ============================================================ */
.shero { position: relative; overflow: hidden; background: var(--ink); margin-top: calc(-1 * var(--nav-h)); }
.shero-bg { position: absolute; inset: 0; }
.shero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: blur(30px) saturate(0.8) brightness(0.55); transform: scale(1.2); }
.shero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,13,21,0.9) 0%, rgba(10,13,21,0.74) 55%, rgba(10,13,21,0.55) 100%),
    linear-gradient(180deg, rgba(10,13,21,0.7) 0%, rgba(10,13,21,0.3) 40%, var(--bg) 100%);
}
.shero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 150px 48px 72px; }
.crumb { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 12px; font-weight: 600; color: var(--t-soft); margin-bottom: 22px; }
.crumb a { color: var(--t-soft); text-decoration: none; transition: color 0.2s; }
.crumb a:hover { color: var(--blue-bright); }
.crumb .sep { opacity: 0.5; }
.shero .role-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 14px; }
.shero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 14px; }
.shero .where-row { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--t-mid); font-weight: 500; margin-bottom: 24px; }
.shero .where-row svg { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }
.meta-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.mchip { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--t-mid); background: rgba(255,255,255,0.05); border: 1px solid var(--line-2); padding: 6px 13px; border-radius: 999px; white-space: nowrap; text-decoration: none; }
.mchip svg { width: 13px; height: 13px; color: var(--blue); flex-shrink: 0; }
a.mchip { transition: border-color 0.2s, background 0.2s, color 0.2s; }
a.mchip:hover { border-color: rgba(122,175,201,0.45); background: rgba(122,175,201,0.1); color: var(--t-strong); }
.shero-lede { font-size: 15px; color: var(--t-mid); line-height: 1.7; max-width: 560px; margin-bottom: 30px; }
.shero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.cta-solid { display: inline-flex; align-items: center; gap: 10px; background: var(--blue); color: var(--navy-deeper); padding: 15px 28px; border-radius: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: all 0.3s var(--ease-out); box-shadow: 0 6px 22px rgba(122,175,201,0.22); }
.cta-solid svg { width: 14px; height: 14px; }
.cta-solid:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(122,175,201,0.32); }
.cta-ghost { display: inline-flex; align-items: center; gap: 9px; color: var(--t-strong); text-decoration: none; padding: 14px 24px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.28); font-size: 12.5px; font-weight: 600; transition: all 0.25s var(--ease); }
.cta-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* Circular headshot inset to the LEFT of the name. */
.name-row { display: flex; align-items: center; gap: 30px; margin-bottom: 26px; }
.avatar { width: 148px; height: 148px; border-radius: 50%; flex-shrink: 0; object-fit: cover; object-position: center top; border: 2px solid rgba(255,255,255,0.22); box-shadow: 0 12px 36px rgba(0,0,0,0.5); }
.name-row .role-kicker { margin-bottom: 10px; }
.name-row h1 { margin-bottom: 10px; }
.name-row .where-row { margin-bottom: 0; }
@media (max-width: 1020px) { .shero-inner { padding: 118px 24px 56px; } .avatar { width: 120px; height: 120px; } .name-row { gap: 22px; } }
@media (max-width: 560px) {
  .shero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .shero-cta-row .cta-solid, .shero-cta-row .cta-ghost { justify-content: center; }
  .avatar { width: 96px; height: 96px; }
  .name-row { gap: 16px; margin-bottom: 22px; }
}

/* ============================================================ */
/* SECTION SCAFFOLD                                              */
/* ============================================================ */
.section { padding: 72px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 14px; }
.section h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
@media (max-width: 760px) { .section { padding: 52px 24px; } }

/* ============================================================ */
/* ABOUT + DETAILS CARD                                          */
/* ============================================================ */
.about { background: var(--bg-deep); border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 60px; align-items: start; }
.about-body p { font-size: 15px; color: var(--t-mid); line-height: 1.75; margin-bottom: 18px; }
.about-body p strong { color: var(--t-strong); font-weight: 600; }
.details-card { position: sticky; top: 90px; background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%); border: 1px solid var(--line-2); border-radius: 16px; padding: 26px 28px; }
.details-card h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 16px; }
.detail-row { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.detail-row:last-of-type { border-bottom: 0; }
.detail-row .k { color: var(--t-soft); flex-shrink: 0; }
.detail-row .v { color: var(--t-strong); font-weight: 600; text-align: right; }
.detail-row .v a { color: var(--blue-bright); text-decoration: none; }
.detail-row .v a:hover { color: var(--t-strong); }
.details-cta { margin-top: 18px; }
.details-cta .cta-solid { width: 100%; justify-content: center; padding: 14px 20px; }
.details-foot { margin-top: 13px; text-align: center; font-size: 11.5px; color: var(--t-soft); }
@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .details-card { position: static; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ============================================================ */
/* LECTURES BY THIS SPEAKER                                      */
/* ============================================================ */
.lectures { background: var(--bg); border-top: 1px solid var(--line); }
.lectures-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.lectures-head .blurb { font-size: 13.5px; color: var(--t-soft); margin-top: 6px; }
.lecture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.lecture-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 840px; }
.lcard { text-decoration: none; display: block; transition: transform 0.4s var(--ease-out); }
.lcard-art { position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.07); box-shadow: 0 2px 10px rgba(0,0,0,0.35); transition: box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out); }
.lcard-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: filter 0.4s var(--ease-out), transform 0.6s var(--ease-out); }
.lcard-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 12px; padding: 0 2px; font-size: 12px; font-weight: 600; color: var(--t-soft); }
.lcard-meta svg { width: 12.5px; height: 12.5px; color: var(--blue); flex-shrink: 0; }
.lcard-meta .dot { opacity: 0.45; }
.lcard-meta .new { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-bright); background: rgba(122,175,201,0.12); border: 1px solid rgba(122,175,201,0.25); padding: 2px 8px; border-radius: 999px; }
@media (hover: hover) {
  .lcard:hover { transform: translateY(-6px); }
  .lcard:hover .lcard-art { box-shadow: var(--shadow-lift); border-color: rgba(122,175,201,0.35); }
  .lcard:hover .lcard-art img { filter: brightness(1.07); transform: scale(1.03); }
}
@media (max-width: 920px) { .lecture-grid, .lecture-grid.two { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .lecture-grid, .lecture-grid.two { grid-template-columns: 1fr; max-width: 420px; }
  .lectures-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================ */
/* OTHER SPEAKERS RAIL                                           */
/* ============================================================ */
.others { padding: 64px 0 56px; background: var(--bg-deep); border-top: 1px solid var(--line); }
.others-header { max-width: 1280px; margin: 0 auto 26px; padding: 0 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.others-header .blurb { font-size: 13.5px; color: var(--t-soft); margin-top: 6px; }
.rail-seeall { color: var(--t-mid); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; transition: color 0.2s var(--ease), gap 0.25s var(--ease); }
.rail-seeall:hover { color: var(--blue-bright); gap: 10px; }
.rail-seeall svg { width: 12px; height: 12px; }
.speaker-rail { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 8px 48px 24px; scroll-padding-left: 48px; max-width: 1280px; margin: 0 auto; scrollbar-width: none; }
.speaker-rail::-webkit-scrollbar { display: none; }
.scard { flex: 0 0 168px; scroll-snap-align: start; text-decoration: none; text-align: center; transition: transform 0.35s var(--ease-out); }
.scard img { width: 124px; height: 124px; border-radius: 50%; object-fit: cover; object-position: center top; margin: 0 auto 14px; border: 2px solid rgba(255,255,255,0.14); transition: border-color 0.3s var(--ease-out), filter 0.3s var(--ease-out); }
.scard .name { font-size: 13px; font-weight: 700; color: var(--t-strong); line-height: 1.35; }
.scard .where { font-size: 11.5px; color: var(--t-soft); margin-top: 3px; }
@media (hover: hover) {
  .scard:hover { transform: translateY(-5px); }
  .scard:hover img { border-color: rgba(122,175,201,0.55); filter: brightness(1.08); }
}
@media (max-width: 768px) {
  .others-header { padding: 0 24px; }
  .speaker-rail { padding: 8px 24px 20px; scroll-padding-left: 24px; }
}

/* ============================================================ */
/* MEMBERSHIP BAND (visitor only)                                */
/* ============================================================ */
.membership { padding: 88px 48px; background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(122,175,201,0.12) 0%, transparent 55%), linear-gradient(180deg, #0e1623 0%, var(--bg-deep) 100%); border-top: 1px solid var(--line); }
.membership-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 410px; gap: 64px; align-items: center; }
.membership h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 18px; }
.membership .lede { font-size: 15.5px; color: var(--t-mid); line-height: 1.65; margin-bottom: 28px; max-width: 460px; }
.member-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.member-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; color: var(--t-mid); }
.member-list svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--blue); }
.member-list strong { color: var(--t-strong); font-weight: 600; }
.price-card { background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.025) 100%); border: 1px solid rgba(122,175,201,0.28); border-radius: 18px; padding: 38px 36px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); position: relative; overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(122,175,201,0.7), transparent); }
.price-card .plan { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 14px; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.price-row .price { font-size: 54px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.price-row .per { font-size: 14px; color: var(--t-soft); font-weight: 500; }
.price-note { font-size: 12.5px; color: var(--t-soft); margin-bottom: 8px; }
.price-rise { display: inline-block; font-size: 11.5px; font-weight: 600; color: #ffd9a8; background: rgba(255,180,90,0.1); border: 1px solid rgba(255,180,90,0.25); border-radius: 999px; padding: 5px 12px; margin: 10px 0 24px; }
.price-cta { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--blue); color: var(--navy-deeper); padding: 16px 20px; border-radius: 9px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: all 0.3s var(--ease-out); }
.price-cta svg { width: 14px; height: 14px; }
.price-cta:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(122,175,201,0.3); }
.price-foot { margin-top: 16px; text-align: center; font-size: 11.5px; color: var(--t-soft); }
@media (max-width: 920px) {
  .membership { padding: 64px 24px; }
  .membership-inner { grid-template-columns: 1fr; gap: 44px; }
  .price-card { max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ============================================================ */
/* OUR SPEAKERS INDEX (page-our-speakers.php)                    */
/* ============================================================ */
.phead { padding: 84px 48px 56px; background: var(--bg-deep); border-bottom: 1px solid var(--line); }
.phead-inner { max-width: 1100px; margin: 0 auto; }
.phead h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 16px; }
.phead .lede { font-size: 15px; color: var(--t-mid); line-height: 1.7; max-width: 600px; }
.sp-index { padding: 64px 48px 84px; background: var(--bg); }
.sp-index-inner { max-width: 1100px; margin: 0 auto; }
.sp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sp-grid .sp { display: block; text-align: center; text-decoration: none; background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 16px; padding: 28px 18px 24px; transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
.sp-grid .sp img { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; object-position: center top; margin: 0 auto 16px; border: 2px solid rgba(255,255,255,0.14); transition: border-color 0.3s var(--ease-out), filter 0.3s var(--ease-out); }
.sp-grid .name { font-size: 14px; font-weight: 700; color: var(--t-strong); line-height: 1.35; }
.sp-grid .where { font-size: 12px; color: var(--t-soft); margin-top: 3px; margin-bottom: 12px; }
.sp-grid .count { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-bright); background: rgba(122,175,201,0.1); border: 1px solid rgba(122,175,201,0.22); padding: 4px 11px; border-radius: 999px; }
@media (hover: hover) {
  .sp-grid .sp:hover { transform: translateY(-5px); border-color: rgba(122,175,201,0.35); box-shadow: 0 14px 36px rgba(0,0,0,0.4); }
  .sp-grid .sp:hover img { border-color: rgba(122,175,201,0.55); filter: brightness(1.08); }
}
.grid-foot { margin-top: 36px; text-align: center; font-size: 13px; color: var(--t-soft); }
@media (max-width: 980px) { .sp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .phead { padding: 56px 24px 44px; } }
@media (max-width: 640px) {
  .sp-index { padding: 48px 24px 64px; }
  .sp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sp-grid .sp { padding: 22px 12px 20px; }
  .sp-grid .sp img { width: 96px; height: 96px; }
}
