/* =====================================================================
   Podcast page (Family Matters) — page-scoped styles
   Mirrors designs/assets/pages/podcast.html.
   ===================================================================== */

.podcast-page {
    --c-spotify: #1db954;
    --c-apple:   #1c1c1e;
    --c-gold:    #fbbf24;
}

/* -------- Buttons added for the podcast platform CTAs -------- */
.podcast-page .btn--white {
    background: #fff;
    color: var(--c-purple-deep);
}
.podcast-page .btn--white:hover {
    background: var(--c-purple-50);
    color: var(--c-purple-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.podcast-page .btn--apple {
    background: var(--c-apple);
    color: #fff;
}
.podcast-page .btn--apple:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.podcast-page .btn--spotify {
    background: var(--c-spotify);
    color: #fff;
}
.podcast-page .btn--spotify:hover {
    background: #169d47;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(29, 185, 84, 0.35);
}

.podcast-page .btn--youtube {
    background: #FF0000;
    color: #fff;
}
.podcast-page .btn--youtube:hover {
	background: #ca0303;
	   transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(29, 185, 84, 0.35);
}

/* ---------- Hero ---------- */
.podcast-page .podcast-hero {
    background: radial-gradient(ellipse at 60% 50%, #4a0090 0%, #2a0452 35%, var(--c-purple-deep) 70%);
    color: #fff;
    overflow: hidden;
    padding-block: 56px 72px;
    position: relative;
}

.podcast-page .podcast-hero::before,
.podcast-page .podcast-hero::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 9999px;
    pointer-events: none;
}

.podcast-page .podcast-hero::before {
    width: 500px;
    height: 500px;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.podcast-page .podcast-hero::after {
    width: 320px;
    height: 320px;
    right: -112px;
    top: 50%;
    transform: translateY(-50%);
}

.podcast-page .podcast-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.podcast-page .podcast-hero__copy {
    max-width: 640px;
}

.podcast-page .podcast-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.podcast-page .podcast-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

.podcast-page .podcast-hero__pill svg {
    width: 11px;
    height: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.podcast-page .podcast-hero__pill--gold {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.25);
    color: var(--c-gold);
    padding: 8px 14px;
}

.podcast-page .podcast-hero__pill--gold svg {
    width: 14px;
    height: 14px;
    color: var(--c-gold);
}

.podcast-page .podcast-hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.02;
    letter-spacing: -2.24px;
    color: #fff;
    margin: 24px 0 0;
}

.podcast-page .podcast-hero__tagline {
    margin: 12px 0 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17.6px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.18px;
}

.podcast-page .podcast-hero__lede {
    margin: 28px 0 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
}

.podcast-page .podcast-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.podcast-page .podcast-hero__cta .btn {
    padding: 14px 24px;
    font-size: 14.4px;
    font-family: var(--font-display);
}

.podcast-page .podcast-hero__media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.podcast-page .podcast-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.podcast-page .podcast-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(25, 0, 63, 0.45));
}

.podcast-page .podcast-hero__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: #fff;
    transition: transform var(--t-base) var(--ease-out);
}

.podcast-page .podcast-hero__play span {
    width: 76px;
    height: 76px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--c-purple-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    transition: transform var(--t-fast) var(--ease-out),
                background var(--t-fast) var(--ease-out);
}

.podcast-page .podcast-hero__play span svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.podcast-page .podcast-hero__play:hover span {
    transform: scale(1.06);
    background: #fff;
}

@media (min-width: 1024px) {
    .podcast-page .podcast-hero {
        padding-block: 96px 112px;
    }

    .podcast-page .podcast-hero__inner {
        grid-template-columns: 1.05fr 1fr;
        gap: 64px;
    }
}

/* ---------- Quote section ---------- */
.podcast-page .podcast-quote {
    background: var(--c-purple-50);
    padding-block: 80px;
    text-align: center;
}

.podcast-page .podcast-quote__inner {
    max-width: 760px;
    margin-inline: auto;
}

.podcast-page .podcast-quote__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 2.4vw, 25.6px);
    line-height: 1.3;
    letter-spacing: -0.64px;
    color: var(--c-purple-deep);
    margin: 0;
}

.podcast-page .podcast-quote__author {
    margin: 24px 0 0;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--c-text-strong);
}

@media (max-width: 767px) {
    .podcast-page .podcast-quote {
        padding-block: 64px;
    }
}

/* ---------- Section base ---------- */
.podcast-page .podcast-section {
    padding-block: 80px;
    background: #fff;
}

.podcast-page .podcast-section--soft {
    background: var(--c-purple-50);
}

.podcast-page .podcast-section__head {
    margin-bottom: 32px;
}

.podcast-page .podcast-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.6vw, 38.4px);
    line-height: 1.1;
    letter-spacing: -1.15px;
    color: var(--c-purple-deep);
    margin: 24px 0 0;
}

.podcast-page .podcast-lede {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-label, #3b3a3f);
    max-width: 600px;
}

@media (min-width: 1024px) {
    .podcast-page .podcast-section {
        padding-block: 96px;
    }
}

/* ---------- About section ---------- */
.podcast-page .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.podcast-page .recognition-card {
    margin-top: 32px;
    background: var(--c-purple-50);
    border: 1px solid rgba(107, 33, 168, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.podcast-page .recognition-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-purple-700);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin: 0;
}

.podcast-page .recognition-card__head svg {
    width: 13px;
    height: 13px;
}

.podcast-page .recognition-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.podcast-page .recognition-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(107, 33, 168, 0.1);
    color: var(--c-label, #3b3a3f);
    font-size: 12.8px;
    line-height: 1.45;
    transition: color var(--t-fast) var(--ease-out);
    text-decoration: none;
}

.podcast-page .recognition-list li:first-child .recognition-item {
    border-top: 0;
    padding-top: 0;
}

.podcast-page .recognition-item__label {
    font-weight: 700;
    color: var(--c-purple-700);
    margin-right: 8px;
}

.podcast-page .recognition-item__body {
    flex: 1;
    min-width: 0;
}

.podcast-page .recognition-item__icon {
    flex: none;
    width: 14px;
    height: 14px;
    color: var(--c-text-subtle);
    margin-top: 2px;
    transition: transform var(--t-fast) var(--ease-out),
                color var(--t-fast) var(--ease-out);
}

.podcast-page a.recognition-item:hover {
    color: var(--c-purple-700);
}

.podcast-page a.recognition-item:hover .recognition-item__icon {
    color: var(--c-purple-700);
    transform: translate(2px, -2px);
}

/* ---------- Episode preview ---------- */
.podcast-page .episodes-preview {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.podcast-page .episodes-preview__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.podcast-page .episodes-preview__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.4px;
    color: var(--c-purple-deep);
    letter-spacing: -0.144px;
    margin: 0;
}

.podcast-page .episodes-preview__count {
    font-size: 12px;
    color: var(--c-text-subtle);
}

.podcast-page .episodes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.podcast-page .episode-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 10px;
    background: var(--c-purple-50);
    border: 1px solid transparent;
    transition: background var(--t-fast) var(--ease-out),
                border-color var(--t-fast) var(--ease-out),
                transform var(--t-fast) var(--ease-out);
    text-decoration: none;
}

.podcast-page .episode-row:hover {
    background: #fff;
    border-color: var(--c-purple-600);
    transform: translateY(-1px);
}

.podcast-page .episode-row__avatar {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--c-purple-600), var(--c-purple-700));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.podcast-page .episode-row__avatar svg {
    width: 18px;
    height: 18px;
}

.podcast-page .episode-row__body {
    flex: 1;
    min-width: 0;
}

.podcast-page .episode-row__title {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13.6px;
    line-height: 1.35;
    color: var(--c-purple-deep);
    letter-spacing: -0.14px;
}

.podcast-page .episode-row__meta {
    margin-top: 4px;
    font-size: 12px;
    color: var(--c-text-subtle);
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
}

.podcast-page .episode-row__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.podcast-page .episode-row__play {
    flex: none;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: var(--c-purple-700);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast) var(--ease-out),
                transform var(--t-fast) var(--ease-out);
}

.podcast-page .episode-row__play svg {
    width: 13px;
    height: 13px;
    margin-left: 2px;
}

.podcast-page .episode-row:hover .episode-row__play {
    background: var(--c-purple-500);
    transform: scale(1.06);
}

@media (min-width: 1024px) {
    .podcast-page .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

/* ---------- Listen now (dark gradient card) ---------- */
.podcast-page .listen-now {
    margin-top: 56px;
    background: radial-gradient(ellipse at 30% 50%, #3b0764 0%, #2a0452 35%, var(--c-purple-deep) 70%);
    color: #fff;
    border-radius: 25px;
    padding: 48px 24px;
    text-align: center;
}

.podcast-page .listen-now__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
}

.podcast-page .listen-now__icon svg {
    width: 26px;
    height: 26px;
}

.podcast-page .listen-now__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 38.4px);
    line-height: 1.05;
    letter-spacing: -1.15px;
    color: #fff;
    margin: 0;
}

.podcast-page .listen-now__copy {
    margin: 14px auto 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 440px;
}

.podcast-page .listen-now__cta {
    margin: 28px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.podcast-page .listen-now__cta .btn {
    width: 100%;
    justify-content: space-between;
    padding: 14px 18px;
    font-family: var(--font-display);
}

.podcast-page .listen-now__cta .btn span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.podcast-page .listen-now__cta .btn svg.icon-platform {
    width: 18px;
    height: 18px;
    flex: none;
    transition: none;
}

@media (min-width: 768px) {
    .podcast-page .listen-now {
        padding: 72px 48px;
    }

    .podcast-page .listen-now__cta {
        flex-direction: row;
        max-width: 480px;
    }

    .podcast-page .listen-now__cta .btn {
        flex: 1;
    }
}

/* ---------- Audience grid (Who this show is for) ---------- */
.podcast-page .audience-grid {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.podcast-page .audience-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 1.5px rgba(30, 11, 75, 0.04);
    transition: transform var(--t-base) var(--ease-out),
                box-shadow var(--t-base) var(--ease-out),
                border-color var(--t-base) var(--ease-out);
}

.podcast-page .audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-purple-600);
}

.podcast-page .audience-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--c-purple-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-purple-700);
}

.podcast-page .audience-card__icon svg {
    width: 20px;
    height: 20px;
}

.podcast-page .audience-card__title {
    margin: 28px 0 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15.2px;
    line-height: 1.3;
    letter-spacing: -0.23px;
    color: var(--c-purple-deep);
}

.podcast-page .audience-card__copy {
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-label, #3b3a3f);
}

@media (min-width: 600px) {
    .podcast-page .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .podcast-page .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ---------- Producers section (dark) ---------- */
.podcast-page .producers {
    background: radial-gradient(ellipse at 30% 60%, #3b0764 0%, #2a0452 35%, var(--c-purple-deep) 75%);
    color: #fff;
    padding-block: 96px;
}

.podcast-page .producers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.podcast-page .producers__copy {
    max-width: 540px;
}

.podcast-page .producers__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.6vw, 38.4px);
    line-height: 1.1;
    letter-spacing: -1.15px;
    color: #fff;
    margin: 24px 0 0;
}

.podcast-page .producers__lede {
    margin: 28px 0 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.podcast-page .producers__cta {
    margin-top: 32px;
}

.podcast-page .producer-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.podcast-page .producer-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: background var(--t-fast) var(--ease-out),
                border-color var(--t-fast) var(--ease-out),
                transform var(--t-fast) var(--ease-out);
}

.podcast-page .producer-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.podcast-page .producer-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.4px;
    line-height: 1.5;
    letter-spacing: -0.144px;
    color: #fff;
    margin: 0;
}

.podcast-page .producer-card__copy {
    margin: 14px 0 0;
    font-size: 13.3px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 600px) {
    .podcast-page .producer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .podcast-page .producers__grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 64px;
    }
}

@media (max-width: 767px) {
    .podcast-page .producers {
        padding-block: 64px;
    }
}

/* ---------- Flat dark CTA ---------- */
.podcast-page .cta-flat {
    background: var(--c-purple-deep);
    color: #fff;
    padding-block: 72px;
    text-align: center;
}

.podcast-page .cta-flat__inner {
    max-width: 720px;
    margin-inline: auto;
}

.podcast-page .cta-flat__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.1;
    letter-spacing: -1.08px;
    color: #fff;
    margin: 16px 0 0;
}

.podcast-page .cta-flat__copy {
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.555;
    color: rgba(255, 255, 255, 0.7);
}

.podcast-page .cta-flat__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
