/* ===== SECTION ACCROCHE ===== */
.reportages-intro {
    text-align: center;
    padding: 50px 20px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.reportages-intro h1 {
    font-family: 'Optima', 'Mukta Mahee', sans-serif;
    color: var(--vert-fonce);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.reportages-intro p {
    font-family: 'Mukta Mahee', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--vert-fonce);
    line-height: 1.6;
}

/* ===== GRILLE REPORTAGES ===== */
.reportages-grid {
    max-width: 75%;
    margin: 0 auto;
    padding: 0 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Carte reportage */
.reportage-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.reportage-img {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Carre 1:1 */
    overflow: hidden;
    border-radius: 4px;
}

.reportage-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Overlay au survol */
.reportage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(70, 112, 66, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.reportage-overlay i {
    color: var(--blanc);
    font-size: 2.5rem;
}

.reportage-card:hover .reportage-overlay {
    opacity: 1;
}

.reportage-card:hover .reportage-img img {
    transform: scale(1.05);
}

/* Nom du reportage */
.reportage-name {
    font-family: 'Mukta Mahee', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    text-align: center;
    margin-top: 12px;
    color: var(--noir);
}

/* ===== RESPONSIVE ===== */

/* 2 colonnes */
@media (max-width: 768px) {
    .reportages-grid {
        max-width: 90%;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reportages-intro h1 {
        font-size: 1.3rem;
    }

    .reportages-intro {
        padding: 35px 20px 25px;
    }
}

/* 1 colonne */
@media (max-width: 480px) {
    .reportages-grid {
        max-width: 80%;
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
