body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.section-sage {
    flex: 1;
    display: flex;
    align-items: center;
}

.section-sage .container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Deux colonnes : la présentation du podcast à gauche, son état à droite. */
.podcasts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Bloc d'attente, tant qu'aucun épisode n'est publié. Le liseré en pointillés
   dit visuellement « en préparation » là où une carte pleine laisserait croire
   à un contenu disponible. */
.podcast-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 2px dashed var(--sage-light);
    border-radius: var(--radius-lg);
    padding: 52px 36px;
    box-shadow: var(--shadow);
}

.podcast-soon-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-pale);
    border-radius: 50%;
    font-size: 34px;
    margin-bottom: 22px;
    animation: podcast-soon-breathe 3.2s ease-in-out infinite;
}

/* Respiration lente : un clin d'oeil au souffle, cohérent avec la sophrologie. */
@keyframes podcast-soon-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

.podcast-soon-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-xlight);
    margin-bottom: 8px;
}

.podcast-soon-title {
    font-family: 'Amatic SC', cursive;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--sage-dark);
    margin-bottom: 14px;
}

.podcast-soon-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 300px;
}

.podcast-soon-platforms {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--sand);
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-xlight);
}

@media (prefers-reduced-motion: reduce) {
    .podcast-soon-icon { animation: none; }
}

@media (max-width: 768px) {
    .podcasts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .podcast-soon {
        padding: 40px 26px;
    }
}
