:root {
  --ink: #080b12;
  --ink-soft: #111621;
  --surface: #f4f1eb;
  --paper: #fffefa;
  --text: #131720;
  --muted: #6f7278;
  --white: #ffffff;
  --orange: #ef9a17;
  --orange-bright: #ffad28;
  --line: rgba(17, 22, 33, 0.13);
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shell: min(1180px, calc(100% - 48px));
  --header-h: 78px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -60px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(8,11,18,.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 35px rgba(0,0,0,.18);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}
.brand img, .footer-brand img {
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .94;
}
.brand-divider { width: 1px; height: 24px; background: rgba(255,255,255,.35); }
.brand-podcast { font-size: .84rem; font-weight: 600; letter-spacing: .055em; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: .91rem; font-weight: 600; text-decoration: none; }
.main-nav > a:not(.nav-cta) { color: rgba(255,255,255,.78); transition: color .2s ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--white); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease;
}
.nav-cta:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: min(920px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; transform: scale(1.018); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(6,8,13,.96) 0%, rgba(6,8,13,.83) 32%, rgba(6,8,13,.22) 69%, rgba(6,8,13,.36) 100%),
    linear-gradient(0deg, rgba(6,8,13,.65) 0%, transparent 40%);
}
.hero-grid {
  opacity: .07;
  background-image: linear-gradient(rgba(255,255,255,.42) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.42) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}
.hero-content { position: relative; z-index: 2; padding-top: var(--header-h); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(239,154,23,.13), 0 0 18px var(--orange);
  transform-origin: center;
  animation: live-dot-air 4.8s ease-in-out infinite;
}
@keyframes live-dot-air {
  0%, 100% {
    opacity: .48;
    transform: translateY(1px) scale(.82);
    box-shadow: 0 0 0 3px rgba(239,154,23,.08), 0 0 10px rgba(239,154,23,.55);
  }
  45% {
    opacity: 1;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 0 0 7px rgba(239,154,23,.14), 0 0 24px rgba(239,154,23,.95);
  }
  62% {
    opacity: .82;
    transform: translateY(-2px) scale(.98);
  }
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(3.9rem, 7.6vw, 7rem);
  line-height: .91;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.82); }
.hero-copy {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 19px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #141414; background: var(--orange); box-shadow: 0 12px 32px rgba(239,154,23,.23); }
.button-primary:hover { background: var(--orange-bright); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.58); }
.play-icon { font-size: .76rem; }
.now-playing {
  display: flex;
  align-items: center;
  max-width: 565px;
  gap: 18px;
  margin-top: 58px;
  color: rgba(255,255,255,.88);
}
.episode-number { font-family: Manrope, sans-serif; font-size: 1.65rem; font-weight: 800; color: var(--orange); }
.now-playing-line { width: 52px; height: 1px; background: rgba(255,255,255,.35); }
.now-playing small { display: block; margin-bottom: 6px; color: rgba(255,255,255,.47); font-size: .67rem; font-weight: 700; letter-spacing: .14em; }
.now-playing strong { font-size: .89rem; font-weight: 600; }
.x-led {
  position: absolute;
  z-index: 3;
  right: max(1vw, calc((100vw - 1460px) / 2));
  bottom: -20px;
  width: 260px;
  opacity: .16;
  transform: rotate(4deg);
}
.x-led svg { overflow: visible; }
.x-led path { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 7; }
.x-top { stroke: #ff9817; }
.x-bottom { stroke: #fff5dc; }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 440px); align-items: end; gap: 60px; }
.section-heading .eyebrow { margin-bottom: 12px; }
.section-heading h2 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
  letter-spacing: -.055em;
  line-height: 1;
}
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 1.04rem; line-height: 1.65; }
.episode-tools { display: flex; justify-content: space-between; gap: 24px; margin-top: 54px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.search-box {
  display: flex;
  align-items: center;
  width: min(350px, 100%);
  gap: 11px;
  padding: 0 2px;
}
.search-box svg { width: 19px; fill: none; stroke: #656971; stroke-width: 1.7; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); }
.search-box input::placeholder { color: #8a8d92; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 9px 14px;
  color: #676a70;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}
.filter-chip:hover { border-color: #8d8f94; color: var(--text); }
.filter-chip.is-active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.result-status { margin: 26px 0 15px; color: #87898e; font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.episode-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 20px; }
.episode-card { min-width: 0; }
.episode-card[hidden] { display: none; }
.episode-visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--ink-soft);
  color: var(--white);
  text-decoration: none;
}
.episode-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.episode-visual::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.65)); }
.episode-card:hover .episode-visual img { transform: scale(1.035); filter: saturate(1.06); }
.episode-badge { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 7px 9px; border-radius: 7px; background: rgba(8,11,18,.78); backdrop-filter: blur(7px); font-size: .69rem; font-weight: 800; letter-spacing: .09em; }
.episode-play {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  padding-left: 2px;
  border-radius: 50%;
  background: var(--orange);
  color: #131313;
  font-size: .78rem;
  box-shadow: 0 9px 28px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease;
}
.episode-card:hover .episode-play { transform: scale(1.08); background: var(--orange-bright); }
.episode-fallback { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(circle at 25% 20%, #252c39 0, #10141d 53%, #090c12 100%); }
.episode-fallback::before, .episode-fallback::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 80%;
  top: 8%;
  left: 50%;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(239,154,23,.75);
}
.episode-fallback::before { transform: rotate(35deg); }
.episode-fallback::after { transform: rotate(-35deg); background: white; box-shadow: 0 0 18px rgba(255,255,255,.72); }
.episode-body { padding: 18px 3px 0; }
.episode-kicker { display: flex; align-items: center; gap: 9px; color: #8b8d91; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.episode-kicker span { width: 20px; height: 1px; background: var(--orange); }
.episode-body h3 { margin: 10px 0 8px; font-family: Manrope, sans-serif; font-size: 1.11rem; letter-spacing: -.024em; line-height: 1.35; }
.episode-body p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.52; }
.empty-state { text-align: center; padding: 70px 20px 20px; }
.mini-x { display: block; color: var(--orange); font-family: Manrope, sans-serif; font-size: 3.5rem; line-height: 1; }
.empty-state h3 { margin: 10px 0 8px; font-family: Manrope, sans-serif; font-size: 1.5rem; }
.empty-state p { margin: 0 0 18px; color: var(--muted); }
.text-button { border: 0; border-bottom: 1px solid currentColor; background: none; padding: 2px 0; font-weight: 700; cursor: pointer; }

.guests-section { overflow: hidden; color: var(--white); background: var(--ink); }
.guests-heading > p { color: rgba(255,255,255,.54); }
.guest-rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 56px; }
.guest-card {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.guest-photo { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 13px; background: #161c26; transition: box-shadow .22s ease, transform .22s ease; }
.guest-photo::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(8,11,18,.75)); }
.guest-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; filter: saturate(.78); transition: transform .45s ease, filter .3s ease; }
.guest-card:hover .guest-photo img { transform: scale(1.035); filter: saturate(1); }
.guest-card.is-selected .guest-photo { box-shadow: 0 0 0 2px var(--orange), 0 18px 38px rgba(0,0,0,.26); transform: translateY(-3px); }
.guest-card.is-selected .guest-photo img { filter: saturate(1); }
.guest-photo-fallback { display: grid; place-items: center; background: radial-gradient(circle at 70% 15%, #313744, #131822 58%, #0e121a); }
.portrait-initials { position: relative; z-index: 2; font-family: Manrope, sans-serif; font-size: 3.4rem; font-weight: 800; letter-spacing: -.08em; }
.portrait-x { position: absolute; right: -10px; bottom: -54px; color: var(--orange); font-family: Manrope, sans-serif; font-size: 12rem; font-weight: 500; opacity: .18; transform: rotate(-9deg); }
.guest-meta { display: block; padding: 17px 3px 0; }
.guest-meta small { display: block; color: var(--orange); font-size: .66rem; font-weight: 800; letter-spacing: .09em; }
.guest-meta strong { display: block; margin-top: 7px; font-family: Manrope, sans-serif; font-size: 1.08rem; }
.guest-meta em { display: inline-block; margin-top: 10px; color: rgba(255,255,255,.56); font-size: .79rem; font-style: normal; transition: color .2s ease; }
.guest-card:hover .guest-meta em { color: var(--white); }
.guest-card.is-selected .guest-meta em { color: var(--orange); }
.guest-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
  min-height: 470px;
  overflow: hidden;
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  background: #0d121b;
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}
.guest-player { position: relative; min-height: 100%; background: #030507; }
.guest-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.guest-video-private {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  text-align: center;
  background: radial-gradient(circle at 50% 25%, #2a303b, #0b0f16 62%);
}
.guest-video-private[hidden], .guest-player iframe[hidden] { display: none; }
.private-x { color: var(--orange); font-family: Manrope, sans-serif; font-size: 5rem; line-height: .8; text-shadow: 0 0 24px rgba(239,154,23,.4); }
.guest-video-private small { margin-top: 22px; color: var(--orange); font-size: .66rem; font-weight: 800; letter-spacing: .13em; }
.guest-video-private strong { margin-top: 9px; font-family: Manrope, sans-serif; font-size: 1.45rem; }
.guest-video-private p { max-width: 410px; margin: 10px 0 18px; color: rgba(255,255,255,.56); font-size: .86rem; line-height: 1.55; }
.text-link-light { color: var(--white); font-size: .82rem; font-weight: 700; text-underline-offset: 4px; }
.guest-story { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(34px, 4vw, 56px); }
.guest-story .eyebrow { margin-bottom: 13px; }
.guest-story h3 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(2.15rem, 3.6vw, 3.7rem); line-height: .98; letter-spacing: -.055em; }
.guest-role { margin: 15px 0 0; color: rgba(255,255,255,.56); font-size: .8rem; font-weight: 700; letter-spacing: .045em; text-transform: uppercase; }
.guest-description { margin-top: 27px; }
.guest-description p { margin: 0; color: rgba(255,255,255,.68); font-size: .94rem; line-height: 1.68; }
.guest-description p + p { margin-top: 13px; }
.guest-watch-button { margin-top: 30px; border: 1px solid rgba(255,255,255,.22); color: var(--white); background: rgba(255,255,255,.06); }
.guest-watch-button:hover { border-color: var(--orange); background: rgba(239,154,23,.1); }
.guest-cta {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  margin-top: 90px;
  padding: 30px 38px 30px 0;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--orange);
}
.guest-cta-mark {
  align-self: stretch;
  display: grid;
  place-items: center;
  height: 150px;
  padding-right: 12px;
  overflow: hidden;
  border-radius: 0 999px 999px 0;
  background: rgba(255,255,255,.88);
}
.guest-cta-mark img { width: 78px; height: 116px; object-fit: contain; }
.guest-cta .eyebrow { margin-bottom: 8px; color: rgba(8,11,18,.58); }
.guest-cta h3 { max-width: 610px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1.1; letter-spacing: -.045em; }
.button-light { border: 1px solid rgba(8,11,18,.25); white-space: nowrap; }
.button-light:hover { background: rgba(255,255,255,.3); border-color: rgba(8,11,18,.5); }

.site-footer { color: rgba(255,255,255,.72); background: #05070c; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 66px 0 50px; }
.footer-brand p { margin: 18px 0 0; color: rgba(255,255,255,.48); font-size: .9rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer-links div { display: grid; align-content: start; gap: 9px; }
.footer-links small { margin-bottom: 4px; color: rgba(255,255,255,.35); font-size: .64rem; font-weight: 800; letter-spacing: .14em; }
.footer-links a { width: fit-content; font-size: .86rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.36); font-size: .72rem; }
.footer-bottom > span:last-child { display: flex; gap: 20px; }
.footer-bottom a { text-decoration: none; }

:focus-visible { outline: 2px solid var(--orange-bright); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --header-h: 70px; }
  .hero { min-height: 720px; }
  .hero-media img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,8,13,.96) 0%, rgba(6,8,13,.8) 44%, rgba(6,8,13,.35) 100%), linear-gradient(0deg, rgba(6,8,13,.7), transparent 50%); }
  .episode-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guest-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 34px; }
  .guest-feature { grid-template-columns: 1fr; }
  .guest-player { min-height: auto; aspect-ratio: 16 / 9; }
  .guest-story { padding: 44px; }
  .guest-cta { grid-template-columns: 135px 1fr; padding-right: 28px; }
  .guest-cta .button { grid-column: 2; justify-self: start; }
  .guest-cta-mark { grid-row: 1 / span 2; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 34px, 600px); }
  .site-header { padding-inline: 17px; }
  .brand img { width: 128px; height: auto; }
  .brand-divider { height: 20px; }
  .brand-podcast { font-size: .7rem; }
  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: rgba(8,11,18,.28);
  }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 1px; background: var(--white); transition: transform .25s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 90px 26px 40px;
    background: rgba(8,11,18,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .25s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-family: Manrope, sans-serif; font-size: 1.7rem; }
  .main-nav .nav-cta { margin-top: 14px; font-family: "DM Sans", sans-serif; font-size: .95rem; }
  .hero { height: 820px; min-height: 100svh; align-items: flex-end; }
  .hero-media img { object-position: 59% top; }
  .hero-shade { background: linear-gradient(0deg, rgba(6,8,13,.99) 13%, rgba(6,8,13,.85) 52%, rgba(6,8,13,.16) 100%); }
  .hero-content { padding-top: 220px; padding-bottom: 54px; }
  .hero h1 { font-size: clamp(3.3rem, 17vw, 5.1rem); }
  .hero-copy { margin-top: 23px; font-size: .98rem; }
  .hero-actions { margin-top: 26px; }
  .button { min-height: 48px; }
  .now-playing { margin-top: 38px; gap: 12px; }
  .now-playing-line { width: 28px; }
  .now-playing strong { font-size: .77rem; }
  .x-led { display: none; }
  .section { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > p { font-size: .95rem; }
  .episode-tools { flex-direction: column; margin-top: 38px; }
  .search-box { width: 100%; min-height: 42px; border-bottom: 1px solid var(--line); }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; width: calc(100% + 17px); padding: 2px 17px 3px 0; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-chip { white-space: nowrap; }
  .episode-grid { grid-template-columns: 1fr; gap: 34px; }
  .episode-visual { aspect-ratio: 16 / 9.4; }
  .guest-rail { display: flex; overflow-x: auto; width: calc(100% + 17px); gap: 14px; padding-right: 17px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .guest-rail::-webkit-scrollbar { display: none; }
  .guest-card { flex: 0 0 78%; scroll-snap-align: start; }
  .guest-photo { aspect-ratio: 4 / 4.65; }
  .guest-feature { min-height: 0; margin-top: 42px; }
  .guest-story { padding: 34px 24px 38px; }
  .guest-story h3 { font-size: 2.45rem; }
  .guest-description p { font-size: .9rem; }
  .guest-cta { grid-template-columns: 1fr; gap: 22px; padding: 34px 28px; }
  .guest-cta-mark {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 86px;
    height: 122px;
    padding: 10px;
    border-radius: 18px;
    opacity: .2;
  }
  .guest-cta-mark img { width: 62px; height: 94px; }
  .guest-cta .button { grid-column: auto; position: relative; z-index: 1; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; padding: 54px 0 42px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 410px) {
  .brand-divider, .brand-podcast { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .now-playing small { font-size: .59rem; }
  .now-playing strong { display: block; max-width: 215px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
