/* 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;
    /* Indispensable pour englober l'image qui flotte */
    overflow: hidden; 
}

.s-card-link:hover {
    background: rgba(255,255,255,0.08);
}

/* L'IMAGE : 50x50 calée à gauche */
.s-card-img-container {
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin-right: 15px; /* Espace entre l'image et le début du texte */
    margin-bottom: 5px;
    overflow: hidden;
    background: #000;
}

.s-card-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LE TEXTE : Occupe tout l'espace disponible à droite */
.s-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* LA BARRE DU BAS : Se place sous l'ensemble image + texte */
.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;
}