/* 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%;
    aspect-ratio: 1/1;
    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;
}

/* Carte Footer */
.deleage-footer-card { max-width: 100%; }
.deleage-footer-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
}
.deleage-footer-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.deleage-footer-card:hover img { transform: scale(1.08); }
.deleage-footer-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 20px 15px;
    color: #fff;
    line-height: 1.4;
}
.deleage-badge {
    font-size: 10px;
    text-transform: uppercase;
    background: #2271b1;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 8px;
}
.deleage-footer-overlay h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}