/* ============================================================
   SECTION DESKTOP (TON CODE D'ORIGINE 
   ============================================================ */

/* Grille de réalisations */
.deleage-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.deleage-grid-item {
    flex: 1;
    min-width: 200px;
}
.deleage-grid-item a { text-decoration: none; color: inherit; }
.deleage-grid-img {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.deleage-grid-item:hover .deleage-grid-img { transform: scale(1.03); }
.deleage-grid-item h4 {
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.4;
    font-weight: 600;
}

/* DA STRATALL - Montserrat + Habillage Image 50x50 */
.stratall-footer-card {
    font-family: 'Montserrat', sans-serif;
    max-width: 100%;
}
.s-card-intro {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 12px;
}
.s-card-link {
    display: block;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}
.s-card-link:hover {
    background: rgba(255,255,255,0.08);
}
.s-card-img-container {
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin-right: 15px;
    margin-bottom: 5px;
    overflow: hidden;
    background: #000;
}
.s-card-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.s-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}
.s-card-meta {
    clear: both;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
    margin-top: 10px;
}
.s-card-date { font-size: 11px; color: #888; }
.s-card-cta { font-size: 11px; color: #d1df01; font-weight: 600; text-transform: uppercase; }

/* ============================================================
   SECTION MOBILE (FORMAT 16:9 - BREAKPOINT 768PX)
   ============================================================ */

@media (max-width: 768px) {
    .s-card-img-container {
        float: none;           /* On annule le flottant */
        width: 100%;           /* Largeur pleine balle */
        height: auto;
        aspect-ratio: 16 / 9;  /* Format Cinéma comme sur le screen */
        margin-right: 0;
        margin-bottom: 15px;   /* Espace sous l'image */
        border-radius: 8px;
    }

    .s-card-title {
        font-size: 16px;       /* Un peu plus gros pour le mobile */
        display: block;
        clear: both;
    }
}