/* ==========================================================================
   The Runbook — site styles
   Palette: deep black #0B0B0D, warm white #F7F7F7, arctic blue #00B8FF.
   Blue is punctuation: episode numerals, links, one call to action.
   Dark masthead and footer, light reading surface. No JavaScript required.

   Type system, deliberately small:
     .display        Bebas titles, four sizes (default, --ep, --sm, --xs)
     .heading-rule   Bebas ruled section heading, two sizes (default, --lg)
     numerals        Bebas: .hero-ep__num/.episode__num (1.25rem), .ep__num (2.4rem)
     .label          the one small-caps label (kicker, pager labels, footer headings)
     everything else Inter
   ========================================================================== */

:root {
  --ink: #0B0B0D;
  --ink-2: #13141A;
  --ink-3: #1B1D25;
  --paper: #F7F7F7;
  --white: #FFFFFF;
  --accent: #00B8FF;
  --accent-deep: #006B9E;      /* links and numerals on light surfaces: 5.4:1 on paper */
  --accent-soft: rgba(0, 184, 255, 0.12);
  --text: #15171C;
  --text-2: #4B5563;
  --text-3: #6B7280;
  --on-dark: #F7F7F7;
  --on-dark-2: rgba(247, 247, 247, 0.72);
  --on-dark-3: rgba(247, 247, 247, 0.52);
  --line: #E3E6EB;
  --line-dark: rgba(255, 255, 255, 0.1);
  --danger: #B42318;
  --font-display: "Bebas Neue", "Oswald", Impact, "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --wrap: 1120px;
  --wrap-narrow: 760px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: light;
}

/* ---------- base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { text-decoration-thickness: 2px; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.92em; background: rgba(11,11,13,0.06); padding: 0.1em 0.35em; border-radius: 4px; }
::selection { background: var(--accent); color: var(--ink); }
:target { scroll-margin-top: 2rem; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 100; padding: 0.6rem 1rem; background: var(--accent); color: var(--ink); font-weight: 600; border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.wrap--narrow { max-width: var(--wrap-narrow); }

/* ---------- type system -------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 5.75rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}
.display--ep { font-size: clamp(2.4rem, 5.2vw, 4.25rem); line-height: 0.98; max-width: 28ch; }
.display--sm { font-size: clamp(2.5rem, 5.5vw, 4rem); }
.display--xs { font-size: 2rem; letter-spacing: 0.02em; }

.heading-rule {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--ink);
}
.heading-rule--lg { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: 0.02em; border-bottom: 0; padding-bottom: 0; }

.label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-3); }
.label--strong { color: var(--on-dark); }

.lede { font-size: 1.2rem; line-height: 1.55; max-width: 34em; }

/* Meta lines: the separator travels with the item that follows it, so it never orphans. */
.meta-line { display: flex; flex-wrap: wrap; align-items: baseline; font-size: 0.9rem; }
.meta-line > * { white-space: nowrap; }
.meta-line > * + *::before { content: "\00B7"; margin: 0 0.5em; opacity: 0.55; }

/* ---------- buttons & links ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.975rem; line-height: 1;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
  cursor: pointer;
}
.btn--primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn--primary:hover { background: #2BC5FF; border-color: #2BC5FF; }
.btn--ghost { color: var(--on-dark); border-color: rgba(255,255,255,0.28); background: transparent; }
.btn--ghost:hover { border-color: var(--on-dark); }
.text-link { font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.text-link--light { color: var(--accent); }

/* ---------- header ------------------------------------------------------- */
.site-header { background: var(--ink); color: var(--on-dark); border-bottom: 1px solid var(--line-dark); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; padding-block: 0.75rem; flex-wrap: wrap; }
.brand { display: inline-flex; border-radius: 6px; }
.brand img { width: auto; height: 44px; }
.site-nav ul { display: flex; gap: 0.25rem; list-style: none; }
.site-nav a {
  display: inline-block; padding: 0.55rem 0.9rem; border-radius: 8px;
  color: var(--on-dark-2); font-weight: 500; font-size: 0.95rem; text-decoration: none;
  transition: color 0.15s var(--ease);
}
.site-nav a:hover { color: var(--on-dark); text-decoration: underline; text-decoration-color: var(--on-dark-3); text-underline-offset: 0.35em; }
.site-nav a[aria-current="page"] { color: var(--on-dark); text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 0.35em; }

/* ---------- notice ------------------------------------------------------- */
.notice { background: #FFF6D6; color: #5C4300; border-bottom: 1px solid #F1DE9B; font-size: 0.9rem; padding: 0.6rem 0; }
.notice code { background: rgba(0,0,0,0.07); }

/* ---------- home: the latest episode is the masthead --------------------- */
.hero { background: var(--ink); color: var(--on-dark); padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero__positioning { color: var(--on-dark-2); font-size: 1.05rem; max-width: 58ch; margin: 0 0 2.25rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-dark); }

.hero-ep { display: grid; grid-template-columns: 168px minmax(0, 1fr); gap: 2.25rem; align-items: start; }
.hero-ep--noart { grid-template-columns: minmax(0, 1fr); }
.hero-ep__art { width: 168px; height: 168px; object-fit: cover; border-radius: var(--radius-sm); background: var(--ink-3); }
.hero-ep__kicker { margin: 0 0 0.6rem; }
.hero-ep__meta { color: var(--on-dark-2); margin-bottom: 0.9rem; }
.hero-ep__num, .episode__num { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.05em; color: var(--accent); }
.hero-ep__summary { color: var(--on-dark-2); font-size: 1.05rem; line-height: 1.55; max-width: 58ch; margin: 1.1rem 0 1.4rem; }
.hero-ep .player { max-width: 640px; margin-bottom: 0.85rem; }
.hero-ep__empty .display { max-width: 20ch; }
.hero-ep__empty .lede { color: var(--on-dark-2); margin-top: 1.25rem; margin-bottom: 0; max-width: 52ch; }

.hero__subscribe { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); }
.hero__subscribe-label { font-size: 0.9rem; color: var(--on-dark-3); margin: 0; }

/* pre-launch reading surface */
.prelaunch__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.prelaunch .prose h2 { margin-top: 0; }
.topics { padding-left: 1.3em; }
.topics li + li { margin-top: 0.5em; }
.prelaunch__guest { padding: 1.75rem; background: var(--ink); color: var(--on-dark); border-radius: var(--radius); }
.prelaunch__guest .display { margin-bottom: 0.75rem; }
.prelaunch__guest p { color: var(--on-dark-2); }
.prelaunch__guest .btn { margin: 0.25rem 0 1rem; }
.prelaunch__guest-note { font-size: 0.9rem; margin: 0; }
.prelaunch__guest-note a { color: var(--on-dark); }

/* ---------- audio player ------------------------------------------------- */
.player__audio { width: 100%; height: 44px; }
.hero .player__audio { color-scheme: dark; }

/* ---------- subscribe links --------------------------------------------- */
.subscribe { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.subscribe__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease);
}
.subscribe--pills .subscribe__link { padding: 0.5rem 0.9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); color: var(--on-dark); }
.subscribe--pills .subscribe__link:hover { border-color: var(--on-dark); }
.subscribe--list { flex-direction: column; gap: 0.6rem; }
.subscribe--list .subscribe__link { color: var(--on-dark-2); }
.subscribe--list .subscribe__link:hover { color: var(--on-dark); }
.subscribe__icon { flex: none; }

/* ---------- light sections ---------------------------------------------- */
.section { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); }
.section--light { background: var(--paper); }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 2px solid var(--ink); }
.section__link { font-weight: 600; text-decoration: none; }
.section__link:hover { text-decoration: underline; }

.page-hero { background: var(--ink); color: var(--on-dark); padding: clamp(2.5rem, 6vw, 4.5rem) 0; border-bottom: 1px solid var(--line-dark); }
.page-hero .lede { color: var(--on-dark-2); margin-top: 1rem; margin-bottom: 0; }
.page-hero .hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

/* episode index */
.year-nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem; margin-top: 1.5rem; font-weight: 600; font-size: 0.95rem; }
.year-nav a { color: var(--on-dark-2); text-decoration: none; }
.year-nav a:hover { color: var(--on-dark); text-decoration: underline; text-decoration-color: var(--accent); }
.year { margin: 2.75rem 0 0.25rem; scroll-margin-top: 1.5rem; }
.year:first-child { margin-top: 0; }
.empty-note { max-width: 60ch; color: var(--text-2); font-size: 1.1rem; }

.ep-list { list-style: none; }
.ep {
  position: relative;
  display: grid; grid-template-columns: 4.25rem minmax(0, 1fr); gap: 1.25rem; align-items: start;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line);
}
.ep--art { grid-template-columns: 4.25rem 80px minmax(0, 1fr); }
.ep__num {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1; letter-spacing: 0.02em;
  color: var(--accent-deep); padding-top: 0.15rem;
  transition: color 0.15s var(--ease);
}
.ep:hover .ep__num, .ep:focus-within .ep__num { color: var(--ink); }
.ep__num--type { color: var(--text-3); }   /* T = trailer, B = bonus */
.ep__art { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); background: var(--ink-3); }
.ep__title { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
.ep__title a { color: var(--text); text-decoration: none; }
.ep__title a::after { content: ""; position: absolute; inset: 0; } /* the whole row is the link */
.ep:hover .ep__title a, .ep:focus-within .ep__title a { color: var(--accent-deep); text-decoration: underline; }
.ep__meta { color: var(--text-3); margin: 0.35rem 0 0.5rem; }
.ep__summary { color: var(--text-2); margin: 0; max-width: 68ch; }

/* ---------- episode page ------------------------------------------------- */
.episode__hero { background: var(--ink); color: var(--on-dark); padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 3.5rem); }
.crumbs { display: flex; gap: 0.6rem; font-size: 0.85rem; margin-bottom: 1.5rem; color: var(--on-dark-3); }
.crumbs a { color: var(--on-dark-2); text-decoration: none; }
.crumbs a:hover { color: var(--on-dark); text-decoration: underline; }
.episode__meta { color: var(--on-dark-2); margin-bottom: 1rem; }
.episode__lede { color: var(--on-dark-2); font-size: 1.15rem; line-height: 1.55; margin: 1.25rem 0 0; max-width: 40em; }

.episode__body { background: var(--paper); padding: 2rem 0 clamp(3rem, 6vw, 5rem); }
.player-card {
  display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 1.25rem; align-items: center;
  padding: 1.25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
}
.player-card--noart { grid-template-columns: minmax(0, 1fr); }
.player-card__art { width: 88px; height: 88px; object-fit: cover; border-radius: var(--radius-sm); background: var(--ink-3); }
.player-card__label { font-size: 0.9rem; font-weight: 600; color: var(--text-2); margin-bottom: 0.5rem; }
.player-card__links { margin: 0.6rem 0 0; font-size: 0.875rem; color: var(--text-3); }
.player-card__links a { font-weight: 500; }

.share { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.35rem 1rem; margin: 0.9rem 0 0; padding: 0 0.25rem; font-size: 0.875rem; color: var(--text-3); }
.share__label { color: var(--text-2); }
.share a { font-weight: 500; }
.share__url { color: var(--text-2); user-select: all; word-break: break-all; }

.notes .heading-rule, .video .heading-rule { margin: 2.75rem 0 1rem; }
.video__frame { aspect-ratio: 16 / 9; background: var(--ink); border-radius: var(--radius); overflow: hidden; }
.video__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* prose: the reading surface */
.prose { max-width: 66ch; font-size: 1.0625rem; line-height: 1.7; color: var(--text); }
.prose--lg { font-size: 1.125rem; }
.prose > * { margin-top: 0; margin-bottom: 0; }
.prose > * + * { margin-top: 1em; }
.prose h2, .prose h3, .prose h4 { color: var(--ink); letter-spacing: -0.01em; line-height: 1.25; }
.prose h2 { font-size: 1.4rem; margin-top: 2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6em; }
.prose h4 { font-size: 1.05rem; margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: 0.4em; }
.prose a { word-break: break-word; }
.prose blockquote {
  position: relative; margin: 1.75em 0; padding: 0.25em 0 0.25em 2.6rem;
  color: var(--text-2); font-size: 1.1em; line-height: 1.55;
}
.prose blockquote::before {
  content: "\201C"; position: absolute; left: 0; top: -0.15em;
  font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: var(--accent);
}
.prose pre { overflow-x: auto; padding: 1rem; background: var(--ink); color: var(--paper); border-radius: var(--radius-sm); font-size: 0.9rem; }
.prose pre code { background: none; padding: 0; color: inherit; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.table-wrap { overflow-x: auto; }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 0.6em 0.8em; border-bottom: 1px solid var(--line); }
.prose th { font-weight: 600; color: var(--ink); }

/* prev / next: the next episode leads */
.pager { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1rem; margin-top: 3rem; }
.pager__item {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.1rem 1.25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  transition: border-color 0.15s var(--ease);
}
.pager__item:hover { border-color: var(--text); }
.pager__item--next { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.pager__item--next:hover { border-color: var(--accent); }
.pager__label { color: var(--accent-deep); }
.pager__item--next .pager__label { color: var(--accent); }
.pager__title { font-weight: 600; line-height: 1.35; }
.pager__summary { color: var(--on-dark-2); font-size: 0.9rem; line-height: 1.5; }
.pager__dur { color: var(--on-dark-3); font-size: 0.85rem; }

/* ---------- about -------------------------------------------------------- */
.host { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 2rem; align-items: start; margin: 3.5rem 0; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.host--nophoto { grid-template-columns: 1fr; }
.host__photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.host__photo img { width: 100%; height: 100%; object-fit: cover; }
.host__bio h2 { margin-top: 0; }
.host__title { color: var(--text-2); font-weight: 500; }
.host__links a { margin-right: 1rem; font-weight: 600; }

/* ---------- contact ------------------------------------------------------ */
.contact { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__aside h2 { font-size: 1.25rem; margin-top: 0; }
.contact__aside h2 + * { margin-top: 0.75em; }
.contact__aside h2:not(:first-child) { margin-top: 2em; }
.contact__form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2rem); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1.1rem; }
.form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; transition: color 0.15s var(--ease); }
.form__group:focus-within label { color: var(--accent-deep); }
.form__optional { font-weight: 400; color: var(--text-3); }
.form__hint { margin: 0.35rem 0 0; font-size: 0.85rem; color: var(--text-3); }
.form input[type="text"], .form input[type="email"], .form select, .form textarea {
  width: 100%; font: inherit; color: var(--text);
  padding: 0.75rem 0.9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper);
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--accent-deep); background: var(--white); outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }
.form textarea { resize: vertical; min-height: 9rem; }
.form [aria-invalid="true"] { border-color: var(--danger); }
.form__err { color: var(--danger); font-size: 0.875rem; margin: 0.4rem 0 0; }
.form__hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form__note { margin: 0; font-size: 0.85rem; color: var(--text-3); }
.form-error { padding: 0.85rem 1rem; margin-bottom: 1.25rem; border-radius: var(--radius-sm); background: #FEF3F2; color: var(--danger); border: 1px solid #FECDCA; font-size: 0.95rem; }
.form-error p { margin: 0; }
.form-error ul { padding-left: 1.2em; margin-top: 0.4em; }
.form-error a { color: inherit; font-weight: 600; }
.form-success { padding: 0.5rem 0; }
.form-success h2 { font-size: 1.35rem; letter-spacing: -0.01em; line-height: 1.35; margin-bottom: 0.75rem; }
.form-success__next { margin: 1.5rem 0 0; padding-top: 1.25rem; border-top: 1px solid var(--line); }

/* ---------- footer ------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-2); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; border-top: 1px solid var(--line-dark); }
.site-footer__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; }
.site-footer__brand img { width: 84px; height: auto; }
.site-footer__tagline { margin: 1.25rem 0 0.35rem; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; color: var(--on-dark); text-transform: uppercase; }
.site-footer__desc { max-width: 38ch; font-size: 0.95rem; }
.site-footer__heading { margin-bottom: 1rem; }
.site-footer__col ul { list-style: none; display: grid; gap: 0.6rem; }
.site-footer__col a { color: var(--on-dark-2); text-decoration: none; }
.site-footer__col a:hover { color: var(--on-dark); text-decoration: underline; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); font-size: 0.85rem; color: var(--on-dark-3); }
.site-footer__bottom p { margin: 0; }
.site-footer__status { display: inline-flex; align-items: center; gap: 0.5rem; }
.site-footer__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--on-dark-3); }
.site-footer__status--stale::before { background: #F5B942; }

/* ---------- responsive --------------------------------------------------- */
@media (max-width: 960px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .contact { grid-template-columns: 1fr; }
  .contact__aside { order: 2; }   /* the form comes first on small screens */
  .prelaunch__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-ep { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-ep__art { width: 96px; height: 96px; }
  .display--ep { max-width: none; }
  .hero__positioning { font-size: 0.95rem; margin-bottom: 1.5rem; padding-bottom: 1rem; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .site-header__inner { justify-content: center; gap: 0.25rem 1.5rem; min-height: 0; padding-block: 0.9rem 0.4rem; }
  .brand img { height: 38px; }
  .site-nav a { padding: 0.5rem 0.7rem; font-size: 0.9rem; }
  .ep, .ep--art { grid-template-columns: 3rem minmax(0, 1fr); gap: 1rem; }
  .ep__num { font-size: 1.9rem; }
  .ep__art { display: none; }
  .player-card { grid-template-columns: 1fr; }
  .player-card__art { display: none; }
  .pager { grid-template-columns: 1fr; }
  .pager__item--next { order: -1; }
  .host { grid-template-columns: 1fr; }
  .host__photo { max-width: 200px; }
  .form__row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- motion & print ---------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
  .site-header, .site-footer, .hero__subscribe, .pager, .player-card__links, .share, .video, .notice, .prelaunch__guest { display: none !important; }
  .episode__hero, .page-hero, .hero { background: none; color: #000; padding: 0; }
  .episode__num, .episode__lede, .episode__meta, .crumbs, .crumbs a, .page-hero .lede, .hero__positioning, .hero-ep__summary, .hero-ep__meta, .label { color: #000; }
  .display, .display a { color: #000; }
  a { color: inherit; }
}
