:root {
    color-scheme: light;
    --bg: #f7fafc;
    --surface: #ffffff;
    --text: #111c24;
    --muted: #63727d;
    --line: rgba(17, 28, 36, 0.12);
    --teal: #008c99;
    --orange: #f28c28;
    --burgundy: #7a2636;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        linear-gradient(90deg, rgba(247, 250, 252, 0.96), rgba(247, 250, 252, 0.74)),
        repeating-linear-gradient(0deg, rgba(0, 140, 153, 0.06) 0 1px, transparent 1px 86px),
        var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.audio-page {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 30px 0 64px;
}

.listen-page {
    width: min(1180px, 100%);
    padding: 24px clamp(14px, 3vw, 24px) 72px;
}

.watch-page {
    width: min(1120px, 100%);
    min-height: 100svh;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 28px clamp(12px, 3vw, 20px) 40px;
}

.watch-soon {
    display: grid;
    place-items: center;
    min-height: 60vh;
}

.watch-soon h1 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(70px, 13vw, 150px);
    line-height: 0.86;
    letter-spacing: 0;
}

.watch-page .audio-footer {
    margin-top: 0;
}

.listen-hero {
    position: relative;
    isolation: isolate;
    min-height: 0;
    display: grid;
    align-content: start;
    overflow: hidden;
    padding-bottom: clamp(12px, 2vw, 22px);
}

.listen-wave-field {
    position: absolute;
    z-index: 0;
    left: -14vw;
    right: -14vw;
    top: clamp(42px, 8vw, 86px);
    height: min(46vh, 340px);
    min-height: 230px;
    pointer-events: none;
    opacity: 0.7;
}

.listen-wave-field svg {
    display: block;
    width: 124%;
    height: 100%;
    transform: translateX(-8%);
    animation: listen-wave-slide 18s ease-in-out infinite alternate;
}

.wave-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    animation: listen-wave-dash 12s linear infinite;
}

.wave-line-a {
    stroke: rgba(0, 140, 153, 0.56);
    stroke-width: 2.8;
    stroke-dasharray: 18 18;
}

.wave-line-b {
    stroke: rgba(242, 140, 40, 0.42);
    stroke-width: 2.2;
    stroke-dasharray: 3 18;
    animation-duration: 15s;
}

.wave-line-c {
    stroke: rgba(122, 38, 54, 0.34);
    stroke-width: 2.4;
    stroke-dasharray: 26 22;
    animation-duration: 20s;
    animation-direction: reverse;
}

.wave-line-d,
.wave-line-e {
    stroke: rgba(0, 140, 153, 0.28);
    stroke-width: 1.8;
    stroke-dasharray: 9 24;
}

.wave-line-e {
    stroke: rgba(242, 140, 40, 0.3);
    animation-duration: 17s;
}

.listen-hero > :not(.listen-wave-field) {
    position: relative;
    z-index: 1;
}

.listen-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(286px, 360px);
    align-items: start;
    gap: clamp(28px, 5vw, 64px);
    padding-top: clamp(4px, 1.4vw, 16px);
}

.listen-hero-main,
.listen-now {
    min-width: 0;
}

.listen-hero-main {
    display: grid;
    align-content: start;
}

.listen-title-stack {
    display: grid;
    justify-items: center;
    width: min(100%, 680px);
    padding-top: 0;
}

.listen-lockup {
    display: block;
    width: clamp(230px, 38vw, 470px);
    margin-bottom: clamp(8px, 1.2vw, 14px);
}

.listen-lockup img {
    display: block;
    width: 100%;
    height: auto;
}

.listen-hero h1 {
    width: 100%;
    margin: 0;
    padding-top: clamp(10px, 1.4vw, 15px);
    border-top: 3px dotted rgba(122, 38, 54, 0.42);
    color: var(--text);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(46px, 7vw, 78px);
    font-weight: 700;
    line-height: 0.88;
    text-align: center;
    letter-spacing: 0;
    text-transform: none;
}

.listen-feature-deck {
    display: grid;
    grid-template-columns: minmax(230px, 1.35fr) repeat(2, minmax(124px, 0.72fr));
    grid-auto-rows: minmax(118px, auto);
    gap: 14px;
    max-width: 770px;
    margin-top: clamp(18px, 3vw, 30px);
}

.listen-feature-deck.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.listen-feature-card {
    position: relative;
    display: grid;
    align-content: end;
    gap: 10px;
    min-width: 0;
    min-height: 124px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.66);
    transition:
        border-color 180ms ease,
        transform 180ms ease,
        background 180ms ease;
}

.listen-feature-card:hover {
    border-color: rgba(0, 140, 153, 0.35);
    background: rgba(255, 255, 255, 0.84);
    transform: translateY(-2px);
}

.listen-feature-primary {
    min-height: 270px;
    grid-row: span 2;
    padding: 20px;
}

.listen-feature-deck.is-single .listen-feature-primary {
    min-height: 250px;
}

.listen-feature-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.22;
    object-fit: cover;
}

.listen-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(247, 250, 252, 0.1), rgba(247, 250, 252, 0.92));
}

.listen-feature-card > *:not(img) {
    position: relative;
    z-index: 2;
}

.listen-feature-card strong {
    display: block;
    max-width: 100%;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 3.3vw, 42px);
    line-height: 0.98;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.listen-feature-card:not(.listen-feature-primary) strong {
    font-size: clamp(20px, 2.2vw, 28px);
}

.listen-feature-card > span:not(.audio-meta) {
    max-width: 520px;
    color: rgba(17, 28, 36, 0.7);
    font-size: 15px;
    line-height: 1.45;
}

.listen-now {
    display: grid;
    gap: 15px;
    margin-top: clamp(8px, 2vw, 18px);
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(14px);
}

.listen-now-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.listen-now-head .eyebrow {
    margin: 0;
}

.listen-now h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1;
    letter-spacing: 0;
}

.listen-now > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.listen-now .audio-player.is-enhanced .audio-custom-controls {
    gap: 11px;
}

.listen-now .player-main-controls {
    gap: 6px;
}

.listen-now .player-btn {
    min-height: 40px;
    padding: 0 6px;
    font-size: 13px;
}

.listen-now .player-play {
    min-height: 48px;
}

.listen-now .chapter-list button {
    min-height: 46px;
}

.listen-section {
    padding-top: clamp(10px, 1.8vw, 18px);
}

.listen-page .audio-list {
    border-top: 0;
}

.listen-page .audio-row {
    min-height: 150px;
    padding: 18px 0;
}

.listen-page .audio-row:first-child {
    padding: 18px 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.54);
}

.listen-page .audio-footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 0;
}

.audio-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 72px;
}

.site-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 700;
}

.quiet-link {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.audio-hero {
    min-height: 52vh;
    display: grid;
    align-content: start;
    border-bottom: 1px solid var(--line);
}

.audio-hero-copy {
    max-width: 790px;
    padding-bottom: 72px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.audio-hero h1 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(72px, 14vw, 164px);
    line-height: 0.84;
    letter-spacing: 0;
}

.audio-hero-copy > p:last-child {
    max-width: 620px;
    margin: 26px 0 0;
    color: rgba(17, 28, 36, 0.66);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(19px, 2.4vw, 30px);
    line-height: 1.2;
}

.audio-list-shell {
    padding-top: 34px;
}

.list-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
}

.list-heading h2,
.empty-state h2,
.post-hero h1,
.post-body h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0;
}

.list-heading h2 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.95;
}

.episode-count {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.empty-state {
    display: grid;
    gap: 18px;
    padding: 34px 0 38px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.empty-state h2 {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 0.96;
}

.empty-state p {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.empty-spec {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.empty-spec span,
.audio-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.audio-list {
    border-top: 1px solid var(--line);
}

.audio-row {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 190px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    transition:
        background 180ms ease,
        opacity 260ms ease,
        transform 260ms ease;
}

.audio-list.is-observing .audio-row {
    opacity: 0;
    transform: translateY(18px);
}

.audio-list.is-observing .audio-row.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.audio-row:hover {
    background: rgba(255, 255, 255, 0.5);
}

.audio-thumb {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(17, 28, 36, 0.12);
    background:
        linear-gradient(135deg, rgba(0, 140, 153, 0.12), rgba(242, 140, 40, 0.12)),
        var(--surface);
}

.audio-thumb img {
    display: block;
    width: 100%;
    height: 100%;
}

.audio-thumb img {
    object-fit: cover;
}

.audio-thumb-placeholder {
    color: rgba(17, 28, 36, 0.76);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 76px;
    line-height: 1;
}

.audio-row-main {
    min-width: 0;
}

.audio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--burgundy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.audio-row h3 {
    margin: 10px 0 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 0.96;
    letter-spacing: 0;
}

.audio-row p {
    max-width: 650px;
    margin: 14px 0 0;
    color: rgba(17, 28, 36, 0.66);
    font-size: 16px;
    line-height: 1.55;
}

.audio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.audio-open,
.load-more,
.back-link {
    display: inline-grid;
    place-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.audio-open:hover,
.load-more:hover,
.back-link:hover {
    border-color: rgba(0, 140, 153, 0.4);
    color: var(--teal);
}

.load-sentinel {
    display: grid;
    place-items: center;
    gap: 14px;
    min-height: 118px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.load-sentinel[hidden] {
    display: none;
}

.load-more {
    cursor: pointer;
}

@keyframes listen-wave-slide {
    from {
        transform: translateX(-10%);
    }

    to {
        transform: translateX(-4%);
    }
}

@keyframes listen-wave-dash {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -220;
    }
}

.audio-post-page {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 28px clamp(12px, 3vw, 20px) 76px;
}

.audio-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: clamp(48px, 8vw, 84px);
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.footer-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: rgba(17, 28, 36, 0.58);
    font-size: 13px;
    font-weight: 800;
}

.footer-note span {
    color: var(--teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-note strong {
    color: rgba(17, 28, 36, 0.76);
    font-weight: 900;
}

.audio-post-page .site-mark {
    font-size: 23px;
}

.audio-post-page .quiet-link {
    display: inline-grid;
    place-items: center;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid transparent;
}

.audio-post-page .quiet-link:hover {
    border-color: rgba(0, 140, 153, 0.24);
    background: rgba(255, 255, 255, 0.55);
    color: var(--teal);
}

.post-shell {
    padding-top: 0;
}

.post-hero {
    display: grid;
    gap: 22px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}

.post-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: end;
    gap: clamp(30px, 5vw, 70px);
}

.split-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 392px);
    align-items: start;
    column-gap: clamp(30px, 5vw, 62px);
    row-gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.post-intro {
    min-width: 0;
}

.post-hero h1 {
    max-width: 860px;
    font-size: clamp(54px, 9vw, 112px);
    line-height: 0.88;
}

.post-hero > p {
    max-width: 690px;
    margin: 0;
    color: rgba(17, 28, 36, 0.68);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.25;
}

.post-intro > p:not(.eyebrow) {
    max-width: 690px;
    margin: 22px 0 0;
    color: rgba(17, 28, 36, 0.68);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.25;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 22px;
    color: var(--burgundy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.split-title {
    min-width: 0;
    padding-top: 0;
}

.post-kicker {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.post-kicker .eyebrow {
    margin: 0;
}

.post-back-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 31px;
    height: 31px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.post-back-icon:hover {
    border-color: rgba(0, 140, 153, 0.38);
    color: var(--teal);
}

.split-title h1 {
    max-width: 700px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(50px, 7.3vw, 92px);
    line-height: 0.9;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.split-title > p:not(.eyebrow) {
    max-width: 560px;
    margin: 18px 0 0;
    color: rgba(17, 28, 36, 0.68);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.25;
}

.split-player-panel {
    display: grid;
    align-self: start;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(14px);
}

.player-art {
    display: grid;
    max-width: 100%;
    min-width: 0;
}

.player-cover {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    object-fit: cover;
}

.chapter-list {
    display: grid;
    gap: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.chapter-list li {
    border-bottom: 1px solid var(--line);
}

.chapter-list button {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 11px 0 11px 9px;
    border: 0;
    border-left: 3px solid transparent;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.chapter-list button:hover,
.chapter-list li.is-active button {
    background: rgba(0, 140, 153, 0.07);
}

.chapter-list li.is-active button {
    border-left-color: var(--teal);
}

.chapter-list span {
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
}

.chapter-list strong {
    font-size: 15px;
    line-height: 1.35;
}

.split-player-panel.is-chapters-collapsed .chapter-list {
    display: none;
}

.split-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    align-items: start;
    gap: clamp(30px, 6vw, 82px);
}

.post-widget-stack {
    display: grid;
    gap: 18px;
    padding-top: 0;
}

.post-widget {
    display: grid;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.post-widget h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1;
    letter-spacing: 0;
}

.post-widget p,
.post-widget ol {
    margin: 0;
    color: rgba(17, 28, 36, 0.72);
    font-size: 16px;
    line-height: 1.55;
}

.post-widget ol {
    padding-left: 20px;
}

.post-media-stack {
    display: grid;
    justify-items: end;
    gap: 14px;
}

.post-cover,
.post-cover img,
.post-poster {
    display: block;
}

.post-cover {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
}

.post-cover img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.post-poster {
    width: min(44%, 150px);
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border: 1px solid var(--line);
}

.audio-player {
    width: min(100%, 680px);
    min-width: 0;
    padding-top: 0;
}

.audio-player audio,
.audio-player video {
    width: 100%;
}

.audio-player video {
    display: block;
    aspect-ratio: 16 / 9;
    background: #111c24;
}

.audio-player p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.audio-custom-controls {
    display: none;
}

.audio-player.is-enhanced audio {
    display: none;
}

.audio-player.is-enhanced .audio-custom-controls {
    display: grid;
    gap: 13px;
    min-width: 0;
}

.player-main-controls {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
    min-width: 0;
}

.player-btn,
.chapter-toggle {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.player-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
    font-size: 15px;
}

.player-play {
    min-height: 52px;
    border-color: rgba(0, 140, 153, 0.34);
    background: var(--text);
    color: #ffffff;
    font-size: 18px;
}

.player-btn:hover,
.chapter-toggle:hover,
.player-speed select:hover {
    border-color: rgba(0, 140, 153, 0.42);
}

.player-btn:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.player-progress {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 54px;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.player-progress span:last-child {
    text-align: right;
}

.player-seek {
    width: 100%;
    accent-color: var(--teal);
    cursor: pointer;
}

.player-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.player-speed {
    display: inline-flex;
    align-items: center;
    flex: 1 1 120px;
    gap: 8px;
    min-width: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-speed select,
.chapter-toggle {
    min-height: 34px;
}

.player-speed select {
    max-width: 100%;
    padding: 0 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
    font: inherit;
    letter-spacing: 0;
    text-transform: none;
}

.chapter-toggle {
    flex: 1 1 146px;
    padding: 0 10px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.post-body {
    display: grid;
    gap: 18px;
    padding-top: 0;
}

.post-body h2 {
    font-size: clamp(32px, 5vw, 58px);
}

.post-content,
.post-body > p {
    max-width: 740px;
    color: rgba(17, 28, 36, 0.76);
    font-size: 18px;
    line-height: 1.72;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote,
.post-content figure {
    margin: 0 0 1.3em;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin: 1.35em 0 0.55em;
    color: var(--text);
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0;
    line-height: 1.04;
}

.post-content h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.post-content h3 {
    font-size: clamp(24px, 3vw, 34px);
}

.post-content h4 {
    font-size: 22px;
}

.post-content a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.post-content ul,
.post-content ol {
    padding-left: 1.35em;
}

.post-content blockquote {
    padding-left: 18px;
    border-left: 3px solid rgba(0, 140, 153, 0.36);
    color: rgba(17, 28, 36, 0.68);
    font-style: italic;
}

.post-content img,
.post-content iframe {
    display: block;
    max-width: 100%;
    border: 1px solid var(--line);
}

.post-content img {
    height: auto;
}

.post-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 280px;
    background: var(--surface);
}

.post-content figcaption {
    margin-top: 8px;
    color: var(--muted);
    font: 13px/1.45 Arial, Helvetica, sans-serif;
}

.post-references {
    display: grid;
    gap: 12px;
    max-width: 740px;
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.post-references h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: 0;
}

.post-references ol {
    margin: 0;
    padding-left: 20px;
    color: rgba(17, 28, 36, 0.76);
    font-size: 17px;
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    .audio-row {
        transition: none;
    }

    .listen-wave-field svg,
    .wave-line {
        animation: none;
    }
}

@media (max-width: 1020px) {
    .listen-hero {
        min-height: 0;
    }

    .listen-hero-grid {
        grid-template-columns: 1fr;
    }

    .listen-now {
        width: min(100%, 560px);
        margin-top: 0;
    }

    .split-hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .split-title h1 {
        max-width: 100%;
        font-size: clamp(48px, 11vw, 86px);
    }

    .split-title {
        order: 3;
        padding-top: 0;
    }

    .post-kicker {
        order: 1;
    }

    .split-player-panel {
        order: 2;
        width: min(100%, 560px);
        margin-top: 0;
    }

}

@media (max-width: 780px) {
    .audio-page {
        width: min(100% - 28px, 1120px);
        padding-top: 22px;
    }

    .listen-page {
        width: min(1180px, 100%);
        padding: 14px clamp(10px, 4vw, 14px) 72px;
    }

    .listen-hero-grid {
        gap: 20px;
        padding-top: 4px;
    }

    .listen-wave-field {
        left: -36vw;
        right: -36vw;
        top: 52px;
        height: min(44vh, 320px);
        min-height: 220px;
        opacity: 0.64;
    }

    .listen-lockup {
        width: min(78vw, 340px);
    }

    .listen-hero h1 {
        font-size: clamp(44px, 15vw, 68px);
        border-top-width: 3px;
    }

    .listen-feature-deck {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 12px;
        margin-top: 18px;
    }

    .listen-feature-primary,
    .listen-feature-deck.is-single .listen-feature-primary {
        min-height: 220px;
        grid-row: auto;
    }

    .audio-post-page {
        width: min(1120px, 100%);
        padding: 22px clamp(10px, 4vw, 14px) 76px;
    }

    .audio-top {
        padding-bottom: 54px;
    }

    .audio-hero {
        min-height: auto;
    }

    .audio-hero-copy {
        padding-bottom: 46px;
    }

    .list-heading {
        align-items: start;
        flex-direction: column;
    }

    .audio-row {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
    }

    .audio-open {
        justify-self: start;
    }

    .post-shell {
        padding-top: 0;
    }

    .post-hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .split-hero,
    .split-content {
        grid-template-columns: 1fr;
    }

    .split-player-panel {
        margin-top: 0;
        padding: 14px;
    }

    .post-media-stack {
        justify-items: start;
        order: -1;
    }

    .post-widget-stack {
        padding-top: 0;
    }

    .post-poster {
        display: none;
    }

    .audio-footer {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 44px;
    }
}

@media (max-width: 560px) {
    .listen-now {
        padding: 14px;
    }

    .listen-feature-card {
        padding: 14px;
    }

    .player-main-controls {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
    }

    .player-btn {
        min-height: 42px;
        padding: 0 5px;
        font-size: 13px;
    }

    .player-play {
        min-height: 48px;
    }

    .player-progress {
        grid-template-columns: 40px minmax(0, 1fr) 48px;
        gap: 8px;
    }
}
