/* ============================================================
   PAGE PODCAST — Styles
   ============================================================ */

.podcast-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    font-family: 'Raleway', sans-serif;
}

/* ---- HERO (épisode en vedette) ---- */

.podcast-hero {
    background: #1a1a2e;
    padding: 50px 40px;
    margin-bottom: 60px;
    color: #fff;
}

.podcast-hero-inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.podcast-hero-image {
    position: relative;
    flex-shrink: 0;
    width: 320px;
}

.podcast-hero-image img {
    width: 100%;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.podcast-hero-content {
    flex: 1;
}

.podcast-badge {
    display: inline-block;
    background: #00798C;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.podcast-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}

.podcast-hero-meta {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 18px;
}

.podcast-duree {
    margin-left: 8px;
}

.podcast-hero-excerpt {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 28px;
}

.podcast-hero-excerpt p {
    margin: 0;
}

.podcast-btn-ecouter {
    display: inline-block;
    background: #00798C;
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.podcast-btn-ecouter:hover {
    background: #005f6e;
    transform: translateY(-2px);
    color: #fff;
}

/* ---- ARCHIVES (grille de cartes) ---- */

.podcast-archives-titre {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #00798C;
    display: inline-block;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.podcast-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 121, 140, 0.18);
}

.podcast-card-image {
    position: relative;
    overflow: hidden;
}

.podcast-card-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.podcast-card:hover .podcast-card-image img {
    transform: scale(1.04);
}

.podcast-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.podcast-badge-small {
    display: inline-block;
    background: #e0f4f6;
    color: #00798C;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.podcast-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.4;
}

.podcast-card-meta {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 14px;
}

.podcast-card-lien {
    margin-top: auto;
    display: inline-block;
    color: #00798C;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.podcast-card-lien:hover {
    color: #005f6e;
}

/* ---- Aucun épisode ---- */

.podcast-vide {
    text-align: center;
    color: #888;
    padding: 60px 0;
    font-size: 1.1rem;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 900px) {
    .podcast-hero-inner {
        flex-direction: column;
    }

    .podcast-hero-image {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

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

@media (max-width: 580px) {
    .podcast-hero {
        padding: 30px 20px;
    }

    .podcast-hero-title {
        font-size: 1.5rem;
    }

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