/* ===== ARRIVAGE WRAPPER ===== */
.arrivage {
    margin: 40px 0;
}

.arrivage-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.arrivage-column {
    flex: 1;
    min-width: 280px;
}

/* ===== IMAGE WRAPPER ===== */
.arrivage-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    overflow: hidden; /* nécessaire pour le zoom propre */
}

.arrivage-image-wrapper img {
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.3s ease; /* effet zoom */
}

/* Effet zoom au survol */
.arrivage-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ===== TITRE + DATE (au-dessus de l’image) ===== */
.arrivage-titre-overlay {
    font-size: 14px; /* réduit pour ne pas agrandir le bloc */
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 2px;
}

.arrivage-date-overlay {
    font-size: 12px; /* réduit */
    opacity: 0.8;
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

/* ===== COUNTDOWN ===== */
#countdown {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #444;
}
