/* ==========================================================================
   PODCAST LANDING PAGE
========================================================================== */

/* Hero Section */
.mg-podcast-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface-alt) 100%);
    border-bottom: 1px solid var(--color-border);
}

.mg-podcast-intro {
    max-width: 760px;
}

.mg-podcast-intro .mg-kicker {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.mg-podcast-intro h1 {
    font-size: var(--fs-4xl);
    color: var(--color-heading);
    margin: 0 0 1.5rem 0;
    line-height: var(--lh-heading);
}

.mg-podcast-intro .mg-lead {
    font-size: var(--fs-lg);
    color: var(--color-text);
    margin: 0;
    line-height: var(--lh-body);
}

/* Category Cards Section */
.mg-podcast-categories {
    padding: 6rem 0;
}

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

.mg-category-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.mg-category-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.mg-category-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.mg-category-card h2 {
    font-size: var(--fs-xl);
    color: var(--color-heading);
    margin: 0 0 0.75rem 0;
    text-align: center;
}

.mg-category-card > p {
    font-size: var(--fs-md);
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1.5rem;
    flex: 1;
}

.mg-category-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.mg-category-topics li {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--color-surface-alt);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 999px;
}

.mg-category-card .mg-button {
    align-self: center;
}

/* Latest Episodes Section */
.mg-latest-podcasts {
    padding: 6rem 0;
    background: var(--color-background);
}

.mg-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mg-section-header h2 {
    font-size: var(--fs-2xl);
    color: var(--color-heading);
    margin: 0 0 0.75rem 0;
}

.mg-section-header p {
    font-size: var(--fs-md);
    color: var(--color-muted);
    margin: 0;
}

.mg-section-footer {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Newsletter Section */
.mg-newsletter {
    padding: 6rem 0;
    background: var(--color-primary);
}

.mg-newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.mg-newsletter-box h2 {
    font-size: var(--fs-2xl);
    color: white;
    margin: 0 0 1rem 0;
}

.mg-newsletter-box p {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.mg-button-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.mg-newsletter .mg-button-primary {
    background: white;
    color: var(--color-primary);
}

.mg-newsletter .mg-button-primary:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* ==========================================================================
   PODCAST ARCHIVE PAGE
========================================================================== */

.mg-podcast-header {
    max-width: 760px;
    margin-bottom: 5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.mg-podcast-header .mg-kicker {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.mg-podcast-header h1 {
    font-size: var(--fs-3xl);
    color: var(--color-heading);
    margin: 0 0 1.5rem 0;
}

.mg-podcast-header .mg-lead {
    font-size: var(--fs-lg);
    color: var(--color-text);
    margin: 0;
}

/* Featured Podcast */
.mg-featured-podcast {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--color-border);
}

.mg-featured-podcast-content h2 {
    font-size: var(--fs-2xl);
    margin: 0 0 1.5rem 0;
    line-height: var(--lh-heading);
}

.mg-featured-podcast-content h2 a {
    color: var(--color-heading);
    text-decoration: none;
    transition: color var(--transition);
}

.mg-featured-podcast-content h2 a:hover {
    color: var(--color-primary);
}

.mg-podcast-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0 0 1.5rem 0;
}

.mg-podcast-excerpt {
    font-size: var(--fs-md);
    color: var(--color-text);
    line-height: var(--lh-body);
    margin-bottom: 2rem;
}

.mg-featured-podcast-player {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mg-featured-podcast-player iframe {
    width: 100% !important;
    border-radius: 12px;
}

/* Podcast Grid */
.mg-podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

/* Podcast Card */
.mg-podcast-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mg-podcast-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.mg-podcast-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mg-podcast-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.mg-podcast-card-title {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: var(--lh-heading);
}

.mg-podcast-card-title a {
    color: var(--color-heading);
    text-decoration: none;
    transition: color var(--transition);
}

.mg-podcast-card-title a:hover {
    color: var(--color-primary);
}

.mg-podcast-card-meta {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.mg-podcast-card-excerpt {
    font-size: var(--fs-sm);
    color: var(--color-text);
    line-height: var(--lh-body);
    margin-bottom: auto;
    padding-bottom: 1.5rem;
}

/* Button Variants */
.mg-button-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .mg-featured-podcast {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mg-podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .mg-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .mg-podcast-hero {
        padding: 4rem 0 3rem;
    }

    .mg-podcast-intro h1 {
        font-size: var(--fs-2xl);
    }

    .mg-category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mg-category-card {
        padding: 1.5rem;
    }

    .mg-podcast-header h1 {
        font-size: var(--fs-2xl);
    }

    .mg-featured-podcast {
        margin-bottom: 4rem;
        padding-bottom: 4rem;
        grid-template-columns: 1fr;
    }

    .mg-featured-podcast-content h2 {
        font-size: var(--fs-xl);
    }

    .mg-podcast-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mg-podcast-card {
        padding: 1.5rem;
    }

    .mg-latest-podcasts {
        padding: 4rem 0;
    }

    .mg-newsletter {
        padding: 4rem 0;
    }

    .mg-newsletter-box h2 {
        font-size: var(--fs-xl);
    }

    .mg-newsletter-box p {
        font-size: var(--fs-md);
    }
}
