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

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

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

.eq-cta {
    display: inline-block;
    padding: 14px 45px;
    border: 1.5px solid var(--noir);
    color: var(--vert-fonce);
    font-family: 'Mukta Mahee', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.eq-cta:hover {
    background-color: var(--vert-fonce);
    color: var(--blanc);
    border-color: var(--vert-fonce);
}

/* ===== GRILLE CARTES ===== */
.eq-cards {
    max-width: 60%;
    margin: 0 auto;
    padding: 0 0 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.eq-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.eq-card-img {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Carré 1:1 */
    overflow: hidden;
    border-radius: 4px;
}

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

.eq-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(70, 112, 66, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

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

.eq-card-label {
    font-family: 'Mukta Mahee', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    text-align: center;
    margin-top: 12px;
    color: var(--noir);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .eq-cards {
        max-width: 80%;
        gap: 20px;
    }

    .eq-intro h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .eq-cards {
        max-width: 80%;
        grid-template-columns: 1fr;
        gap: 25px;
    }

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