/* Landing Page — carousel-first layout */

/* ── Podcast Grid Section ── */
.landing-podcasts {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-8) var(--space-16);
}

.landing-podcasts__headline {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--navy);
    margin-bottom: var(--space-6);
    text-align: center;
}

.landing-podcasts .creators-row {
    padding: 0;
    margin-bottom: var(--space-6);
}

.landing-podcasts .feed-grid {
    padding: 0;
}

@media (max-width: 768px) {
    .landing-podcasts {
        padding: var(--space-6) var(--space-4) var(--space-12);
    }
}

/* ── Bottom CTA ── */
.landing-bottom-cta {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-12) var(--space-8) var(--space-20);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
}

.landing-bottom-cta__headline {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--navy);
    letter-spacing: -0.02em;
}

.landing-bottom-cta__sub {
    font-size: var(--text-lg);
    color: var(--slate);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .landing-bottom-cta {
        padding: var(--space-8) var(--space-4) var(--space-16);
    }
    .landing-bottom-cta__headline {
        font-size: var(--text-2xl);
    }
}