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

/* ===== PODCAST HERO ===== */

.podcast-hero {
    background: linear-gradient(to right,
            lab(100% 0.01 -0.01) 0%,
            #c7c5c5 60%,
            #a8a8a8 100%);
    /* background:#b6b6b6; */
    margin: 0;
}

.podcast-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 0 !important;
}

.podcast-hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.podcast-hero-text p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 500px;
}

.podcast-hero-image img {
    width: 100%;
    max-width: 440px;
    display: block;
    margin-left: auto;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.15));
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .podcast-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        margin: 0 auto;
    }
}


/* ===== LAYOUT ===== */

.podcast-page {
    padding: 60px 0;
}

/* ===== FEATURED EPISODE ===== */

.featured-episode h2 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.featured-embed iframe {
    width: 100%;
    height: 220px;
    border-radius: 6px;
}

.featured-info h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.featured-info p {
    font-family: 'Work Sans', sans-serif;
    color: #444;
    line-height: 1.6;
}

.listen-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.listen-link:hover {
    text-decoration: underline;
}

/* ===== EPISODE ARCHIVE ===== */

.episode-archive {
    margin-top: 80px;
}

.episode-archive h2 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 25px;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.episode-card {
    display: block;
    padding: 20px;
    background: #fafafa;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.episode-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.episode-card span {
    font-size: 0.9rem;
    color: #666;
}

.episode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.coming-soon {
    text-align: center;
    padding: 40px 30px;
    margin-top: 20px;
    background: #f7f7f7;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

.coming-soon h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.coming-soon p {
    font-family: 'Work Sans', sans-serif;
    color: #555;
    max-width: 480px;
    margin: 0 auto;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-embed iframe {
        height: 260px;
    }
}