/* Fond neutre et sobre pour casser la suite d'images */
/* Style mis à jour pour s'intégrer harmonieusement sous les cartes */
.did-you-know-section {
    background-color: #f4f6f8; 
    padding: 50px 0; /* Un peu plus d'espace interne */
    margin-top: 20px; /* Marge supérieure pour laisser respirer l'ombre des cartes */
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* Structure asymétrique en 2 colonnes limitées à la grille */
.did-you-know-layout {
    display: grid;
    grid-template-columns: 1fr 2fr; /* La colonne droite est deux fois plus large */
    gap: 40px;
    align-items: center;
}

/* 1. COLONNE GAUCHE : IDENTIFICATION ACCROCHE */
.dyk-left-col {
    border-right: 2px solid #2D626A; /* Ligne de séparation verticale or */
    padding-right: 25px;
}

.dyk-badge-title {
    color: #db1f47; /* Rouge magenta distinct */
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.dyk-left-subtext {
    color: #4a5568;
    font-size: 13px;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* 2. COLONNE DROITE : JEU DE COULEURS ET TYPOGRAPHIES */
.dyk-right-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Titre en majuscules (Bleu officiel) */
.dyk-main-title {
    color: #0c4a60; /* Bleu officiel du Centre */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase; /* Sécurité majuscules force */
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0;
}

/* Sous-titre en minuscules et gras (Or / Ocre) */
.dyk-subtitle-bold {
    color: #D29500; /* Or institutionnel */
    font-size: 14px;
    font-weight: 700; /* En gras */
    text-transform: lowercase; /* Sécurité minuscules force */
    margin: 0;
}

/* Description (Gris sombre textuel) */
.dyk-body-text {
    color: #2d3748; /* Gris anthracite profond */
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 400;
    text-align: justify;
    margin: 4px 0 0 0;
}

/* RESPONSIVE ADAPTATION MOBILE */
@media (max-width: 768px) {
    .did-you-know-layout {
        grid-template-columns: 1fr; /* Empilement vertical sur smartphone */
        gap: 20px;
    }
    .dyk-left-col {
        border-right: none;
        border-bottom: 2px solid #D29500; /* La ligne devient horizontale */
        padding-right: 0;
        padding-bottom: 15px;
    }
    .dyk-badge-title {
        font-size: 20px;
    }
    .dyk-main-title {
        font-size: 16px;
    }
}
