/* ============================================================
   RAW ARABIA — public site
   Token system: Charcoal Ink / Cherry / Cherry Deep / Paper / Ash / Line
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
    --charcoal: #1A1A1A;
    --cherry: #9E1B24;
    --cherry-deep: #6E1219;
    --paper: #F7F6F3;
    --ash: #6B6B6B;
    --line: #E4E1DB;
    --paper-raised: #FFFFFF;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--charcoal);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: clip;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--cherry);
}

/* ---------- Header ---------- */
.site-header {
    background: var(--charcoal);
    color: var(--paper);
    position: sticky;
    top: 0;
    z-index: 100;
    transform: translateY(0);
    transition: transform .3s ease, box-shadow .3s ease;
}
.site-header.is-hidden {
    transform: translateY(-100%);
}
.site-header.is-sticky {
    box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.site-header .top-bar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wordmark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.55rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: var(--paper);
    transition: color .3s ease;
}
.wordmark span {
    color: var(--cherry);
    transition: color .3s ease;
}
.site-header.is-sticky .wordmark span {
    color: #fff;
}
/* Uploaded logo replaces the typographic wordmark when Site Settings has one */
.wordmark.has-logo { display: flex; align-items: center; line-height: 0; }
.wordmark-logo { height: 38px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.footer-brand .wordmark-logo { height: 44px; max-width: 240px; }

/* Two-logo swap: full-colour by default, white version once the header sticks.
   Both are stacked so the swap doesn't reflow the header. */
.wordmark.has-sticky-logo { position: relative; }
.wordmark.has-sticky-logo .wordmark-logo { transition: opacity .3s ease; }
.wordmark.has-sticky-logo .wordmark-logo-sticky {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
}
.site-header.is-sticky .wordmark.has-sticky-logo .wordmark-logo-main { opacity: 0; }
.site-header.is-sticky .wordmark.has-sticky-logo .wordmark-logo-sticky { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
    .wordmark.has-sticky-logo .wordmark-logo { transition: none; }
}
.top-nav { display: flex; font-size: 0.85rem; align-items: center; }
.top-nav > a, .top-nav > .nav-dropdown { margin-left: 1.75rem; }
.top-nav > a:first-child, .top-nav > .nav-dropdown:first-child { margin-left: 0; }
.top-nav a { text-decoration: none; color: #D9D6D0; transition: color .15s; }
.top-nav a:hover, .top-nav a.active { color: var(--paper); }
.top-nav a.active { border-bottom: 2px solid var(--cherry); padding-bottom: 4px; }

/* ---------- Ticker (signature element) ---------- */
.ticker-wrap {
    background: var(--cherry-deep);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
}
.ticker-wrap .ticker-label {
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    background: var(--cherry);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 0 1rem;
}
/* Clips the scrolling track to the space right of the label */
.ticker-clip {
    flex: 1;
    overflow: hidden;
}
.ticker-track {
    display: inline-block;
    white-space: nowrap;
    line-height: 1.6;
    vertical-align: middle;
    padding-bottom: 3px;
    /* animation driven by JS so it works regardless of prefers-reduced-motion */
}
.ticker-track a {
    color: #F1D9DB;
    text-decoration: none;
    font-size: 0.82rem;
    margin-right: 3rem;
    text-transform: capitalize;
}
.ticker-track a:hover { color: #fff; text-decoration: underline; }

/* ---------- Layout shell ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
main { padding-top: 4rem; padding-bottom: 4rem; }
main.wrap { padding-top: 4rem; padding-bottom: 4rem; }

/* ---------- Hero (asymmetric) ---------- */
.hero { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.hero-feature .eyebrow { margin-bottom: 0.75rem; display: block; }
.hero-feature h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    line-height: 1.08;
    font-weight: 600;
    margin: 0 0 1rem;
}
.hero-feature .dek { color: var(--ash); font-size: 1.05rem; margin: 0 0 1rem; max-width: 46ch; }
.hero-feature .meta { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ash); }
.hero-rail { border-left: 1px solid var(--line); padding-left: 1.75rem; }
.hero-rail h2 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 1rem;
}
.rail-item { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.rail-item:last-child { border-bottom: none; }
.rail-item-text { flex: 1; min-width: 0; }
.rail-item-text a { text-decoration: none; font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 0.3rem; line-height: 1.35; }
.rail-item-text a:hover { color: var(--cherry); }
.rail-item .meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ash); }
.rail-item-thumb { flex-shrink: 0; width: 152px; height: 104px; overflow: hidden; display: block; }
.rail-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Pillars strip ---------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    overflow: hidden;
    margin-bottom: 4rem;
}

.pillar { background: var(--paper-raised); padding: 1.1rem 1rem; text-decoration: none; color: inherit; display: block; transition: background .15s; }
.pillar:hover { background: #FAF3F1; }
.pillar .label { font-weight: 600; font-size: 0.85rem; margin-bottom: 0.2rem; }
.pillar .sub { font-size: 0.72rem; color: var(--ash); }

/* ---------- Section headers ---------- */
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.25rem; border-bottom: 2px solid var(--charcoal); padding-bottom: 0.6rem; }
.section-head h2 { font-family: var(--font-display); font-size: 1.4rem; margin: 0; font-weight: 600; }
.section-head a { font-family: var(--font-mono); font-size: 0.75rem; text-decoration: none; color: var(--cherry); }
.section-head a:hover { text-decoration: underline; }
section.block { margin-bottom: 3.5rem; }

/* ---------- Card grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.card { display: flex; flex-direction: column; }
.card .tag { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cherry); margin-bottom: 0.5rem; }
.card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin: 0 0 0.5rem; line-height: 1.25; }
.card h3 a { text-decoration: none; }
.card h3 a:hover { color: var(--cherry); }
.card .dek { color: var(--ash); font-size: 0.9rem; margin: 0 0 0.75rem; flex-grow: 1; }
.card .meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ash); }

/* ---------- The Latest section ---------- */
.latest-grid {
    display: grid;
    grid-template-columns: 1fr 298px;
    gap: 2.5rem;
    align-items: start;
}

/* Hero */
.latest-hero {
    display: block;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.latest-hero:hover h3 { color: var(--cherry); }
.latest-hero-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 1rem; }
.latest-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.latest-hero:hover .latest-hero-img img { transform: scale(1.02); }
.latest-hero-text .tag { margin-bottom: .4rem; display: inline-block; }
.latest-hero-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin: .3rem 0 .5rem;
    transition: color .15s;
}
.latest-hero-text .dek { color: var(--ash); font-size: .95rem; margin: 0 0 .5rem; }

/* Feed items */
.latest-feed-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.latest-feed-item:last-child { border-bottom: none; }
.latest-feed-thumb { flex-shrink: 0; width: 240px; height: 180px; overflow: hidden; display: block; }
.latest-feed-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.latest-feed-thumb:hover img { transform: scale(1.04); }
.latest-feed-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .2rem; }
.latest-feed-text .tag { font-size: 10px; }
.latest-feed-title {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.35;
    text-decoration: none;
    color: var(--charcoal);
}
.latest-feed-title:hover { color: var(--cherry); }
.latest-feed-dek { font-size: .88rem; color: var(--ash); line-height: 1.55; margin: .3rem 0 0; }

/* Sidebar */
.latest-sidebar { display: flex; flex-direction: column; gap: 0; }
.sidebar-widget {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}
.sidebar-widget:last-child { border-bottom: none; }
.sidebar-widget-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--charcoal);
}

/* Most Popular list */
.popular-list { list-style: none; margin: 0; padding: 0; }
.popular-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .7rem 0;
    border-bottom: 1px solid var(--line);
}
.popular-item:last-child { border-bottom: none; }
.popular-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--line);
    line-height: 1;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}
.popular-text { flex: 1; min-width: 0; }
.popular-text a { font-weight: 600; font-size: .85rem; line-height: 1.35; text-decoration: none; color: var(--charcoal); display: block; margin-bottom: .2rem; }
.popular-text a:hover { color: var(--cherry); }
.popular-text .meta { font-family: var(--font-mono); font-size: .68rem; color: var(--ash); }

/* Podcast banner cards */
.sidebar-widget-head { display: flex; justify-content: space-between; align-items: baseline; }
.sidebar-view-all { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ash); text-decoration: none; font-weight: 600; }
.sidebar-view-all:hover { color: var(--cherry); }

.podcast-banner {
    display: block;
    text-decoration: none;
    color: #fff;
    position: relative;
    margin-bottom: 1.5rem;
    padding-top: 18px; /* album protrusion */
}
.podcast-banner:last-of-type { margin-bottom: 0; }

/* Album cover — floats on left, sticks above the bg card */
.podcast-banner-album {
    position: absolute;
    top: 0;
    left: 14px;
    width: 102px;
    height: 102px;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.podcast-banner-album img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Background image — full card width, gradient overlay on the bg itself */
.podcast-banner-bg {
    position: relative;
    height: 112px;
    overflow: hidden;
}
.podcast-banner-bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.7);
    transition: filter .25s;
}
.podcast-banner:hover .podcast-banner-bg > img { filter: brightness(.85); }

/* Gradient overlay on the bg card — accent colour from inline style */
.podcast-banner-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* "Listen Here" — sits on top of gradient, left-aligned under album */
.podcast-banner-listen {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 130px; /* 14px margin + 102px album + 14px breathing */
    height: 30px; /* shorter box sits closer to the album's bottom edge, bottom-anchored */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .4rem;
    padding: 3px .65rem 3px 14px; /* left matches podcast-banner-album's fixed left offset */
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    z-index: 2;
}
.podcast-banner-listen svg { flex-shrink: 0; }

/* Latest episodes */
.sidebar-divider { border: none; border-top: 1px solid var(--line); margin: 1.25rem 0 1rem; }
.sidebar-sub-title {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 .75rem;
}
.episode-item { padding: .6rem 0; border-bottom: 1px solid var(--line); }
.episode-item:last-child { border-bottom: none; }
.episode-item a { font-weight: 600; font-size: .82rem; line-height: 1.35; text-decoration: none; color: var(--charcoal); display: block; margin-bottom: .15rem; }
.episode-item a:hover { color: var(--cherry); }
.episode-item .meta { font-family: var(--font-mono); font-size: .68rem; color: var(--ash); }

@media (max-width: 1000px) {
    .latest-grid { grid-template-columns: 1fr; }
    .latest-sidebar { border-top: 2px solid var(--charcoal); padding-top: 1.5rem; }
}

/* ---------- Platform listing page ---------- */
.platform-head { border-bottom: 3px solid var(--charcoal); padding-bottom: 1.5rem; margin-bottom: 2.5rem; }
.platform-head .eyebrow { display:block; margin-bottom: 0.5rem; }
.platform-head h1 { font-family: var(--font-display); font-size: 2.2rem; margin: 0 0 0.6rem; }
.platform-head p { color: var(--ash); max-width: 60ch; margin: 0; }
.grid.listing { grid-template-columns: repeat(2, 1fr); }

/* ---------- Single post ---------- */
.post-head { max-width: 70ch; margin: 0 auto 2.5rem; text-align: left; }
.post-head .eyebrow { display: block; margin-bottom: 0.9rem; }
.post-head h1 { font-family: var(--font-display); font-size: 2.4rem; line-height: 1.12; margin: 0 0 1rem; }
.post-head .meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ash); border-top: 1px solid var(--line); padding-top: 0.9rem; }
.post-body { max-width: 70ch; margin: 0 auto; font-size: 1.08rem; line-height: 1.75; }
.post-body p { margin: 0 0 1.4rem; }
/* Images placed inside an article body via [image: /path.jpg] lines */
.post-body-figure { margin: 0 0 1.6rem; }
.post-body-figure img { width: 100%; height: auto; display: block; border-radius: 0; }
.back-link { display: inline-block; margin-bottom: 2rem; font-family: var(--font-mono); font-size: 0.8rem; text-decoration: none; color: var(--ash); }
.back-link:hover { color: var(--cherry); }

/* ---------- Empty state ---------- */
.empty-state { padding: 3rem 0; text-align: center; color: var(--ash); font-size: 0.95rem; border: 1px dashed var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #A9A6A0; margin-top: 4rem; }

.footer-main-bleed { background: #000; }
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .wordmark { display: inline-block; margin-bottom: 1.25rem; }
.footer-about { font-size: 0.875rem; line-height: 1.7; color: #A9A6A0; margin: 0 0 .75rem; max-width: 38ch; }

.footer-subscribe-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--paper);
    margin: 0 0 .5rem;
    letter-spacing: -.02em;
}
.footer-subscribe-sub {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #A9A6A0;
    margin: 0 0 1.25rem;
}

.subscribe-row {
    display: flex;
    gap: 0;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: .75rem;
}
.subscribe-input {
    flex: 1;
    padding: .7rem 1rem;
    background: var(--paper-raised);
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal);
    outline: none;
}
.subscribe-input::placeholder { color: #aaa; }
.subscribe-btn {
    padding: .7rem 1.4rem;
    background: var(--cherry);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.subscribe-btn:hover { background: var(--cherry-deep); }
.subscribe-btn:disabled { opacity: .7; cursor: default; }

.subscribe-msg { font-size: 0.85rem; line-height: 1.55; border-radius: 0; }
.subscribe-ok  { background: rgba(16,120,72,.15); color: #5ce0a0; padding: 1rem 1.1rem; }
.subscribe-err { color: #f87171; }

/* Podcast newsletter sidebar widget */
.podcast-newsletter {
    background: var(--charcoal);
    color: var(--paper);
    text-align: center;
    padding: 2rem 1.5rem;
    margin: 0 0 1.25rem;
}
.podcast-newsletter-eyebrow {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin: 0 0 .75rem;
}
.podcast-newsletter-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--paper);
    margin: 0 0 .75rem;
}
.podcast-newsletter-sub {
    font-size: .82rem;
    line-height: 1.6;
    color: rgba(255,255,255,.65);
    margin: 0 0 1.5rem;
}
.podcast-newsletter-form .subscribe-row {
    flex-direction: column;
    border-radius: 0;
    overflow: visible;
    gap: .6rem;
    margin-bottom: .75rem;
}
.podcast-newsletter-form .subscribe-input {
    text-align: center;
    border-radius: 0;
}
.podcast-newsletter-btn {
    border-radius: 0;
    font-weight: 700;
    padding: .85rem 1rem;
}
.podcast-newsletter-fine {
    font-size: .72rem;
    line-height: 1.5;
    color: rgba(255,255,255,.4);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: .5rem;
    margin-top: 1.5rem;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: rgba(255,255,255,.08);
    color: #A9A6A0;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.social-icon:hover { background: rgba(255,255,255,.16); color: var(--paper); }

.footer-bottom {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: #706D68;
}

/* Footer link columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding-top: 3.5rem;
    padding-bottom: 3rem;
}
.footer-links-col h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--paper);
    margin: 0 0 .85rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-links-col ul { list-style: none; margin: 0; padding: 0; }
.footer-links-col li { margin-bottom: .65rem; }
.footer-links-col li:last-child { margin-bottom: 0; }
.footer-links-col a {
    font-size: 0.85rem;
    color: #A9A6A0;
    text-decoration: none;
    transition: color .15s;
}
.footer-links-col a:hover { color: var(--paper); }

@media (max-width: 900px) {
    .footer-main { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2.5rem; padding-bottom: 2rem; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; padding-top: 2.5rem; padding-bottom: 1.5rem; }
}

@media (max-width: 480px) {
    .footer-links { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Nav dropdown ---------- */
.nav-dropdown { display: inline-block; position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.12);
    min-width: 170px;
    padding: 0.4rem 0;
    z-index: 20;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 1rem;
    margin-left: 0 !important;
    font-size: 0.85rem;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--paper); }

/* ---------- Show hub (podcast platform header) ---------- */
.show-hub { display: flex; margin-bottom: 2.5rem; border-bottom: 3px solid var(--charcoal); padding-bottom: 2rem; align-items: flex-start; }
.show-hub-cover { width: 180px; height: 180px; flex-shrink: 0; background: var(--charcoal); overflow: hidden; display: flex; align-items: center; justify-content: center; margin-right: 2rem; }
.show-hub-cover img { width: 100%; height: 100%; object-fit: cover; }
.show-hub-cover-fallback { font-family: var(--font-display); font-size: 4rem; color: var(--cherry); }
.show-hub-info h1 { font-family: var(--font-display); font-size: 2.1rem; margin: 0.4rem 0 0.6rem; }
.show-hub-info p { color: var(--ash); max-width: 60ch; margin: 0 0 0.75rem; }
.show-hub-info .cadence { font-family: var(--font-mono); font-size: 0.82rem; color: var(--charcoal); }
.subscribe-links { display: flex; flex-wrap: wrap; margin-top: 0.75rem; }
.subscribe-links a { font-family: var(--font-mono); font-size: 0.8rem; text-decoration: none; color: var(--cherry); border-bottom: 1px solid var(--cherry); padding-bottom: 2px; margin-right: 1.25rem; margin-bottom: 0.5rem; }
.subscribe-links a:hover { color: var(--cherry-deep); border-color: var(--cherry-deep); }

/* ---------- Card / post images ---------- */
.card-image { width: 100%; aspect-ratio: 16/10; overflow: hidden; margin-bottom: 0.85rem; background: var(--line); }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-image { max-width: 70ch; margin: 0 auto 2rem; overflow: hidden; }
.post-hero-image img { width: 100%; display: block; }

/* ---------- Responsive ---------- */
/* ---------- Hamburger button ---------- */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    position: relative;
    z-index: 201;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--paper);
    border-radius: 0;
    transition: transform .25s, opacity .25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer ---------- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--charcoal);
    z-index: 200;
    overflow-y: auto;
    padding: 4.5rem 0 2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
    display: block;
    padding: 0.85rem 1.75rem;
    color: #D9D6D0;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color .15s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--paper); }
.mobile-nav a.active { border-left: 3px solid var(--cherry); padding-left: calc(1.75rem - 3px); }
.mobile-nav-group-label {
    display: block;
    padding: 0.9rem 1.75rem 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ash);
}
.mobile-nav-sub { padding-left: 2.5rem !important; font-size: 0.9rem !important; }
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.mobile-nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-rail { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.5rem; }
    .pillars { grid-template-columns: repeat(3, 1fr); }
    .grid, .grid.listing { grid-template-columns: 1fr; }
    .podcast-split { grid-template-columns: 1fr; }
    .top-nav { display: none; }
    .nav-burger { display: flex; }
    .mobile-nav, .mobile-nav-overlay { display: block; }
    .hero-feature h1 { font-size: 2rem; }
    .show-hub { flex-direction: column; }
    .show-hub-cover { width: 100%; height: 220px; }
}

/* ---------- Mobile nav JS interaction ---------- */
body.nav-open { overflow: hidden; }

/* ---------- Accessibility ---------- */
a:focus-visible, button:focus-visible { outline: 2px solid var(--cherry); outline-offset: 2px; }

/* ============================================================
   PODCAST SHOW PAGES — pod-hero, episode grid, episode page
   ============================================================ */

/* ------ Podcast Show Hub Hero ------ */
.pod-hero {
    background: var(--charcoal);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}
.pod-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pod-accent, #9E1B24) 0%, rgba(26,26,26,.92) 60%, rgba(26,26,26,.97) 100%);
    pointer-events: none;
}
.pod-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
}
.pod-hero-cover {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 0;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pod-hero-cover img { width: 100%; height: 100%; object-fit: cover; }
.pod-hero-cover-fallback {
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(255,255,255,.3);
}
.pod-hero-info { flex: 1; min-width: 0; }
.pod-hero-eyebrow {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    display: block;
    margin-bottom: .5rem;
}
.pod-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .85rem;
    line-height: 1.1;
    letter-spacing: -.01em;
}
.pod-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
    max-width: 56ch;
    margin: 0 0 .85rem;
}
.pod-hero-cadence {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    margin: 0 0 1.25rem;
    letter-spacing: .04em;
}
.pod-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}
.pod-listen-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem 1rem;
    border-radius: 0;
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}
.pod-listen-btn:hover { opacity: .85; transform: translateY(-1px); }
.pod-listen-apple   { background: #000; color: #fff; }
.pod-listen-spotify { background: #1DB954; color: #000; }
.pod-listen-youtube { background: #FF0000; color: #fff; }

/* ------ Episode grid ------ */
.pod-section-head {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2.5rem 0 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--charcoal);
}
.pod-section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: var(--charcoal);
}
.pod-episode-count {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ash);
}

.pod-episode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}
.pod-episode-card {
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}
.pod-episode-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.pod-ep-thumb-link { display: block; }
.pod-ep-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--charcoal);
}
.pod-ep-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.pod-episode-card:hover .pod-ep-thumb img { transform: scale(1.03); }
.pod-ep-thumb-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal), #333);
}
.pod-ep-thumb-fallback img { width: 55%; height: 55%; object-fit: cover; opacity: .5; border-radius: 0; }
.pod-ep-thumb-fallback span {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255,255,255,.25);
}
.pod-ep-body {
    padding: 1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pod-ep-num {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--cherry);
    font-weight: 600;
    display: block;
    margin-bottom: .3rem;
}
.pod-ep-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 .55rem;
    flex: 1;
}
.pod-ep-title a { text-decoration: none; color: var(--charcoal); }
.pod-ep-title a:hover { color: var(--cherry); }
.pod-ep-excerpt {
    font-size: .85rem;
    line-height: 1.55;
    color: var(--ash);
    margin: 0 0 .85rem;
}
.pod-ep-meta {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--ash);
    margin-bottom: .85rem;
}
.pod-ep-listen {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    align-self: flex-start;
    background: var(--charcoal);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: .04em;
    text-decoration: none;
    padding: .45rem .95rem;
    border-radius: 0;
    transition: background .2s;
}
.pod-ep-listen:hover { background: var(--cherry); }

/* ------ Pagination ------ */
.pod-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    margin-top: 1rem;
}
.pod-page-btn {
    font-family: var(--font-mono);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--charcoal);
    border: 1px solid var(--line);
    padding: .5rem 1rem;
    border-radius: 0;
    transition: border-color .2s, color .2s;
}
.pod-page-btn:hover { border-color: var(--charcoal); color: var(--cherry); }
.pod-page-info {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--ash);
    letter-spacing: .04em;
}

/* ------ Host bio ------ */
.pod-host-section {
    border-top: 2px solid var(--line);
    padding-top: 2.5rem;
    margin-top: 1rem;
    padding-bottom: 3rem;
}
.pod-host-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}
.pod-host-avatar {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 0;
    overflow: hidden;
    background: var(--line);
}
.pod-host-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pod-host-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 .5rem;
}
.pod-host-bio {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--ash);
    margin: 0;
    max-width: 60ch;
}

/* ------ Episode page ------ */
.pod-breadcrumb {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .04em;
    color: var(--ash);
    margin: 1.75rem 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem;
}
.pod-breadcrumb a { text-decoration: none; color: var(--ash); }
.pod-breadcrumb a:hover { color: var(--cherry); }
.pod-breadcrumb-sep { opacity: .4; }

.pod-ep-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}
.pod-ep-page-main {}
.pod-ep-header { margin-bottom: 2rem; }
.pod-ep-header .pod-ep-num { font-size: .8rem; margin-bottom: .5rem; }
.pod-ep-header h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 .75rem;
    letter-spacing: -.01em;
}
.pod-ep-header-meta {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--ash);
    letter-spacing: .04em;
}
.pod-ep-hero-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 0;
    background: var(--charcoal);
    margin-bottom: 1.75rem;
}
.pod-ep-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.pod-audio-player {
    border-radius: 0;
    margin-bottom: 2rem;
}
.pod-audio-player iframe, .pod-audio-player audio { border-radius: 0; }
.pod-audio-player audio { width: 100%; }
.pod-audio-no-embed {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem 0;
}
.pod-audio-no-embed a {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .6rem 1.2rem;
    border-radius: 0;
    font-family: var(--font-mono);
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s;
}
.pod-audio-no-embed a:hover { opacity: .8; }
.pod-audio-no-embed .pod-listen-apple   { background: #000; color: #fff; }
.pod-audio-no-embed .pod-listen-spotify { background: #1DB954; color: #000; }
.pod-audio-no-embed .pod-listen-youtube { background: #FF0000; color: #fff; }

/* Platform listen buttons */
.pod-platform-links {
    display: flex;
    gap: .75rem;
    margin-bottom: 2rem;
}
.pod-platform-btn {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 1;
    padding: .65rem .9rem;
    border: 1px solid var(--line);
    background: #fff;
    text-decoration: none;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
.pod-platform-btn:hover {
    border-color: var(--ash);
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.pod-platform-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.pod-platform-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.pod-platform-label {
    font-size: .68rem;
    color: var(--ash);
    letter-spacing: .02em;
}
.pod-platform-name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--ink);
}

/* Episode pull quote */
.pod-pull-quote {
    position: relative;
    background: #F5F4F2;
    margin: 0 0 2.5rem;
    padding: 2.5rem 3.5rem;
    text-align: center;
}
.pod-pull-quote p {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.65;
    color: var(--ink);
    margin: 0;
}
.pod-pull-quote-mark {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--ash);
    opacity: .55;
}
.pod-pull-quote-open  { top: -0.4rem; left: .75rem; }
.pod-pull-quote-close { bottom: -1.6rem; right: .75rem; }

/* Episode video embed */
.pod-ep-video {
    margin-bottom: 2.5rem;
    aspect-ratio: 16 / 9;
    background: #000;
}
.pod-ep-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
}

/* Guest & host person cards */
.pod-person {
    border-top: 1px solid var(--line);
    padding-top: 1.75rem;
    margin-bottom: 3rem;
}
.pod-person-divider { display: none; }
.pod-person-eyebrow {
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--cherry);
    margin: 0 0 2rem;
}
.pod-person-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #F5F4F2;
    padding: 2rem 2.5rem 2rem 0;
}
.pod-person-photo {
    flex-shrink: 0;
    width: 220px;
    height: 290px;
    overflow: hidden;
    transform: translate(-1rem, -1rem);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.pod-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pod-person-text { padding-top: .5rem; }
.pod-person-card > .pod-person-text:first-child { padding-left: 2.5rem; }
.pod-person-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 .85rem;
    color: var(--ink);
}
.pod-person-bio {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--ink);
    margin: 0;
}
.pod-person-socials {
    display: flex;
    gap: .6rem;
    margin-top: 1.4rem;
}
.pod-person-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #E9E7E2;
    color: var(--ink);
    transition: background .15s, color .15s;
}
.pod-person-social:hover {
    background: var(--charcoal);
    color: #fff;
}
@media (max-width: 640px) {
    .pod-person-card { flex-direction: column; padding: 0 1.5rem 1.5rem; }
    .pod-person-photo { transform: none; margin: 0 0 0 -1.5rem; width: 100%; max-width: 260px; }
    .pod-person-card > .pod-person-text:first-child { padding-left: 0; }
}

/* Episode subscription band */
.pod-ep-subscribe {
    background: var(--cherry);
    color: #fff;
    text-align: center;
    padding: 2.5rem 2.5rem 2rem;
    margin: 3rem 0;
}
.pod-ep-subscribe-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .85rem;
}
.pod-ep-subscribe-sub {
    font-family: var(--font-display);
    font-size: .95rem;
    line-height: 1.7;
    color: #fff;
    max-width: 640px;
    margin: 0 auto 1.5rem;
}
.pod-ep-subscribe-sub strong { font-weight: 700; }
.pod-ep-subscribe .pod-ep-subscribe-row {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
}
.pod-ep-subscribe .pod-ep-subscribe-input {
    flex: 1;
    min-width: 0;
    padding: .75rem 1rem;
    border: none;
    background: rgba(0, 0, 0, .25);
    color: #fff;
    font-size: .9rem;
    font-family: var(--font-body);
    border-radius: 0;
}
.pod-ep-subscribe .pod-ep-subscribe-input::placeholder { color: rgba(255, 255, 255, .65); }
.pod-ep-subscribe .pod-ep-subscribe-input:focus { outline: 2px solid rgba(255, 255, 255, .6); outline-offset: -2px; }
.pod-ep-subscribe .pod-ep-subscribe-btn {
    padding: .75rem 1.6rem;
    border: none;
    background: #fff;
    color: var(--cherry);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    border-radius: 0;
    transition: opacity .15s;
}
.pod-ep-subscribe .pod-ep-subscribe-btn:hover { opacity: .9; }
.pod-ep-subscribe-fine {
    font-size: .72rem;
    color: rgba(255, 255, 255, .85);
    margin: 1.1rem 0 0;
}
.pod-ep-subscribe .subscribe-msg { color: #fff; font-size: .8rem; margin-top: .6rem; }

.pod-show-notes { margin-bottom: 2rem; }
.pod-show-notes p {
    font-size: .975rem;
    line-height: 1.75;
    color: var(--charcoal);
    margin: 0 0 1.1em;
}
.pod-show-notes-empty { color: var(--ash); font-style: italic; }

.pod-ep-sidebar {
    border-left: 1px solid var(--line);
    padding-left: 2rem;
}
.pod-sidebar-card {
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.pod-sidebar-show {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.pod-sidebar-cover {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 0;
    overflow: hidden;
    background: var(--charcoal);
}
.pod-sidebar-cover img { width: 100%; height: 100%; object-fit: cover; }
.pod-sidebar-show-name {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    margin: 0 0 .25rem;
}
.pod-sidebar-show-desc {
    font-size: .78rem;
    line-height: 1.5;
    color: var(--ash);
    margin: 0;
}
.pod-sidebar-title {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 .85rem;
    font-weight: 600;
}
.pod-sidebar-links { display: flex; flex-direction: column; gap: .45rem; }
.pod-sidebar-links a {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--charcoal);
    padding: .4rem .7rem;
    border-radius: 0;
    border: 1px solid var(--line);
    transition: border-color .2s, color .2s;
}
.pod-sidebar-links a:hover { border-color: var(--cherry); color: var(--cherry); }
.pod-more-ep-list { list-style: none; padding: 0; margin: 0; }
.pod-more-ep-item {
    display: flex;
    gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}
.pod-more-ep-item:last-child { border-bottom: none; }
.pod-more-ep-thumb {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 0;
    overflow: hidden;
    background: var(--charcoal);
}
.pod-more-ep-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pod-more-ep-info a {
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--charcoal);
    line-height: 1.35;
    display: block;
    margin-bottom: .15rem;
}
.pod-more-ep-info a:hover { color: var(--cherry); }
.pod-more-ep-info .pod-ep-num { font-size: .65rem; }

/* ------ Responsive ------ */
@media (max-width: 900px) {
    .pod-hero-inner { flex-direction: column; align-items: flex-start; padding-top: 2.5rem; padding-bottom: 2.5rem; gap: 1.5rem; }
    .pod-hero-cover { width: 160px; height: 160px; }
    .pod-hero-title { font-size: 2rem; }
    .pod-episode-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .pod-ep-page-layout { grid-template-columns: 1fr; gap: 2rem; }
    .pod-ep-sidebar { order: -1; }
}
@media (max-width: 600px) {
    .pod-hero-cover { width: 120px; height: 120px; }
    .pod-hero-title { font-size: 1.6rem; }
    .pod-episode-grid { grid-template-columns: 1fr; }
    .pod-host-card { flex-direction: column; gap: 1rem; }
}

/* ---------- Podcast show page (editorial layout) ---------- */
.show-page-header {
    padding: 1.5rem 0 0;
    margin-bottom: 0;
}
.show-page-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
    border-top: 3px solid var(--charcoal);
    border-bottom: 1px solid var(--line);
    padding: .75rem 0 1rem;
    margin: 0 0 1.5rem;
}
.show-page-meta {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}
.show-page-desc-col { flex: 1; min-width: 0; }
.show-page-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 1rem;
}
.show-page-cadence {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: var(--ash);
    font-weight: 500;
}
.show-page-cadence svg { flex-shrink: 0; }
.show-subscribe-col {
    flex-shrink: 0;
    width: 230px;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.show-subscribe-btn {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .75rem 1rem;
    border: 1px solid var(--line);
    background: var(--paper-raised);
    text-decoration: none;
    color: var(--charcoal);
    transition: border-color .2s, box-shadow .2s;
}
.show-subscribe-btn:hover {
    border-color: var(--charcoal);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.show-subscribe-icon {
    width: 26px;
    height: 26px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.show-subscribe-icon svg { width: 14px; height: 14px; }
.show-subscribe-apple  { background: #000; color: #fff; }
.show-subscribe-spotify { background: #1DB954; color: #000; }
.show-subscribe-youtube { background: #FF0000; color: #fff; }
.show-subscribe-text { display: flex; flex-direction: column; line-height: 1.2; }
.show-subscribe-text small { font-size: .62rem; color: var(--ash); text-transform: uppercase; letter-spacing: .05em; }
.show-subscribe-text strong { font-size: .82rem; font-weight: 600; }
.show-hero-banner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 420px;
    overflow: hidden;
}
.show-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Featured episode */
.show-featured {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
}
.show-featured-left {}
.show-featured-img-link { display: block; margin-bottom: 1rem; }
.show-featured-img-link img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.show-ep-num-tag {
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--cherry);
    display: block;
    margin-bottom: .35rem;
}
.show-featured-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.25;
    margin: 0 0 .75rem;
}
.show-featured-title a { text-decoration: none; color: var(--charcoal); }
.show-featured-title a:hover { color: var(--cherry); }
.show-featured-excerpt {
    font-size: .95rem;
    color: var(--ash);
    line-height: 1.65;
    margin: 0 0 1rem;
}
.show-featured-listen {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 2px solid var(--cherry);
    padding-bottom: 1px;
    transition: color .2s;
}
.show-featured-listen:hover { color: var(--cherry); }
.show-featured-right {}
.show-featured-cover-fallback { text-align: center; }
.show-featured-cover-fallback img { width: 100%; max-width: 280px; margin: 0 auto 1rem; display: block; }
.show-featured-cover-links { display: flex; flex-direction: column; gap: .4rem; align-items: center; }
.show-featured-cover-links a {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .05em;
    color: var(--cherry);
    text-decoration: none;
}
.show-featured-cover-links a:hover { text-decoration: underline; }

/* Hub page — Per-show editorial header */
.pod-hub-show-block { margin-bottom: 4rem; }
.pod-hub-show-hero {
    position: relative;
    margin-bottom: 0;
}
.pod-hub-show-hero-img {
    width: 100%;
    aspect-ratio: 16 / 6;
    object-fit: cover;
    display: block;
}
.pod-hub-show-title-box {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--paper);
    padding: .8rem 2.5rem .2rem 0;
}
.pod-hub-show-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0;
}
.pod-hub-show-title a { text-decoration: none; color: var(--charcoal); }
.pod-hub-show-title a:hover { color: var(--cherry); }
.pod-hub-show-info {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.1rem 0 1.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2rem;
}
.pod-hub-show-desc-col { flex: 1; font-size: .93rem; line-height: 1.6; color: var(--ink); }
.pod-hub-show-cadence {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--ash);
    margin-top: .6rem;
}
.pod-hub-show-subscribe {
    width: 230px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

/* Hub page — Recent Episodes editorial layout */
.recent-eps-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0 2.5rem;
    align-items: start;
    border-top: 2px solid var(--charcoal);
    padding-top: 1.5rem;
    margin-bottom: 3rem;
}
.recent-ep-featured {}
.recent-ep-featured-img-link { display: block; margin-bottom: .9rem; }
.recent-ep-featured-img-link img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.recent-ep-featured-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: .3rem 0 .6rem;
}
.recent-ep-featured-title a { text-decoration: none; color: var(--charcoal); }
.recent-ep-featured-title a:hover { color: var(--cherry); }
.recent-ep-featured-excerpt { font-size: .92rem; color: var(--ash); margin: 0 0 .75rem; line-height: 1.55; }
.recent-ep-sidebar { border-left: 1px solid var(--line); padding-left: 2.5rem; }
.recent-ep-sidebar-item {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.recent-ep-sidebar-item:first-child { padding-top: 0; }
.recent-ep-sidebar-thumb-link { flex-shrink: 0; display: block; }
.recent-ep-sidebar-thumb {
    width: 130px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.recent-ep-sidebar-body { flex: 1; min-width: 0; }
.recent-ep-sidebar-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: .2rem 0 .5rem;
}
.recent-ep-sidebar-title a { text-decoration: none; color: var(--charcoal); }
.recent-ep-sidebar-title a:hover { color: var(--cherry); }

/* Episode list — 2-column grid */
.show-ep-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 0;
}
.show-ep-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.75rem 1.5rem 1.75rem 0;
    border-bottom: 1px solid var(--line);
}
.show-ep-item:nth-child(even) {
    padding-left: 1.5rem;
    padding-right: 0;
}
.show-ep-item-thumb {
    flex-shrink: 0;
    width: 230px;
    aspect-ratio: 4 / 3;
    display: block;
    overflow: hidden;
}
.show-ep-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.show-ep-item:hover .show-ep-item-thumb img { transform: scale(1.04); }
.show-ep-item-body { flex: 1; min-width: 0; }
.show-ep-item-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    margin: .3rem 0 .5rem;
}
.show-ep-item-title a { text-decoration: none; color: var(--charcoal); }
.show-ep-item-title a:hover { color: var(--cherry); }
.show-ep-item-excerpt {
    font-size: .9rem;
    color: var(--ash);
    line-height: 1.6;
    margin: 0 0 .65rem;
}
.show-ep-item-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.show-ep-item-date { font-size: .8rem; color: var(--ash); }
.show-ep-item-listen {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 2px solid var(--cherry);
    padding-bottom: 1px;
    transition: color .2s;
}
.show-ep-item-listen:hover { color: var(--cherry); }

/* Number-style pagination */
.pod-page-current, .pod-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-family: var(--font-mono);
    font-size: .8rem;
    text-decoration: none;
    color: var(--ash);
    border: 1px solid transparent;
    transition: border-color .2s, color .2s;
}
.pod-page-current {
    color: var(--charcoal);
    border-color: var(--charcoal);
    font-weight: 700;
}
.pod-page-num:hover { border-color: var(--line); color: var(--charcoal); }
.pod-page-next { width: auto; padding: 0 .5rem; }

@media (max-width: 860px) {
    .show-page-title { font-size: 2.4rem; }
    .show-page-meta { flex-direction: column; gap: 1.5rem; }
    .show-subscribe-col { width: 100%; flex-direction: row; flex-wrap: wrap; }
    .show-subscribe-btn { flex: 1 1 180px; }
    .show-featured { grid-template-columns: 1fr; }
    .show-featured-right { order: -1; }
}
@media (max-width: 560px) {
    .show-page-title { font-size: 1.9rem; }
    .show-subscribe-col { flex-direction: column; }
    .show-subscribe-btn { flex: unset; }
}

/* ---------- Podcasts hub page ---------- */
.podcasts-hub-intro {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2rem;
    text-align: center;
}
.podcasts-hub-intro h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin: .35rem 0 .75rem;
}
.podcasts-hub-sub {
    font-size: 1rem;
    color: var(--ash);
    max-width: 60ch;
    margin: 0 auto;
}
.podcasts-hub-sub a { color: var(--cherry); }

.pod-hub-show-block { margin: 2rem 0 3rem; }
.pod-hub-eps { padding-top: 1.75rem; padding-bottom: .5rem; }

.pod-hub-view-all { margin-top: 1.75rem; text-align: center; }
.pod-hub-view-all-btn {
    display: inline-block;
    padding: .65rem 2rem;
    border: 2px solid var(--charcoal);
    border-radius: 0;
    font-family: var(--font-mono);
    font-size: .73rem;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
    transition: background .2s, color .2s;
}
.pod-hub-view-all-btn:hover { background: var(--charcoal); color: var(--paper); }

/* Show tag on hub recent-episodes cards */
.pod-ep-show-tag {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--cherry);
    display: block;
    margin-bottom: .25rem;
}

/* Breadcrumb inside the pod-hero */
.pod-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: .85rem;
}
.pod-hero-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.pod-hero-breadcrumb a:hover { color: #fff; }
.pod-hero-breadcrumb span:last-child { color: rgba(255,255,255,.35); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 28ch; }

/* Shows gallery (podcast hub cover grid) */
.pod-shows-gallery {
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2.5rem;
}
.pod-shows-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    justify-content: center;
}
.pod-show-cover-card {
    display: block;
    text-decoration: none;
    color: var(--charcoal);
    flex: 0 0 calc(25% - 1.4rem);
    max-width: 300px;
    min-width: 180px;
}
.pod-show-cover-card img,
.pod-show-cover-fallback {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    display: block;
    transition: transform .25s ease, box-shadow .25s ease;
}
.pod-show-cover-fallback {
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pod-show-cover-fallback span {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--cherry);
}
.pod-show-cover-card:hover img,
.pod-show-cover-card:hover .pod-show-cover-fallback {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.pod-show-cover-name {
    margin: .65rem 0 0;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: -.01em;
    text-align: center;
}

@media (max-width: 700px) {
    .podcasts-hub-intro h1 { font-size: 2rem; }
    .pod-hub-show-block { margin: 1.5rem 0 2rem; }
    .pod-show-cover-card { flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 420px) {
    .pod-show-cover-card { flex: 0 0 100%; max-width: 100%; }
}

/* ── Resources / downloads library ──────────────────────────────────────── */
.res-head { padding: 2.5rem 0 1.75rem; border-bottom: 1px solid var(--line); margin-bottom: 1.75rem; }
.res-head h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin: .5rem 0 .75rem;
    color: var(--charcoal);
}
.res-head-dek { font-size: 1rem; line-height: 1.7; color: var(--ash); max-width: 62ch; margin: 0; }

.res-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.res-filter {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .5rem .9rem;
    border: 1px solid var(--line);
    color: var(--ash);
    text-decoration: none;
    background: var(--paper-raised);
    transition: border-color .15s, color .15s, background .15s;
}
.res-filter span { opacity: .55; margin-left: .3rem; }
.res-filter:hover { color: var(--charcoal); border-color: var(--ash); }
.res-filter.is-active { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

.res-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.res-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--paper-raised);
    padding: 1.25rem;
    transition: border-color .15s, box-shadow .15s;
}
.res-card:hover { border-color: var(--ash); box-shadow: 0 3px 14px rgba(0,0,0,.07); }
.res-card-top { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: .85rem; }
.res-thumb { flex-shrink: 0; width: 64px; height: 64px; overflow: hidden; background: var(--paper); }
.res-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.res-thumb-blank {
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line);
}
.res-thumb-blank span {
    font-family: var(--font-mono); font-size: .62rem; font-weight: 700;
    letter-spacing: .06em; color: var(--ash);
}
.res-card-meta { min-width: 0; }
.res-type {
    font-family: var(--font-mono); font-size: .65rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; color: var(--cherry);
}
.res-title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.3;
    margin: .3rem 0 0;
    color: var(--charcoal);
}
.res-desc { font-size: .9rem; line-height: 1.65; color: var(--ash); margin: 0 0 1.1rem; flex: 1; }
.res-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding-top: .9rem; border-top: 1px solid var(--line);
}
.res-facts {
    display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
    font-family: var(--font-mono); font-size: .68rem; color: var(--ash);
}
.res-ext {
    background: var(--charcoal); color: #fff; padding: 2px 6px;
    font-weight: 700; letter-spacing: .04em;
}
.res-btn {
    display: inline-flex; align-items: center; gap: .45rem;
    background: var(--cherry); color: #fff;
    font-size: .78rem; font-weight: 700; letter-spacing: .03em;
    padding: .55rem 1rem; text-decoration: none; white-space: nowrap;
    transition: background .15s;
}
.res-btn:hover { background: var(--cherry-deep); }
.res-credit {
    font-size: .72rem; color: var(--ash); margin: .85rem 0 0;
    padding-top: .6rem; border-top: 1px dashed var(--line);
}

.res-cta { background: var(--paper); border: 1px solid var(--line); padding: 2.25rem; text-align: center; margin-bottom: 3rem; }
.res-cta h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin: 0 0 .6rem; color: var(--charcoal); }
.res-cta p { font-size: .95rem; line-height: 1.7; color: var(--ash); max-width: 56ch; margin: 0 auto 1.35rem; }
.res-cta-btn {
    display: inline-block; background: var(--charcoal); color: #fff;
    font-size: .8rem; font-weight: 700; letter-spacing: .04em;
    padding: .7rem 1.5rem; text-decoration: none; transition: background .15s;
}
.res-cta-btn:hover { background: var(--cherry); }

@media (max-width: 560px) {
    .res-head h1 { font-size: 2rem; }
    .res-grid { grid-template-columns: 1fr; }
    .res-card-foot { flex-direction: column; align-items: stretch; }
    .res-btn { justify-content: center; }
}

/* ── Gated download page ────────────────────────────────────────────────── */
.dl-gate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 1rem 0 3.5rem;
}
.dl-gate-asset { border-right: 1px solid var(--line); padding-right: 3rem; }
.dl-gate-thumb { width: 120px; height: 120px; overflow: hidden; background: var(--paper); margin-bottom: 1.25rem; }
.dl-gate-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dl-gate-thumb-blank { display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.dl-gate-thumb-blank span {
    font-family: var(--font-mono); font-size: .78rem; font-weight: 700;
    letter-spacing: .06em; color: var(--ash);
}
.dl-gate-asset h1 {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800; line-height: 1.15;
    margin: .4rem 0 .85rem; color: var(--charcoal);
}
.dl-gate-desc { font-size: .95rem; line-height: 1.75; color: var(--ash); margin: 0; }

.dl-gate-form { background: var(--paper); border: 1px solid var(--line); padding: 2rem; }
.dl-gate-form h2 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 800; margin: 0 0 .5rem; color: var(--charcoal);
}
.dl-gate-sub { font-size: .9rem; line-height: 1.65; color: var(--ash); margin: 0 0 1.5rem; }

.dl-field { margin-bottom: 1.1rem; }
.dl-field label {
    display: block;
    font-family: var(--font-mono); font-size: .7rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal);
    margin-bottom: .4rem;
}
.dl-field input {
    width: 100%;
    padding: .75rem .9rem;
    border: 1px solid var(--line);
    background: var(--paper-raised);
    font-family: var(--font-body); font-size: .92rem; color: var(--charcoal);
    border-radius: 0;
}
.dl-field input:focus { outline: 2px solid var(--charcoal); outline-offset: -2px; }
.dl-field.has-error input { border-color: var(--cherry); }
.dl-error { display: block; font-size: .78rem; color: var(--cherry); margin-top: .35rem; font-weight: 600; }

.dl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.dl-submit {
    width: 100%;
    background: var(--cherry); color: #fff;
    border: none; border-radius: 0;
    font-family: var(--font-body); font-size: .88rem; font-weight: 700; letter-spacing: .03em;
    padding: .85rem 1rem; cursor: pointer;
    transition: background .15s;
}
.dl-submit:hover { background: var(--cherry-deep); }
.dl-consent { font-size: .74rem; line-height: 1.6; color: var(--ash); margin: 1rem 0 0; }

@media (max-width: 780px) {
    .dl-gate { grid-template-columns: 1fr; gap: 2rem; }
    .dl-gate-asset { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 1.75rem; }
    .dl-gate-asset h1 { font-size: 1.6rem; }
    .dl-gate-form { padding: 1.5rem; }
}

/* ── Resource detail page ───────────────────────────────────────────────── */
.rd-page { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: .5rem 0 3rem; align-items: start; }

.rd-title {
    font-family: var(--font-display);
    font-size: 2.4rem; font-weight: 800; line-height: 1.12;
    margin: .35rem 0 .75rem; color: var(--charcoal);
}
.rd-subtitle { font-size: 1.1rem; line-height: 1.6; color: var(--ash); margin: 0 0 1.5rem; font-style: italic; }
.rd-hero { margin: 0 0 1.75rem; }
.rd-hero img { width: 100%; height: auto; display: block; }
.rd-standfirst {
    font-size: 1.05rem; line-height: 1.8; color: var(--charcoal);
    margin: 0 0 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.rd-body { max-width: 68ch; font-size: 1rem; line-height: 1.8; }
.rd-body p { margin: 0 0 1.35rem; }
.rd-body-figure { margin: 0 0 1.5rem; }
.rd-body-figure img { width: 100%; height: auto; display: block; }

.rd-rail { position: sticky; top: 90px; }
.rd-card { border: 1px solid var(--line); background: var(--paper); padding: 1.25rem; }
.rd-card-thumb { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-raised); margin-bottom: 1.1rem; }
.rd-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rd-card-thumb-blank { display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.rd-card-thumb-blank span {
    font-family: var(--font-mono); font-size: .8rem; font-weight: 700;
    letter-spacing: .06em; color: var(--ash);
}
.rd-facts { margin: 0 0 1.1rem; }
.rd-facts > div {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: .5rem 0; border-bottom: 1px solid var(--line);
}
.rd-facts > div:last-child { border-bottom: none; }
.rd-facts dt {
    font-family: var(--font-mono); font-size: .68rem; letter-spacing: .06em;
    text-transform: uppercase; color: var(--ash);
}
.rd-facts dd { margin: 0; font-size: .85rem; font-weight: 600; color: var(--charcoal); text-align: right; }
.rd-download {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    background: var(--cherry); color: #fff;
    font-size: .88rem; font-weight: 700; letter-spacing: .03em;
    padding: .8rem 1rem; text-decoration: none; transition: background .15s;
}
.rd-download:hover { background: var(--cherry-deep); }
.rd-gate-note { font-size: .72rem; color: var(--ash); margin: .7rem 0 0; text-align: center; }

.rd-related { border-top: 1px solid var(--line); padding-top: 2rem; margin-bottom: 3rem; }
.rd-related-card {
    display: flex; gap: 1rem; align-items: center;
    border: 1px solid var(--line); background: var(--paper-raised);
    padding: 1rem; text-decoration: none; transition: border-color .15s;
}
.rd-related-card:hover { border-color: var(--ash); }
.rd-related-thumb { flex-shrink: 0; width: 64px; height: 64px; overflow: hidden; background: var(--paper); }
.rd-related-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rd-related-card h3 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    line-height: 1.3; margin: .25rem 0 0; color: var(--charcoal);
}

/* Listing card: title links to the detail page */
.res-title a { color: inherit; text-decoration: none; }
.res-title a:hover { color: var(--cherry); }
.res-thumb-link { display: block; }
.res-detail-link {
    font-family: var(--font-mono); font-size: .7rem; font-weight: 600;
    letter-spacing: .05em; text-transform: uppercase;
    color: var(--ash); text-decoration: none; white-space: nowrap;
    padding: .55rem .6rem; transition: color .15s;
}
.res-detail-link:hover { color: var(--charcoal); text-decoration: underline; }
.res-card-foot { gap: .5rem; }

@media (max-width: 860px) {
    .rd-page { grid-template-columns: 1fr; gap: 2rem; }
    .rd-rail { position: static; }
    .rd-title { font-size: 1.8rem; }
    .rd-card-thumb { max-width: 320px; }
}

/* ── Rich-text output (article bodies, show notes, resource editorial) ──── */
.post-body h2, .rd-body h2, .pod-show-notes h2 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 800; line-height: 1.25;
    margin: 2.2rem 0 .8rem; color: var(--charcoal);
}
.post-body h3, .rd-body h3, .pod-show-notes h3 {
    font-family: var(--font-display);
    font-size: 1.18rem; font-weight: 700; line-height: 1.3;
    margin: 1.8rem 0 .6rem; color: var(--charcoal);
}
.post-body h2:first-child, .rd-body h2:first-child, .pod-show-notes h2:first-child,
.post-body h3:first-child, .rd-body h3:first-child, .pod-show-notes h3:first-child { margin-top: 0; }

.post-body ul, .post-body ol,
.rd-body ul, .rd-body ol,
.pod-show-notes ul, .pod-show-notes ol { margin: 0 0 1.4rem; padding-left: 1.5rem; }
.post-body li, .rd-body li, .pod-show-notes li { margin-bottom: .5rem; line-height: 1.75; }

.post-body blockquote, .rd-body blockquote, .pod-show-notes blockquote {
    margin: 1.8rem 0;
    padding: 1.1rem 1.5rem;
    background: #F5F4F2;
    border-left: 3px solid var(--cherry);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
}
.post-body blockquote p:last-child,
.rd-body blockquote p:last-child,
.pod-show-notes blockquote p:last-child { margin-bottom: 0; }

.post-body a, .rd-body a, .pod-show-notes a {
    color: var(--cherry);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.post-body a:hover, .rd-body a:hover, .pod-show-notes a:hover { color: var(--cherry-deep); }

.post-body hr, .rd-body hr, .pod-show-notes hr {
    border: none; border-top: 1px solid var(--line); margin: 2.2rem 0;
}

.post-body figure, .rd-body figure, .pod-show-notes figure { margin: 1.8rem 0; }
.post-body figure img, .rd-body figure img, .pod-show-notes figure img {
    width: 100%; height: auto; display: block; border-radius: 0;
}
.post-body figcaption, .rd-body figcaption, .pod-show-notes figcaption {
    font-size: .8rem; color: var(--ash); margin-top: .5rem; line-height: 1.5;
}

.post-body strong, .rd-body strong, .pod-show-notes strong { font-weight: 700; }
.post-body em, .rd-body em, .pod-show-notes em { font-style: italic; }

/* ── Policy pages (editorial policy, privacy policy) ───────────────────── */
.policy-body { font-size: 1rem; line-height: 1.8; color: var(--charcoal); padding-bottom: 3rem; }
.policy-body p { margin: 0 0 1.3rem; }
.policy-body h2 {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 800; line-height: 1.25;
    margin: 2.4rem 0 .9rem; padding-top: 1.6rem;
    border-top: 1px solid var(--line);
    color: var(--charcoal);
}
.policy-body h3 {
    font-family: var(--font-display);
    font-size: 1.08rem; font-weight: 700;
    margin: 1.8rem 0 .6rem; color: var(--charcoal);
}
.policy-body ul { margin: 0 0 1.3rem; padding-left: 1.4rem; }
.policy-body li { margin-bottom: .55rem; }
.policy-body a { color: var(--cherry); text-decoration: underline; text-underline-offset: 2px; }
.policy-body a:hover { color: var(--cherry-deep); }
.policy-body strong { font-weight: 700; }

/* Third heading level in rich-text bodies */
.post-body h4, .rd-body h4, .pod-show-notes h4 {
    font-family: var(--font-display);
    font-size: 1.02rem; font-weight: 700; line-height: 1.35;
    margin: 1.5rem 0 .5rem; color: var(--charcoal);
}
.post-body h4:first-child, .rd-body h4:first-child, .pod-show-notes h4:first-child { margin-top: 0; }

/* ── Content type flags & disclosures ───────────────────────────────────── */
.type-flag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 2px 6px;
    margin-left: .45rem;
    vertical-align: middle;
    white-space: nowrap;
}
/* Paid content is flagged in amber so it reads as a notice, never as a section tag. */
.type-flag-partner { background: #8A6100; color: #fff; }
.type-flag-report  { background: #1a2e4a; color: #fff; }

/* Disclosure above a partner article — deliberately hard to miss. */
.partner-disclosure {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #FDF6E6;
    border: 1px solid #E0C782;
    border-left: 4px solid #8A6100;
    padding: 1rem 1.25rem;
    margin: 0 0 1.75rem;
}
.partner-disclosure-tag {
    flex: none;
    font-family: var(--font-mono);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    background: #8A6100;
    color: #fff;
    padding: 3px 7px;
    margin-top: 2px;
}
.partner-disclosure p {
    margin: 0;
    font-size: .85rem;
    line-height: 1.6;
    color: #5A4200;
}

/* Methodology note under a research piece. */
.report-methodology {
    background: #F5F4F2;
    border-left: 3px solid var(--charcoal);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0 3rem;
    max-width: 70ch;
}
.report-methodology h2 {
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 .6rem;
}
.report-methodology p { font-size: .9rem; line-height: 1.7; color: var(--charcoal); margin: 0; }

@media (max-width: 560px) {
    .partner-disclosure { flex-direction: column; gap: .6rem; }
}
