.podcast-page {
    --podcast-navy: #03111f;
    --podcast-navy-2: #071c2d;
    --podcast-green: #64c33b;
    --podcast-green-dark: #2f7e29;
    --podcast-silver: #dce4e8;
    --podcast-cream: #f4f2ea;
    --podcast-text: #eaf0f4;
    --podcast-muted: #b7c3cc;
    background: var(--podcast-navy);
    color: var(--podcast-text);
}

.podcast-page * {
    box-sizing: border-box;
}

.podcast-container {
    width: min(1160px, calc(100% - 2rem));
    margin-inline: auto;
}

.podcast-container.narrow {
    max-width: 820px;
}

.podcast-banner {
    background: #000;
}

.podcast-banner img {
    width: 100%;
    display: block;
    max-height: 280px;
    object-fit: cover;
    object-position: center;
}

.podcast-hero {
    padding: 4.5rem 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(100,195,59,.16), transparent 32%),
        radial-gradient(circle at 8% 80%, rgba(31,93,70,.28), transparent 30%),
        linear-gradient(135deg, #020b14, #071929 58%, #020b14);
}

.podcast-hero-grid {
    display: grid;
    grid-template-columns: minmax(300px, 470px) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

.podcast-cover-wrap {
    position: relative;
}

.podcast-cover-wrap::before {
    content: "";
    position: absolute;
    inset: 7% -7% -7% 7%;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(100,195,59,.35), rgba(255,255,255,.08));
    filter: blur(1px);
}

.podcast-cover {
    position: relative;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(0,0,0,.52);
}

.podcast-kicker {
    margin: 0 0 .65rem;
    color: #8edd68;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    font-size: .84rem;
}

.podcast-intro h1,
.podcast-page h2,
.podcast-page h3 {
    font-family: Georgia, "Times New Roman", serif;
}

.podcast-intro h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: .95;
    letter-spacing: -.03em;
}

.podcast-tagline {
    margin: 1rem 0 1.25rem;
    color: var(--podcast-silver);
    font-size: clamp(1.15rem, 2.1vw, 1.55rem);
    letter-spacing: .05em;
}

.podcast-summary {
    max-width: 700px;
    color: var(--podcast-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.podcast-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
    margin-top: 1.8rem;
}

.platform-button {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1rem;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 11px 25px rgba(0,0,0,.24);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.platform-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 32px rgba(0,0,0,.33);
    filter: brightness(1.06);
}

.platform-button small,
.platform-button strong {
    display: block;
}

.platform-button small {
    opacity: .88;
    font-size: .73rem;
    margin-bottom: .1rem;
}

.platform-button strong {
    font-size: 1rem;
}

.platform-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.16);
    font-size: 1.3rem;
}

.spotify {
    background: linear-gradient(135deg, #1db954, #12823d);
}

.apple {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.youtube {
    background: linear-gradient(135deg, #ff3131, #b00000);
}

.agape {
    background: linear-gradient(135deg, #376f3a, #173e2d);
}

.podcast-section {
    padding: 5rem 0;
}

.podcast-about {
    background: var(--podcast-cream);
    color: #172332;
    text-align: center;
}

.podcast-about h2,
.podcast-topics h2,
.podcast-cta h2 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.1;
}

.podcast-about p:not(.podcast-kicker) {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #4a5562;
}

.podcast-topics {
    background:
        radial-gradient(circle at 85% 10%, rgba(100,195,59,.12), transparent 28%),
        var(--podcast-navy-2);
}

.podcast-section-heading {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 2.5rem;
}

.podcast-section-heading h2 {
    color: #fff;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.topic-card {
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
}

.topic-card h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0 0 .65rem;
}

.topic-card p {
    color: var(--podcast-muted);
    line-height: 1.65;
    margin: 0;
}

.podcast-cta {
    background: linear-gradient(135deg, #eef1e9, #dce7d7);
    color: #172332;
}

.cta-panel {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 2rem;
    align-items: center;
    padding: 2.3rem;
    border-radius: 22px;
    background: white;
    box-shadow: 0 20px 55px rgba(8,23,38,.15);
}

.cta-panel p {
    color: #576270;
}

.mini-links {
    display: grid;
    gap: .65rem;
}

.mini-links a {
    display: block;
    padding: .82rem 1rem;
    border-radius: 999px;
    background: #071929;
    color: white;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
}

.mini-links a:hover {
    background: var(--podcast-green-dark);
}

.podcast-crosslinks {
    background: #020b14;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.crosslink-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.crosslink-card {
    padding: 1.4rem;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.08);
}

.crosslink-card:hover {
    border-color: rgba(100,195,59,.65);
    background: rgba(100,195,59,.1);
}

.crosslink-card span,
.crosslink-card strong {
    display: block;
}

.crosslink-card span {
    color: #8edd68;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .12em;
    margin-bottom: .25rem;
}

.crosslink-card strong {
    font-size: 1.1rem;
}

@media (max-width: 950px) {
    .podcast-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.6rem;
    }

    .podcast-cover-wrap {
        max-width: 560px;
        margin-inline: auto;
    }

    .podcast-intro {
        text-align: center;
    }

    .podcast-summary {
        margin-inline: auto;
    }

    .topic-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .podcast-banner img {
        min-height: 120px;
        object-fit: cover;
    }

    .podcast-hero,
    .podcast-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .podcast-actions {
        grid-template-columns: 1fr;
    }

    .topic-grid,
    .cta-panel,
    .crosslink-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        padding: 1.5rem;
    }
}
