/*
Theme Name: GYE ONGD
Theme URI: https://ongd-gye.org/
Description: Thème enfant personnalisé de GYE ONGD basé sur GeneratePress
Author: GYE ONGD
Template: generatepress
Version: 1.0.0
*/

/* =========================================================
   1. VARIABLES - IDENTITÉ VISUELLE GYE
========================================================= */

:root {
    --gye-vert: #63b72b;
    --gye-vert-fonce: #2f6f25;
    --gye-vert-tres-fonce: #174d25;

    --gye-jaune: #e4c84a;
    --gye-jaune-clair: #f4e8a5;

    --gye-brun: #77661c;

    --gye-blanc: #ffffff;
    --gye-creme: #f7f5e8;
    --gye-gris: #6b7280;
    --gye-noir: #172019;

    --gye-container: 1200px;

    --gye-radius: 10px;

    --gye-shadow:
        0 15px 40px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   2. RESET ET BASE
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--gye-noir);
    background: var(--gye-blanc);

    line-height: 1.6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button,
a {
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   3. CONTENEURS
========================================================= */

.gye-header-container,
.gye-section-container,
.gye-footer-container {

    width: min(
        calc(100% - 40px),
        var(--gye-container)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   4. HEADER
========================================================= */

.gye-header {

    position: relative;
    z-index: 1000;

    width: 100%;

    background: var(--gye-blanc);

    border-bottom: 3px solid var(--gye-jaune);

    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.06);
}

.gye-header-container {

    min-height: 92px;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* LOGO */

.gye-logo {

    flex-shrink: 0;
}

.gye-logo a {

    display: flex;
    align-items: center;
}

.gye-logo img {

    display: block;

    width: 92px;
    height: 92px;

    object-fit: contain;
}


/* NAVIGATION */

.gye-navigation {

    flex: 1;

    display: flex;
    justify-content: center;
}

.gye-navigation ul {

    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    align-items: center;

    gap: 25px;
}

.gye-navigation li {

    margin: 0;
    padding: 0;
}

.gye-navigation a {

    position: relative;

    display: inline-block;

    padding: 8px 0;

    color: var(--gye-noir);

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.2px;
}

.gye-navigation a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--gye-vert);

    transition: width 0.25s ease;
}

.gye-navigation a:hover::after,
.gye-navigation .current-menu-item > a::after {

    width: 100%;
}

.gye-navigation a:hover,
.gye-navigation .current-menu-item > a {

    color: var(--gye-vert-fonce);
}


/* LANGUES */

.gye-language-switcher {

    display: flex;
    align-items: center;

    gap: 8px;

    white-space: nowrap;
}

.gye-language {

    color: var(--gye-gris);

    font-size: 13px;
    font-weight: 800;
}

.gye-language:hover,
.gye-language.active {

    color: var(--gye-vert-fonce);
}

.gye-language-separator {

    color: #c7c7c7;
}


/* BOUTON SOUTIEN */

.gye-support {

    flex-shrink: 0;
}

.gye-support-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 20px;

    border-radius: 5px;

    background: var(--gye-vert);

    color: var(--gye-blanc) !important;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.3px;
}

.gye-support-button:hover {

    background: var(--gye-vert-fonce);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(47, 111, 37, 0.25);
}


/* =========================================================
   5. HERO
========================================================= */

/* =========================================================
   5. HERO - DIAPORAMA
========================================================= */

.gye-hero {

    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #163d22;
}


/* =========================================
   CONTENEUR DU DIAPORAMA
========================================= */

.gye-hero-slider {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
}


/* =========================================
   CHAQUE IMAGE
========================================= */

.gye-hero-slide {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;
}


/* SLIDE ACTIVE */

.gye-hero-slide.active {

    opacity: 1;

    visibility: visible;

}


/* IMAGE */

.gye-hero-slide img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
}


/* =========================================
   VOILE SUR LES IMAGES
========================================= */

.gye-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 35, 20, 0.88) 0%,
            rgba(0, 35, 20, 0.72) 35%,
            rgba(0, 35, 20, 0.35) 65%,
            rgba(0, 0, 0, 0.10) 100%
        );
}


/* =========================================
   CONTENU
========================================= */

.gye-hero-container {

    position: relative;

    z-index: 3;

    width: min(
        calc(100% - 40px),
        var(--gye-container)
    );

    margin: 0 auto;
}

.gye-hero-content {

    width: min(100%, 690px);

    padding: 80px 0;
}


/* =========================================
   PETIT TITRE
========================================= */

.gye-hero-eyebrow {

    display: inline-block;

    margin: 0 0 20px;

    padding: 7px 14px;

    border-left: 4px solid var(--gye-jaune);

    background: rgba(255, 255, 255, 0.10);

    color: var(--gye-jaune-clair);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================
   GRAND TITRE
========================================= */

.gye-hero h1 {

    margin: 0 0 25px;

    color: var(--gye-blanc);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.gye-hero h1 span {

    display: block;

    color: var(--gye-jaune);
}


/* =========================================
   DESCRIPTION
========================================= */

.gye-hero-description {

    max-width: 650px;

    margin: 0 0 32px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================
   BOUTONS
========================================= */

.gye-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}

.gye-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.3px;
}

.gye-button-primary {

    background: var(--gye-vert);

    color: var(--gye-blanc);
}

.gye-button-primary:hover {

    background: var(--gye-jaune);

    color: var(--gye-noir);

    transform: translateY(-2px);
}

.gye-button-secondary {

    border: 2px solid rgba(255, 255, 255, 0.8);

    color: var(--gye-blanc);

    background: transparent;
}

.gye-button-secondary:hover {

    background: var(--gye-blanc);

    border-color: var(--gye-blanc);

    color: var(--gye-vert-fonce);
}


/* =========================================
   INDICATEURS DU DIAPORAMA
========================================= */

.gye-slider-dots {

    position: absolute;

    z-index: 5;

    left: 50%;

    bottom: 35px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 9px;
}

.gye-slider-dot {

    width: 11px;
    height: 11px;

    padding: 0;

    border: 2px solid rgba(255, 255, 255, 0.85);

    border-radius: 50%;

    background: transparent;

    cursor: pointer;
}

.gye-slider-dot.active {

    width: 30px;

    border-radius: 10px;

    border-color: var(--gye-jaune);

    background: var(--gye-jaune);
}


/* =========================================
   INDICATEUR DE DÉFILEMENT
========================================= */

.gye-hero-scroll {

    position: absolute;

    z-index: 4;

    right: 35px;

    bottom: 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.gye-scroll-arrow {

    font-size: 22px;

    line-height: 1;

    color: var(--gye-jaune);
}

/* =========================================================
   6. SECTION INTRODUCTION
========================================================= */

.gye-intro {

    padding: 95px 0;

    background: var(--gye-blanc);
}

.gye-intro .gye-section-container {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: center;
}

.gye-section-label {

    margin: 0 0 12px;

    color: var(--gye-vert-fonce);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.gye-section-heading h2 {

    margin: 0;

    color: var(--gye-noir);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.12;

    font-weight: 800;
}

.gye-intro-text {

    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.8;
}

.gye-intro-text p {

    margin-top: 0;
    margin-bottom: 20px;
}


/* =========================================================
   7. TROIS PILIERS
========================================================= */

.gye-pillars {

    padding: 95px 0;

    background: var(--gye-creme);
}

.gye-section-heading-center {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}

.gye-section-heading-center > p:last-child {

    margin: 18px 0 0;

    color: var(--gye-gris);

    font-size: 17px;
}

.gye-pillars-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.gye-pillar-card {

    position: relative;

    padding: 38px 32px;

    background: var(--gye-blanc);

    border-top: 4px solid var(--gye-vert);

    border-radius: var(--gye-radius);

    box-shadow: var(--gye-shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.gye-pillar-card:nth-child(2) {

    border-top-color: var(--gye-jaune);
}

.gye-pillar-card:nth-child(3) {

    border-top-color: var(--gye-vert-fonce);
}

.gye-pillar-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.14);
}

.gye-pillar-icon {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: rgba(99, 183, 43, 0.12);

    font-size: 29px;
}

.gye-pillar-card h3 {

    margin: 0 0 12px;

    color: var(--gye-noir);

    font-size: 25px;

    font-weight: 800;
}

.gye-pillar-card p {

    margin: 0 0 22px;

    color: var(--gye-gris);

    font-size: 15px;

    line-height: 1.7;
}

.gye-pillar-card a {

    color: var(--gye-vert-fonce);

    font-size: 14px;

    font-weight: 800;
}

.gye-pillar-card a:hover {

    color: var(--gye-vert);
}


/* =========================================================
   8. FOOTER
========================================================= */

.gye-footer {

    background: var(--gye-vert-tres-fonce);

    color: rgba(255, 255, 255, 0.85);
}

.gye-footer-container {

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    gap: 70px;

    padding-top: 65px;
    padding-bottom: 55px;
}

.gye-footer-about img {

    width: 100px;
    height: 100px;

    object-fit: contain;

    margin-bottom: 18px;

    background: var(--gye-blanc);

    border-radius: 8px;
}

.gye-footer-about p {

    max-width: 430px;

    margin: 0;

    font-size: 15px;

    line-height: 1.7;
}

.gye-footer-contact h3 {

    margin: 0 0 18px;

    color: var(--gye-jaune);

    font-size: 19px;
}

.gye-footer-contact p {

    margin: 0 0 16px;

    font-size: 14px;

    line-height: 1.7;
}

.gye-footer-bottom {

    padding: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    text-align: center;
}

.gye-footer-bottom p {

    margin: 0;

    font-size: 13px;
}


/* =========================================================
   9. RESPONSIVE - TABLETTES
========================================================= */

@media (max-width: 1050px) {

    .gye-header-container {

        gap: 18px;
    }

    .gye-navigation ul {

        gap: 15px;
    }

    .gye-navigation a {

        font-size: 12px;
    }

    .gye-support-button {

        padding: 0 14px;

        font-size: 11px;
    }

    .gye-hero {

        min-height: 620px;
    }

}


/* =========================================================
   10. RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    .gye-header-container {

        min-height: 80px;

        width: min(
            calc(100% - 30px),
            var(--gye-container)
        );

        flex-wrap: wrap;

        padding: 12px 0;
    }

    .gye-logo img {

        width: 70px;
        height: 70px;
    }

    .gye-navigation {

        order: 5;

        width: 100%;

        overflow-x: auto;

        justify-content: flex-start;

        padding-bottom: 5px;
    }

    .gye-navigation ul {

        width: max-content;

        gap: 20px;
    }

    .gye-language-switcher {

        margin-left: auto;
    }

    .gye-support-button {

        min-height: 38px;

        padding: 0 13px;
    }


    /* HERO */

    .gye-hero {

        min-height: 650px;

        background-position: 62% center;
    }

    .gye-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0, 35, 20, 0.88),
                rgba(0, 35, 20, 0.52)
            );
    }

    .gye-hero-content {

        padding: 70px 0 90px;
    }

    .gye-hero h1 {

        font-size: clamp(36px, 10vw, 52px);

        letter-spacing: -1px;
    }

    .gye-hero-description {

        font-size: 16px;
    }

    .gye-hero-actions {

        flex-direction: column;

        align-items: flex-start;
    }

    .gye-button {

        width: auto;

        min-height: 48px;
    }

    .gye-hero-scroll {

        display: none;
    }


    /* INTRO */

    .gye-intro {

        padding: 70px 0;
    }

    .gye-intro .gye-section-container {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* PILIERS */

    .gye-pillars {

        padding: 70px 0;
    }

    .gye-pillars-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    /* FOOTER */

    .gye-footer-container {

        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 50px;
        padding-bottom: 40px;
    }

}


/* =========================================================
   11. PETITS TÉLÉPHONES
========================================================= */

@media (max-width: 480px) {

    .gye-header-container {

        width: calc(100% - 24px);
    }

    .gye-support {

        display: none;
    }

    .gye-hero {

    min-height: 650px;

    background: #163d22;
}

.gye-hero-slide img {

    object-position: 60% center;
}

.gye-hero-overlay {

    background:
        linear-gradient(
            90deg,
            rgba(0, 35, 20, 0.90),
            rgba(0, 35, 20, 0.58)
        );
}

.gye-hero-content {

    padding: 70px 0 100px;
}

.gye-hero h1 {

    font-size: clamp(36px, 10vw, 52px);

    letter-spacing: -1px;
}

.gye-hero-description {

    font-size: 16px;
}

.gye-hero-actions {

    flex-direction: column;

    align-items: flex-start;
}

.gye-button {

    width: auto;

    min-height: 48px;
}

.gye-hero-scroll {

    display: none;
}

.gye-slider-dots {

    bottom: 25px;
}

    .gye-hero-content {

        padding-top: 60px;
    }

    .gye-hero h1 {

        font-size: 38px;
    }

    .gye-hero-description {

        font-size: 15px;
    }

    .gye-button {

        width: 100%;
    }

    .gye-section-container {

        width: calc(100% - 30px);
    }

}



/* =========================================================
   NOS PROJETS
========================================================= */

.gye-projects {

    padding: 100px 0;

    background: #ffffff;
}

.gye-projects .gye-section-heading {

    max-width: 720px;

    margin-bottom: 55px;
}

.gye-section-introduction {

    max-width: 680px;

    margin: 20px 0 0;

    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.75;
}


/* GRILLE */

.gye-projects-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* CARTE */

.gye-project-card {

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e9ece7;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gye-project-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.13);
}


/* IMAGE */

.gye-project-image {

    position: relative;

    height: 230px;

    overflow: hidden;

    background: var(--gye-vert-fonce);
}

.gye-project-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.gye-project-card:hover
.gye-project-image img {

    transform: scale(1.06);
}


/* NUMÉRO */

.gye-project-number {

    position: absolute;

    top: 18px;
    right: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: var(--gye-jaune);

    color: var(--gye-noir);

    font-size: 13px;

    font-weight: 900;
}


/* CONTENU */

.gye-project-content {

    padding: 27px 27px 30px;
}

.gye-project-category {

    display: block;

    margin-bottom: 9px;

    color: var(--gye-vert-fonce);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.gye-project-content h3 {

    margin: 0 0 12px;

    color: var(--gye-noir);

    font-size: 24px;

    line-height: 1.2;

    font-weight: 800;
}

.gye-project-content p {

    min-height: 78px;

    margin: 0 0 20px;

    color: var(--gye-gris);

    font-size: 14px;

    line-height: 1.7;
}

.gye-project-content a {

    color: var(--gye-vert-fonce);

    font-size: 13px;

    font-weight: 800;
}

.gye-project-content a:hover {

    color: var(--gye-vert);
}


/* PLACEHOLDER */

.gye-project-placeholder {

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert)
        );
}

.gye-project-placeholder-icon {
    font-size: 65px;
    opacity: 0.95;
}


/* BOUTON */

.gye-projects-action {
    margin-top: 55px;
    text-align: center;
}

.gye-button-projects {
    background: var(--gye-vert-fonce);
    color: var(--gye-blanc);
}

.gye-button-projects:hover {
    background: var(--gye-vert);
    color: var(--gye-blanc);
    transform: translateY(-2px);
}


/* =========================================================
   PROJETS - TABLETTE
========================================================= */

@media (max-width: 900px) {
    .gye-projects-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   PROJETS - MOBILE
========================================================= */

@media (max-width: 600px) {
    .gye-projects {
        padding: 70px 0;
    }

    .gye-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gye-project-image {

        height: 220px;
    }
}


/* =========================================================
   NOS RÉALISATIONS
========================================================= */

.gye-achievements {

    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #f7f5e8 0%,
            #ffffff 100%
        );
}

.gye-achievements-heading {

    max-width: 760px;

    margin-bottom: 55px;
}


/* GRILLE */

.gye-achievements-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* CARTE */

.gye-achievement-card {

    overflow: hidden;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gye-achievement-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.13);
}


/* IMAGE */

.gye-achievement-image {

    position: relative;

    height: 245px;

    overflow: hidden;
}

.gye-achievement-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.gye-achievement-card:hover
.gye-achievement-image img {

    transform: scale(1.06);
}


/* ÉTIQUETTE */

.gye-achievement-tag {

    position: absolute;

    top: 18px;
    left: 18px;

    padding: 7px 12px;

    border-radius: 4px;

    background: var(--gye-jaune);

    color: var(--gye-noir);

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


/* CONTENU */

.gye-achievement-content {

    padding: 28px 28px 30px;
}

.gye-achievement-location {

    display: block;

    margin-bottom: 10px;

    color: var(--gye-vert-fonce);

    font-size: 12px;

    font-weight: 800;
}

.gye-achievement-content h3 {

    margin: 0 0 14px;

    color: var(--gye-noir);

    font-size: 22px;

    line-height: 1.25;

    font-weight: 800;
}

.gye-achievement-content p {

    min-height: 100px;

    margin: 0 0 20px;

    color: var(--gye-gris);

    font-size: 14px;

    line-height: 1.7;
}

.gye-achievement-content a {

    color: var(--gye-vert-fonce);

    font-size: 13px;

    font-weight: 800;
}

.gye-achievement-content a:hover {

    color: var(--gye-vert);
}


/* BOUTON */

.gye-achievements-action {

    margin-top: 55px;

    text-align: center;
}

.gye-button-achievements {

    background: var(--gye-vert-fonce);

    color: var(--gye-blanc);
}

.gye-button-achievements:hover {

    background: var(--gye-vert);

    color: var(--gye-blanc);

    transform: translateY(-2px);
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 900px) {

    .gye-achievements-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gye-achievements {

        padding: 70px 0;

    }

    .gye-achievements-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .gye-achievement-image {

        height: 220px;

    }

}


/* =========================================================
   GYE EN CHIFFRES
========================================================= */

.gye-stats {

    position: relative;

    padding: 85px 0;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );

    overflow: hidden;
}


/* ÉLÉMENT DÉCORATIF */

.gye-stats::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -180px;
    right: -100px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 50%;
}

.gye-stats::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    bottom: -160px;
    left: -80px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


/* TITRE */

.gye-stats-heading {

    position: relative;

    z-index: 2;

    max-width: 650px;

    margin-bottom: 55px;
}

.gye-stats-heading .gye-section-label {

    color: var(--gye-jaune);
}

.gye-stats-heading h2 {

    margin: 0;

    color: var(--gye-blanc);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.12;

    font-weight: 800;
}


/* GRILLE */

.gye-stats-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(255, 255, 255, 0.18);

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


/* STATISTIQUE */

.gye-stat {

    min-height: 220px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px 28px;

    border-right:
        1px solid rgba(255, 255, 255, 0.18);
}

.gye-stat:last-child {

    border-right: none;
}


/* NOMBRE */

.gye-stat-number {

    display: block;

    margin-bottom: 8px;

    color: var(--gye-jaune);

    font-size: clamp(50px, 6vw, 72px);

    line-height: 1;

    font-weight: 900;
}


/* LABEL */

.gye-stat-label {

    display: block;

    margin-bottom: 8px;

    color: var(--gye-blanc);

    font-size: 15px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* DESCRIPTION */

.gye-stat-description {

    display: block;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 900px) {

    .gye-stats-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

    .gye-stat:nth-child(2) {

        border-right: none;

    }

    .gye-stat:nth-child(-n+2) {

        border-bottom:
            1px solid rgba(255, 255, 255, 0.18);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gye-stats {

        padding: 70px 0;

    }

    .gye-stats-grid {

        grid-template-columns: 1fr;

    }

    .gye-stat {

        min-height: auto;

        padding: 30px 20px;

        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.18);

    }

    .gye-stat:last-child {

        border-bottom: none;

    }

}


/* =========================================================
   NOTRE PRÉSENCE
========================================================= */

.gye-presence {

    padding: 100px 0;

    background: #ffffff;
}


/* INTRODUCTION */

.gye-presence-intro {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;
}

.gye-presence-description {

    color: var(--gye-gris);

    font-size: 16px;

    line-height: 1.8;
}

.gye-presence-description p {

    margin: 0 0 15px;
}

.gye-presence-description p:last-child {

    margin-bottom: 0;
}


/* GRILLE DES SITES */

.gye-sites-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* CARTE */

.gye-site-card {

    position: relative;

    min-height: 300px;

    padding: 38px 32px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f8f9f5,
            #ffffff
        );

    border: 1px solid #e4e8df;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.gye-site-card:hover {

    transform: translateY(-7px);

    border-color: var(--gye-vert);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.10);
}


/* NUMÉRO */

.gye-site-number {

    position: absolute;

    top: 22px;
    right: 25px;

    color: rgba(47, 111, 37, 0.10);

    font-size: 54px;

    line-height: 1;

    font-weight: 900;
}


/* ICÔNE */

.gye-site-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: rgba(99, 183, 43, 0.12);

    font-size: 24px;
}


/* CONTENU */

.gye-site-content {

    position: relative;

    z-index: 2;
}

.gye-site-content > span {

    display: block;

    margin-bottom: 8px;

    color: var(--gye-vert-fonce);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.gye-site-content h3 {

    margin: 0 0 14px;

    color: var(--gye-noir);

    font-size: 28px;

    line-height: 1.15;

    font-weight: 800;
}

.gye-site-content p {

    margin: 0;

    color: var(--gye-gris);

    font-size: 14px;

    line-height: 1.7;
}


/* BOUTON */

.gye-presence-action {

    margin-top: 50px;

    text-align: center;
}

.gye-button-presence {

    background: var(--gye-vert-fonce);

    color: var(--gye-blanc);
}

.gye-button-presence:hover {

    background: var(--gye-vert);

    color: var(--gye-blanc);

    transform: translateY(-2px);
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 900px) {

    .gye-presence-intro {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .gye-sites-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gye-site-card:last-child {

        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gye-presence {

        padding: 70px 0;
    }

    .gye-sites-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .gye-site-card:last-child {

        grid-column: auto;
    }

    .gye-site-card {

        min-height: auto;

        padding: 32px 25px;
    }

}


/* =========================================================
   ACTUALITÉS
========================================================= */

.gye-news {

    padding: 100px 0;

    background: #f7f5e8;
}


/* HEADER */

.gye-news-header {

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 55px;
}

.gye-news-all {

    flex-shrink: 0;

    color: var(--gye-vert-fonce);

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.4px;
}

.gye-news-all:hover {

    color: var(--gye-vert);
}


/* GRILLE */

.gye-news-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* CARTE */

.gye-news-card {

    overflow: hidden;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gye-news-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12);
}


/* IMAGE */

.gye-news-image {

    position: relative;

    height: 220px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert)
        );
}

.gye-news-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.gye-news-card:hover
.gye-news-image img {

    transform: scale(1.05);
}


/* ABSENCE D'IMAGE */

.gye-news-no-image {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.9);

    font-size: 20px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* CATÉGORIE */

.gye-news-category {

    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 6px 10px;

    border-radius: 3px;

    background: var(--gye-jaune);

    color: var(--gye-noir);

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.gye-news-category a {

    color: inherit;
}


/* CONTENU */

.gye-news-content {

    padding: 27px 27px 30px;
}


/* DATE */

.gye-news-meta {

    margin-bottom: 10px;

    color: var(--gye-gris);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* TITRE */

.gye-news-content h3 {

    min-height: 58px;

    margin: 0 0 12px;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 800;
}

.gye-news-content h3 a {

    color: var(--gye-noir);
}

.gye-news-content h3 a:hover {

    color: var(--gye-vert-fonce);
}


/* EXCERPT */

.gye-news-content p {

    min-height: 70px;

    margin: 0 0 18px;

    color: var(--gye-gris);

    font-size: 14px;

    line-height: 1.7;
}


/* LIEN */

.gye-news-link {

    color: var(--gye-vert-fonce);

    font-size: 13px;

    font-weight: 800;
}

.gye-news-link:hover {

    color: var(--gye-vert);
}


/* AUCUNE ACTUALITÉ */

.gye-news-empty {

    padding: 70px 30px;

    border: 2px dashed #d9dfd4;

    border-radius: 10px;

    text-align: center;
}

.gye-news-empty-icon {

    margin-bottom: 15px;

    font-size: 40px;
}

.gye-news-empty h3 {

    margin: 0 0 10px;

    color: var(--gye-noir);

    font-size: 24px;
}

.gye-news-empty p {

    max-width: 550px;

    margin: 0 auto;

    color: var(--gye-gris);

}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 900px) {

    .gye-news-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

    .gye-news-card:last-child {

        grid-column: 1 / -1;

        max-width: calc(50% - 14px);

        margin: 0 auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gye-news {

        padding: 70px 0;

    }

    .gye-news-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 35px;

    }

    .gye-news-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .gye-news-card:last-child {

        max-width: none;

    }

    .gye-news-image {

        height: 220px;

    }

}


/* =========================================================
   PAGE À PROPOS
========================================================= */

.gye-institutional-page {
    background: #ffffff;
}

/* =========================================
   HERO INTERNE
========================================= */

.gye-page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        url("assets/images/hero-gye-reboisement.webp");
    background-size: cover;
    background-position: center center;
}

.gye-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 35, 20, 0.90),
            rgba(0, 35, 20, 0.55),
            rgba(0, 0, 0, 0.15)
        );
}

.gye-page-hero-container {
    position: relative;
    z-index: 2;
    width: min(
        calc(100% - 40px),
        var(--gye-container)
    );

    margin: 0 auto;
}

.gye-page-eyebrow {
    margin: 0 0 15px;
    color: var(--gye-jaune);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gye-page-hero h1 {
    max-width: 800px;
    margin: 0 0 18px;
    color: var(--gye-blanc);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 800;
}

.gye-page-hero-container > p:last-child {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}


/* =========================================
   INTRODUCTION
========================================= */

.gye-about-introduction {
    padding: 100px 0;
}

.gye-about-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: 90px;
    align-items: start;
}

.gye-about-intro-title h2 {
    margin: 0;
    color: var(--gye-noir);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 800;
}

.gye-about-intro-text {
    color: var(--gye-gris);
    font-size: 17px;
    line-height: 1.85;
}

.gye-about-intro-text p {
    margin-top: 0;
    margin-bottom: 22px;
}

.gye-about-intro-text strong {
    color: var(--gye-vert-fonce);
}


/* =========================================
   MISSION
========================================= */

.gye-about-mission {
    padding: 100px 0;
    background: var(--gye-creme);
}

.gye-about-feature-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, 0.75fr);

    gap: 80px;

    align-items: center;
}

.gye-about-feature-content h2 {

    max-width: 720px;

    margin: 0 0 25px;

    color: var(--gye-noir);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    font-weight: 800;
}

.gye-about-feature-content > p:not(.gye-section-label) {

    max-width: 720px;

    color: var(--gye-gris);

    font-size: 16px;

    line-height: 1.8;
}

.gye-about-feature-box {

    position: relative;

    padding: 45px 35px;

    overflow: hidden;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.14);
}

.gye-about-feature-icon {

    display: block;

    margin-bottom: 25px;

    font-size: 52px;
}

.gye-about-feature-number {

    position: absolute;

    top: 20px;
    right: 25px;

    color: rgba(255, 255, 255, 0.10);

    font-size: 70px;

    font-weight: 900;
}

.gye-about-feature-box h3 {

    position: relative;

    margin: 0 0 15px;

    color: var(--gye-blanc);

    font-size: 26px;

    line-height: 1.2;
}

.gye-about-feature-box p {

    position: relative;

    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    line-height: 1.7;
}


/* =========================================
   VISION
========================================= */

.gye-about-vision {

    padding: 100px 0;
}

.gye-vision-box {

    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 45px;

    align-items: center;

    padding: 55px;

    border-left: 6px solid var(--gye-jaune);

    background: #f8f9f5;
}

.gye-vision-icon {

    width: 100px;
    height: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(99, 183, 43, 0.12);

    font-size: 45px;
}

.gye-vision-content h2 {

    margin: 0 0 18px;

    color: var(--gye-noir);

    font-size: clamp(30px, 3.5vw, 45px);

    line-height: 1.12;

    font-weight: 800;
}

.gye-vision-content > p:last-child {

    max-width: 850px;

    margin: 0;

    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   OBJECTIFS
========================================= */

.gye-about-objectives {

    padding: 100px 0;

    background: #ffffff;
}

.gye-about-objectives .gye-section-heading {

    max-width: 750px;

    margin-bottom: 55px;
}

.gye-objectives-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.gye-objective-card {

    position: relative;

    min-height: 300px;

    padding: 35px 27px;

    border: 1px solid #e5e9e1;

    border-radius: 8px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.gye-objective-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.09);
}

.gye-objective-number {

    display: block;

    margin-bottom: 30px;

    color: var(--gye-vert);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;
}

.gye-objective-card h3 {

    margin: 0 0 15px;

    color: var(--gye-noir);

    font-size: 20px;

    line-height: 1.25;
}

.gye-objective-card p {

    margin: 0;

    color: var(--gye-gris);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   PILIERS
========================================= */

.gye-about-pillars {

    padding: 100px 0;

    background: var(--gye-creme);
}

.gye-about-pillars-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.gye-about-pillar {

    padding: 40px 30px;

    text-align: center;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);
}

.gye-about-pillar-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: rgba(99, 183, 43, 0.12);

    font-size: 30px;
}

.gye-about-pillar h3 {

    margin: 0 0 12px;

    color: var(--gye-noir);

    font-size: 25px;
}

.gye-about-pillar p {

    margin: 0;

    color: var(--gye-gris);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.gye-about-cta {

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );
}

.gye-about-cta-content {

    max-width: 760px;
}

.gye-about-cta .gye-section-label {

    color: var(--gye-jaune);
}

.gye-about-cta h2 {

    margin: 0 0 15px;

    color: var(--gye-blanc);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;
}

.gye-about-cta-content > p:not(.gye-section-label) {

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .gye-objectives-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 800px) {

    .gye-about-intro-grid,
    .gye-about-feature-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .gye-about-pillars-grid {

        grid-template-columns: 1fr;
    }

    .gye-vision-box {

        grid-template-columns: 1fr;

        gap: 25px;

        padding: 40px;
    }

}

@media (max-width: 600px) {
    .gye-page-hero {
        min-height: 360px;
    }

    .gye-about-introduction,
    .gye-about-mission,
    .gye-about-vision,
    .gye-about-objectives,
    .gye-about-pillars {
        padding: 70px 0;
    }

    .gye-objectives-grid {
        grid-template-columns: 1fr;
    }

    .gye-objective-card {
        min-height: auto;
    }

    .gye-vision-box {
        padding: 30px 25px;
    }
    .gye-about-feature-box {
        padding: 35px 27px;
    }
}


/* =========================================================
   PAGE DOMAINES D'INTERVENTION
========================================================= */

.gye-domaines-page {
    background: #ffffff;
}


/* HERO */

.gye-domaines-hero {

    background-image:
        url("assets/images/hero-gye.webp");

}


/* INTRO */

.gye-domaines-intro {

    padding: 95px 0;

    background: #ffffff;
}

.gye-domaines-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 90px;

    align-items: start;
}

.gye-domaines-intro-grid h2 {

    margin: 0;

    color: var(--gye-noir);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    font-weight: 800;
}

.gye-domaines-intro-text {

    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.8;
}

.gye-domaines-intro-text p {

    margin-top: 0;

    margin-bottom: 20px;
}


/* SIX DOMAINES */

.gye-domaines-list {

    padding: 100px 0;

    background: var(--gye-creme);
}

.gye-domaines-list .gye-section-heading {

    max-width: 720px;

    margin-bottom: 55px;
}


/* GRILLE */

.gye-domaines-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}


/* CARTE */

.gye-domaine-card {

    overflow: hidden;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gye-domaine-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12);
}


/* IMAGE */

.gye-domaine-image {

    position: relative;

    height: 270px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert)
        );
}

.gye-domaine-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.gye-domaine-card:hover
.gye-domaine-image img {

    transform: scale(1.05);
}


/* NUMÉRO */

.gye-domaine-number {

    position: absolute;

    top: 20px;
    right: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: var(--gye-jaune);

    color: var(--gye-noir);

    font-size: 14px;

    font-weight: 900;
}


/* PLACEHOLDER */

.gye-domaine-placeholder {

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert)
        );
}

.gye-placeholder-icon {

    font-size: 75px;

    opacity: 0.95;
}


/* CONTENU */

.gye-domaine-content {

    padding: 30px;
}

.gye-domaine-label {

    display: block;

    margin-bottom: 9px;

    color: var(--gye-vert-fonce);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.gye-domaine-content h3 {

    margin: 0 0 15px;

    color: var(--gye-noir);

    font-size: 25px;

    line-height: 1.2;

    font-weight: 800;
}

.gye-domaine-content > p {

    min-height: 78px;
    margin: 0 0 20px;
    color: var(--gye-gris);
    font-size: 14px;
    line-height: 1.7;
}


/* LISTE */

.gye-domaine-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #e7ebe3;
    padding-top: 18px;
}

.gye-domaine-content li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 9px;
    color: #53605a;
    font-size: 13px;
    line-height: 1.5;
}

.gye-domaine-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gye-vert);
    font-weight: 900;
}


/* =========================================
   APPROCHE INTÉGRÉE
========================================= */

.gye-domaines-approach {
    padding: 100px 0;
    background: #ffffff;
}

.gye-domaines-approach-box {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: 80px;
    padding: 65px;
    border-left: 6px solid var(--gye-jaune);
    background: #f7f9f4;
}

.gye-domaines-approach-title h2 {
    margin: 0;
    color: var(--gye-noir);
    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.1;
    font-weight: 800;
}

.gye-domaines-approach-text {
    color: var(--gye-gris);
    font-size: 16px;
    line-height: 1.8;
}

.gye-domaines-approach-text p {
    margin-top: 0;
    margin-bottom: 20px;
}


/* =========================================
   CTA
========================================= */

.gye-domaines-cta {
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );
}

.gye-domaines-cta-content {
    max-width: 760px;
}

.gye-domaines-cta .gye-section-label {
    color: var(--gye-jaune);
}

.gye-domaines-cta h2 {
    margin: 0 0 15px;
    color: var(--gye-blanc);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
}

.gye-domaines-cta-content > p:not(.gye-section-label) {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}


/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 800px) {
    .gye-domaines-intro-grid,
    .gye-domaines-approach-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gye-domaines-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .gye-domaines-intro,
    .gye-domaines-list,
    .gye-domaines-approach {
        padding: 70px 0;
    }

    .gye-domaine-image {
        height: 220px;
    }

    .gye-domaine-content {
        padding: 25px;
    }

    .gye-domaines-approach-box {
        padding: 35px 25px;
    }
}


/* =========================================================
   PAGE PROJETS
========================================================= */

.gye-projects-page {
    background: #ffffff;
}

.gye-projects-hero {
    background-image:
        url("assets/images/hero-gye.webp");
}


/* INTRO */

.gye-projects-intro {
    padding: 95px 0;
}

.gye-projects-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 90px;
    align-items: start;
}

.gye-projects-intro-grid h2 {
    margin: 0;
    color: var(--gye-noir);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 800;
}

.gye-projects-intro-text {
    color: var(--gye-gris);
    font-size: 17px;
    line-height: 1.8;
}

.gye-projects-intro-text p {
    margin-top: 0;
    margin-bottom: 20px;
}


/* LISTE DES PROJETS */

.gye-projects-list {
    padding: 100px 0;
    background: var(--gye-creme);
}

.gye-projects-list .gye-section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}


/* GRILLE */

.gye-projects-detail-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 30px;
}


/* CARTE */

.gye-project-detail {
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gye-project-detail:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12);
}


/* IMAGE */

.gye-project-detail-image {
    position: relative;
    height: 290px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert)
        );
}

.gye-project-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease;
}

.gye-project-detail:hover
.gye-project-detail-image img {
    transform: scale(1.05);
}


/* NUMÉRO */

.gye-project-detail-number {
    position: absolute;
    top: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: var(--gye-jaune);
    color: var(--gye-noir);

    font-size: 14px;
    font-weight: 900;
}


/* PLACEHOLDER */

.gye-project-detail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 75px;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert)
        );
}


/* CONTENU */

.gye-project-detail-content {
    padding: 32px;
}

.gye-project-detail-category {
    display: block;
    margin-bottom: 9px;

    color: var(--gye-vert-fonce);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.gye-project-detail-content h3 {
    margin: 0 0 15px;

    color: var(--gye-noir);

    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}

.gye-project-detail-content > p {
    margin: 0 0 25px;

    color: var(--gye-gris);

    font-size: 15px;
    line-height: 1.75;
}


/* SOUS-TITRE */

.gye-project-detail-content h4 {
    margin: 0 0 12px;

    color: var(--gye-noir);

    font-size: 14px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* LISTE */

.gye-project-detail-content ul {
    margin: 0 0 25px;
    padding: 0;

    list-style: none;

    border-bottom: 1px solid #e7ebe3;
    padding-bottom: 20px;
}

.gye-project-detail-content li {
    position: relative;

    margin-bottom: 8px;
    padding-left: 19px;

    color: var(--gye-gris);

    font-size: 13px;
    line-height: 1.5;
}

.gye-project-detail-content li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--gye-vert);

    font-weight: 900;
}


/* OBJECTIF */

.gye-project-detail-objective {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding: 18px;

    border-left: 4px solid var(--gye-jaune);

    background: #f7f9f4;
}

.gye-project-detail-objective strong {
    color: var(--gye-vert-fonce);

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.gye-project-detail-objective span {
    color: var(--gye-gris);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   MÉTHODE
========================================= */

.gye-projects-method {
    padding: 100px 0;
    background: #ffffff;
}

.gye-projects-method-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 80px;

    padding: 65px;

    border-left: 6px solid var(--gye-jaune);

    background: #f7f9f4;
}

.gye-projects-method-grid h2 {
    margin: 0;

    color: var(--gye-noir);

    font-size: clamp(32px, 3.5vw, 46px);

    line-height: 1.1;
}

.gye-projects-method-grid > div:last-child {
    color: var(--gye-gris);

    font-size: 16px;

    line-height: 1.8;
}

.gye-projects-method-grid > div:last-child p {
    margin-top: 0;
    margin-bottom: 20px;
}


/* =========================================
   CTA
========================================= */

.gye-projects-cta {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );
}

.gye-projects-cta-content {
    max-width: 780px;
}

.gye-projects-cta .gye-section-label {
    color: var(--gye-jaune);
}

.gye-projects-cta h2 {
    margin: 0 0 15px;

    color: var(--gye-blanc);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;
}

.gye-projects-cta-content > p:not(.gye-section-label) {
    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .gye-projects-intro-grid,
    .gye-projects-method-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gye-projects-detail-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .gye-projects-intro,
    .gye-projects-list,
    .gye-projects-method {
        padding: 70px 0;
    }

    .gye-project-detail-image {
        height: 230px;
    }

    .gye-project-detail-content {
        padding: 25px;
    }

    .gye-projects-method-grid {
        padding: 35px 25px;
    }

}


/* =========================================================
   PAGE RÉALISATIONS
========================================================= */

.gye-realisations-page {
    background: #ffffff;
}

.gye-realisations-hero {
    background-image:
        url("assets/images/hero-gye-reboisement.webp");
}


/* INTRO */

.gye-realisations-intro {
    padding: 95px 0;
}

.gye-realisations-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 90px;
}

.gye-realisations-intro-grid h2 {
    margin: 0;
    color: var(--gye-noir);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 800;
}

.gye-realisations-intro-text {
    color: var(--gye-gris);
    font-size: 17px;
    line-height: 1.8;
}


/* CHIFFRES */

.gye-realisations-stats {
    padding: 80px 0;
    background: var(--gye-creme);
}

.gye-realisations-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.gye-realisation-stat {
    padding: 35px 20px;
    text-align: center;
    background: #ffffff;
    border-top: 4px solid var(--gye-vert);
}

.gye-realisation-stat strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gye-vert-fonce);
    font-size: 34px;
    font-weight: 900;
}

.gye-realisation-stat span {
    color: var(--gye-gris);
    font-size: 13px;
}


/* RÉALISATION */

.gye-realisation-feature {
    padding: 100px 0;
}

.gye-realisation-feature-alt {
    background: var(--gye-creme);
}

.gye-realisation-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);
}

.gye-realisation-feature-alt .gye-realisation-card {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
}

.gye-realisation-card-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.gye-realisation-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gye-realisation-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 9px 14px;
    background: var(--gye-jaune);
    color: var(--gye-noir);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.gye-realisation-card-content {
    padding: 55px;
}

.gye-realisation-number {
    display: block;
    margin-bottom: 12px;
    color: var(--gye-vert);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.gye-realisation-card-content h2 {
    margin: 0 0 15px;
    color: var(--gye-noir);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 800;
}

.gye-realisation-location {
    margin-bottom: 25px;
    color: var(--gye-vert-fonce) !important;
    font-weight: 700;
}

.gye-realisation-card-content > p {
    color: var(--gye-gris);
    font-size: 15px;
    line-height: 1.8;
}

.gye-realisation-card-content h3 {
    margin: 30px 0 15px;
    color: var(--gye-noir);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.gye-realisation-card-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gye-realisation-card-content li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 20px;
    color: var(--gye-gris);
    font-size: 14px;
}

.gye-realisation-card-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gye-vert);
    font-weight: 900;
}


/* IMPACT */

.gye-realisations-impact {
    padding: 100px 0;
}

.gye-realisations-impact-grid {
    display: grid;
    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);
    gap: 80px;
    padding: 65px;
    border-left: 6px solid var(--gye-jaune);
    background: #f7f9f4;
}

.gye-realisations-impact-grid h2 {
    margin: 0;
    color: var(--gye-noir);
    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.1;
}

.gye-realisations-impact-grid p {
    margin-top: 0;
    color: var(--gye-gris);
    font-size: 16px;
    line-height: 1.8;
}


/* CTA */

.gye-realisations-cta {
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );
}

.gye-realisations-cta-content {
    max-width: 780px;
}

.gye-realisations-cta .gye-section-label {
    color: var(--gye-jaune);
}

.gye-realisations-cta h2 {
    margin: 0 0 15px;
    color: var(--gye-blanc);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
}

.gye-realisations-cta-content > p:not(.gye-section-label) {
    margin: 0 0 30px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .gye-realisations-intro-grid,
    .gye-realisations-impact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gye-realisations-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gye-realisation-card {
        grid-template-columns: 1fr;
    }

    .gye-realisation-card-image {
        min-height: 350px;
    }

}

@media (max-width: 600px) {

    .gye-realisations-intro,
    .gye-realisation-feature,
    .gye-realisations-impact {
        padding: 70px 0;
    }

    .gye-realisations-stat-grid {
        grid-template-columns: 1fr;
    }

    .gye-realisation-card-content {
        padding: 30px 25px;
    }

    .gye-realisation-card-image {
        min-height: 280px;
    }

    .gye-realisations-impact-grid {
        padding: 35px 25px;
    }

}



/* =========================================================
   PAGE ÉQUIPE
========================================================= */

.gye-equipe-page {
    background: #ffffff;
}

.gye-equipe-hero {
    background-image:
        url("assets/images/hero-gye.webp");
}


/* INTRO */

.gye-equipe-intro {
    padding: 95px 0;
}

.gye-equipe-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 90px;
}

.gye-equipe-intro-grid h2 {
    margin: 0;

    color: var(--gye-noir);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    font-weight: 800;
}

.gye-equipe-intro-text {
    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.8;
}


/* LISTE */

.gye-equipe-list {
    padding: 100px 0;

    background: var(--gye-creme);
}

.gye-equipe-list .gye-section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}


/* GRILLE */

.gye-equipe-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* CARTE */

.gye-person-card {
    display: flex;

    flex-direction: column;

    padding: 35px 30px;

    min-height: 340px;

    background: #ffffff;

    border-radius: 10px;

    border: 1px solid #e5e9e1;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.gye-person-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .10);
}


/* AVATAR */

.gye-person-avatar {
    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert)
        );

    color: var(--gye-blanc);

    font-size: 22px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* ROLE */

.gye-person-role {
    display: block;

    margin-bottom: 8px;

    color: var(--gye-vert-fonce);

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* NOM */

.gye-person-content h3 {
    margin: 0 0 15px;

    color: var(--gye-noir);

    font-size: 22px;

    line-height: 1.2;

    font-weight: 800;
}


/* DESCRIPTION */

.gye-person-content p {
    margin: 0;

    color: var(--gye-gris);

    font-size: 14px;

    line-height: 1.7;
}


/* ORGANISATION */

.gye-equipe-organisation {
    padding: 100px 0;
}

.gye-equipe-organisation-box {
    display: grid;

    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);

    gap: 80px;

    padding: 65px;

    border-left: 6px solid var(--gye-jaune);

    background: #f7f9f4;
}

.gye-equipe-organisation-box h2 {
    margin: 0;

    color: var(--gye-noir);

    font-size: clamp(32px, 3.5vw, 46px);

    line-height: 1.1;
}

.gye-equipe-organisation-box > div:last-child {
    color: var(--gye-gris);

    font-size: 16px;

    line-height: 1.8;
}

.gye-equipe-organisation-box p {
    margin-top: 0;
}


/* CTA */

.gye-equipe-cta {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );
}

.gye-equipe-cta-content {
    max-width: 780px;
}

.gye-equipe-cta .gye-section-label {
    color: var(--gye-jaune);
}

.gye-equipe-cta h2 {
    margin: 0 0 15px;

    color: var(--gye-blanc);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;
}

.gye-equipe-cta-content > p:not(.gye-section-label) {
    margin: 0 0 30px;

    color: rgba(255,255,255,.78);

    font-size: 17px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .gye-equipe-intro-grid,
    .gye-equipe-organisation-box {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .gye-equipe-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .gye-equipe-intro,
    .gye-equipe-list,
    .gye-equipe-organisation {
        padding: 70px 0;
    }

    .gye-equipe-grid {
        grid-template-columns: 1fr;
    }

    .gye-person-card {
        min-height: auto;
    }

    .gye-equipe-organisation-box {
        padding: 35px 25px;
    }

}


/* =========================================================
   PAGE ZONES D'INTERVENTION
========================================================= */

.gye-zones-page {
    background: #ffffff;
}

.gye-zones-hero {
    background-image:
        url("assets/images/hero-gye-reboisement.webp");
}


/* INTRO */

.gye-zones-intro {
    padding: 95px 0;
}

.gye-zones-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 90px;
}

.gye-zones-intro-grid h2 {
    margin: 0;

    color: var(--gye-noir);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    font-weight: 800;
}

.gye-zones-intro-text {
    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.8;
}


/* SITES */

.gye-zones-list {
    padding: 100px 0;

    background: var(--gye-creme);
}

.gye-zones-list .gye-section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.gye-zones-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* CARTE SITE */

.gye-zone-card {
    padding: 35px 30px;

    background: #ffffff;

    border-radius: 10px;

    border: 1px solid #e5e9e1;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.gye-zone-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.10);
}


/* HAUT */

.gye-zone-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}

.gye-zone-number {
    color: var(--gye-vert);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;
}

.gye-zone-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(99,183,43,.12);

    font-size: 25px;
}


/* CONTENU */

.gye-zone-label {
    display: block;

    margin-bottom: 8px;

    color: var(--gye-vert-fonce);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.2px;
}

.gye-zone-card-content h3 {
    margin: 0 0 15px;

    color: var(--gye-noir);

    font-size: 30px;

    line-height: 1.15;

    font-weight: 800;
}

.gye-zone-card-content p {
    margin: 0 0 25px;

    color: var(--gye-gris);

    font-size: 14px;

    line-height: 1.75;
}


/* AXES */

.gye-zone-focus {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding-top: 18px;

    border-top: 1px solid #e5e9e1;
}

.gye-zone-focus strong {
    color: var(--gye-noir);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .7px;
}

.gye-zone-focus span {
    color: var(--gye-vert-fonce);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================
   CARTE
========================================= */

.gye-zones-map-section {
    padding: 100px 0;

    background: #ffffff;
}

.gye-zones-map-heading {
    max-width: 700px;

    margin-bottom: 40px;
}

.gye-zones-map-heading h2 {
    margin: 0 0 12px;

    color: var(--gye-noir);

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;
}

.gye-zones-map-heading > p:last-child {
    margin: 0;

    color: var(--gye-gris);

    font-size: 16px;
}


/* PLACEHOLDER */

.gye-map-placeholder {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eef3e9,
            #dfe9d9
        );

    border: 1px solid #dce5d7;
}

.gye-map-placeholder::before,
.gye-map-placeholder::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(47,111,37,.12);

    border-radius: 50%;
}

.gye-map-placeholder::before {
    width: 500px;
    height: 500px;
}

.gye-map-placeholder::after {
    width: 700px;
    height: 700px;
}

.gye-map-placeholder-content {
    position: relative;

    z-index: 2;

    text-align: center;
}

.gye-map-placeholder-icon {
    margin-bottom: 15px;

    font-size: 50px;
}

.gye-map-placeholder-content h3 {
    margin: 0 0 8px;

    color: var(--gye-vert-fonce);

    font-size: 25px;
}

.gye-map-placeholder-content p {
    margin: 0;

    color: var(--gye-gris);

    font-size: 14px;
}


/* =========================================
   ADRESSES
========================================= */

.gye-zones-address {
    padding: 100px 0;

    background: var(--gye-creme);
}

.gye-zones-address-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}

.gye-address-card {
    padding: 45px;

    background: #ffffff;

    border-radius: 10px;

    border-top: 4px solid var(--gye-vert);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

.gye-address-icon {
    margin-bottom: 20px;

    font-size: 35px;
}

.gye-address-card h2 {
    margin: 0 0 15px;

    color: var(--gye-noir);

    font-size: 30px;
}

.gye-address-card address {
    color: var(--gye-gris);

    font-size: 15px;

    font-style: normal;

    line-height: 1.8;
}


/* =========================================
   CTA
========================================= */

.gye-zones-cta {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );
}

.gye-zones-cta-content {
    max-width: 780px;
}

.gye-zones-cta .gye-section-label {
    color: var(--gye-jaune);
}

.gye-zones-cta h2 {
    margin: 0 0 15px;

    color: var(--gye-blanc);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;
}

.gye-zones-cta-content > p:not(.gye-section-label) {
    margin: 0 0 30px;

    color: rgba(255,255,255,.78);

    font-size: 17px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .gye-zones-intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .gye-zones-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 650px) {

    .gye-zones-intro,
    .gye-zones-list,
    .gye-zones-map-section,
    .gye-zones-address {
        padding: 70px 0;
    }

    .gye-zones-grid,
    .gye-zones-address-grid {
        grid-template-columns: 1fr;
    }

    .gye-map-placeholder {
        min-height: 320px;
    }

    .gye-address-card {
        padding: 30px 25px;
    }

}


/* =========================================================
   PAGE CONTACT
========================================================= */

.gye-contact-page {
    background: #ffffff;
}

.gye-contact-hero {
    background-image:
        url("assets/images/hero-gye-pisciculture.webp");
}


/* =========================================
   INTRO
========================================= */

.gye-contact-intro {
    padding: 95px 0;
}

.gye-contact-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 90px;
}

.gye-contact-intro-grid h2 {
    margin: 0;

    color: var(--gye-noir);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    font-weight: 800;
}

.gye-contact-intro-text {
    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   CARTES CONTACT
========================================= */

.gye-contact-details {
    padding: 0 0 100px;
}

.gye-contact-cards {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.gye-contact-card {
    padding: 35px 30px;

    border-radius: 10px;

    background: #ffffff;

    border: 1px solid #e3e8df;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    border-top: 4px solid var(--gye-vert);
}

.gye-contact-card-icon {
    margin-bottom: 20px;

    font-size: 32px;
}

.gye-contact-card-label {
    display: block;

    margin-bottom: 8px;

    color: var(--gye-vert-fonce);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.2px;
}

.gye-contact-card h3 {
    margin: 0 0 15px;

    color: var(--gye-noir);

    font-size: 25px;
}

.gye-contact-phone-list {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.gye-contact-phone-list a,
.gye-contact-email {
    color: var(--gye-vert-fonce);

    font-size: 15px;

    font-weight: 700;
}

.gye-contact-phone-list a:hover,
.gye-contact-email:hover {
    color: var(--gye-vert);
}

.gye-contact-card p {
    margin: 12px 0 0;

    color: var(--gye-gris);

    font-size: 13px;

    line-height: 1.6;
}

.gye-contact-card address {
    color: var(--gye-gris);

    font-size: 14px;

    font-style: normal;

    line-height: 1.8;
}


/* =========================================
   FORMULAIRE
========================================= */

.gye-contact-main {
    padding: 100px 0;

    background: var(--gye-creme);
}

.gye-contact-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, .75fr);

    gap: 35px;

    align-items: stretch;
}

.gye-contact-form-box {
    padding: 50px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.07);
}

.gye-contact-form-box h2 {
    margin: 0 0 12px;

    color: var(--gye-noir);

    font-size: clamp(30px, 3vw, 42px);

    line-height: 1.15;
}

.gye-contact-form-intro {
    margin: 0 0 35px;

    color: var(--gye-gris);

    font-size: 15px;
}

.gye-contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.gye-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.gye-form-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.gye-form-field label {
    color: var(--gye-noir);

    font-size: 13px;

    font-weight: 800;
}

.gye-form-field input,
.gye-form-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    border: 1px solid #dce2d9;

    border-radius: 5px;

    background: #fbfcfa;

    color: var(--gye-noir);

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.gye-form-field textarea {
    resize: vertical;

    min-height: 160px;
}

.gye-form-field input:focus,
.gye-form-field textarea:focus {
    border-color: var(--gye-vert);

    box-shadow:
        0 0 0 3px rgba(99,183,43,.12);
}

.gye-button-form {
    align-self: flex-start;

    border: none;

    cursor: pointer;

    background: var(--gye-vert-fonce);

    color: #ffffff;
}

.gye-button-form:hover {
    background: var(--gye-vert);
    color: #ffffff;
}


/* =========================================
   COLONNE DROITE
========================================= */

.gye-contact-side {
    border-radius: 10px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );
}

.gye-contact-side-inner {
    height: 100%;

    box-sizing: border-box;

    padding: 50px 40px;
}

.gye-contact-side .gye-section-label {
    color: var(--gye-jaune);
}

.gye-contact-side h2 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: 36px;

    line-height: 1.1;
}

.gye-contact-side-icon {
    margin-bottom: 20px;

    font-size: 40px;
}

.gye-contact-side address {
    color: rgba(255,255,255,.78);

    font-size: 15px;

    font-style: normal;

    line-height: 1.8;
}

.gye-contact-side address strong {
    color: #ffffff;
}

.gye-contact-side-divider {
    width: 100%;

    height: 1px;

    margin: 35px 0;

    background:
        rgba(255,255,255,.15);
}

.gye-contact-side-title {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .7px;
}

.gye-contact-side-text {
    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.gye-contact-cta {
    padding: 90px 0;

    background: #ffffff;
}

.gye-contact-cta-content {
    max-width: 800px;
}

.gye-contact-cta .gye-section-label {
    color: var(--gye-vert-fonce);
}

.gye-contact-cta h2 {
    margin: 0 0 15px;

    color: var(--gye-noir);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;
}

.gye-contact-cta-content > p:last-child {
    margin: 0;

    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .gye-contact-intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .gye-contact-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gye-contact-main-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .gye-contact-intro,
    .gye-contact-main,
    .gye-contact-cta {
        padding: 70px 0;
    }

    .gye-contact-cards {
        grid-template-columns: 1fr;
    }

    .gye-form-row {
        grid-template-columns: 1fr;
    }

    .gye-contact-form-box {
        padding: 30px 25px;
    }

    .gye-contact-side-inner {
        padding: 35px 25px;
    }

}


/* =========================================================
   PAGE ACTUALITÉS
========================================================= */

.gye-actualites-page {
    background: #ffffff;
}

.gye-actualites-hero {
    background-image:
        url("assets/images/hero-gye.webp");
}


/* =========================================
   INTRO
========================================= */

.gye-actualites-intro {
    padding: 95px 0;
}

.gye-actualites-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 90px;
}

.gye-actualites-intro-grid h2 {
    margin: 0;

    color: var(--gye-noir);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    font-weight: 800;
}

.gye-actualites-intro-text {
    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   LISTE
========================================= */

.gye-actualites-list {
    padding: 100px 0;

    background: var(--gye-creme);
}

.gye-actualites-list
.gye-section-heading {
    max-width: 700px;

    margin-bottom: 50px;
}


/* =========================================
   GRILLE
========================================= */

.gye-actualites-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================
   CARTE
========================================= */

.gye-actualite-card {
    overflow: hidden;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.gye-actualite-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.11);
}


/* =========================================
   IMAGE
========================================= */

.gye-actualite-image {
    position: relative;

    display: block;

    height: 225px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert)
        );
}

.gye-actualite-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.gye-actualite-card:hover
.gye-actualite-image img {
    transform: scale(1.05);
}


/* IMAGE ABSENTE */

.gye-actualite-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,.8);

    font-size: 38px;

    font-weight: 900;

    letter-spacing: 3px;
}


/* DATE */

.gye-actualite-date {
    position: absolute;

    right: 15px;
    bottom: 15px;

    padding: 7px 10px;

    background: var(--gye-jaune);

    color: var(--gye-noir);

    font-size: 11px;

    font-weight: 900;
}


/* =========================================
   CONTENU
========================================= */

.gye-actualite-content {
    padding: 27px;
}

.gye-actualite-category {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--gye-vert-fonce);

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.gye-actualite-content h3 {
    margin: 0 0 13px;
}

.gye-actualite-content h3 a {
    color: var(--gye-noir);

    font-size: 21px;

    line-height: 1.25;

    font-weight: 800;

    text-decoration: none;
}

.gye-actualite-content h3 a:hover {
    color: var(--gye-vert-fonce);
}

.gye-actualite-content > p {
    margin: 0 0 20px;

    color: var(--gye-gris);

    font-size: 13px;

    line-height: 1.7;
}


/* LIRE LA SUITE */

.gye-actualite-read {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--gye-vert-fonce);

    font-size: 12px;

    font-weight: 900;

    text-decoration: none;
}

.gye-actualite-read:hover {
    color: var(--gye-vert);
}

.gye-actualite-read span {
    transition:
        transform .2s ease;
}

.gye-actualite-read:hover span {
    transform: translateX(4px);
}


/* =========================================
   PAGINATION
========================================= */

.gye-actualites-pagination {
    display: flex;

    justify-content: center;

    margin-top: 55px;
}

.gye-actualites-pagination .page-numbers {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 40px;

    margin: 4px;

    padding: 0 10px;

    border-radius: 4px;

    background: #ffffff;

    color: var(--gye-noir);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}

.gye-actualites-pagination
.page-numbers.current {
    background: var(--gye-vert-fonce);

    color: #ffffff;
}

.gye-actualites-pagination
.page-numbers:hover {
    background: var(--gye-jaune);
}


/* =========================================
   AUCUNE ACTUALITÉ
========================================= */

.gye-no-actualites {
    max-width: 650px;

    margin: 0 auto;

    padding: 70px 30px;

    text-align: center;

    background: #ffffff;

    border-radius: 10px;
}

.gye-no-actualites-icon {
    margin-bottom: 15px;

    font-size: 50px;
}

.gye-no-actualites h3 {
    margin: 0 0 10px;

    color: var(--gye-noir);

    font-size: 25px;
}

.gye-no-actualites p {
    margin: 0;

    color: var(--gye-gris);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   DOMAINES
========================================= */

.gye-actualites-domains {
    padding: 100px 0;
}

.gye-actualites-domains
.gye-section-heading {
    max-width: 700px;

    margin-bottom: 45px;
}

.gye-actualites-domain-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.gye-actualite-domain {
    display: flex;

    flex-direction: column;

    padding: 25px;

    border: 1px solid #e2e7df;

    border-radius: 8px;

    background: #ffffff;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.gye-actualite-domain:hover {
    transform: translateY(-4px);

    border-color: var(--gye-vert);

    box-shadow:
        0 12px 30px rgba(0,0,0,.07);
}

.gye-actualite-domain > span {
    margin-bottom: 15px;

    font-size: 30px;
}

.gye-actualite-domain strong {
    color: var(--gye-noir);

    font-size: 17px;
}

.gye-actualite-domain small {
    margin-top: 5px;

    color: var(--gye-gris);

    font-size: 12px;
}


/* =========================================
   CTA
========================================= */

.gye-actualites-cta {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );
}

.gye-actualites-cta-content {
    max-width: 780px;
}

.gye-actualites-cta
.gye-section-label {
    color: var(--gye-jaune);
}

.gye-actualites-cta h2 {
    margin: 0 0 15px;

    color: var(--gye-blanc);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;
}

.gye-actualites-cta-content > p:not(.gye-section-label) {
    margin: 0 0 30px;

    color: rgba(255,255,255,.78);

    font-size: 17px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .gye-actualites-intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .gye-actualites-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gye-actualites-domain-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .gye-actualites-intro,
    .gye-actualites-list,
    .gye-actualites-domains,
    .gye-actualites-cta {
        padding: 70px 0;
    }

    .gye-actualites-grid,
    .gye-actualites-domain-grid {
        grid-template-columns: 1fr;
    }

    .gye-actualite-image {
        height: 220px;
    }

}


/* =========================================================
   PAGE NOUS SOUTENIR
========================================================= */

.gye-soutenir-page {
    background: #ffffff;
}

.gye-soutenir-hero {
    background-image:
        url("assets/images/hero-gye-reboisement.webp");
}


/* INTRO */

.gye-soutenir-intro {
    padding: 95px 0;
}

.gye-soutenir-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 90px;
}

.gye-soutenir-intro-grid h2 {
    margin: 0;

    color: var(--gye-noir);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    font-weight: 800;
}

.gye-soutenir-intro-text {
    color: var(--gye-gris);

    font-size: 17px;

    line-height: 1.8;
}


/* OPTIONS */

.gye-soutenir-options {
    padding: 100px 0;

    background: var(--gye-creme);
}

.gye-soutenir-options .gye-section-heading {
    max-width: 700px;

    margin-bottom: 50px;
}

.gye-soutenir-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* CARTE */

.gye-soutenir-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 370px;

    padding: 35px 30px;

    background: #ffffff;

    border-radius: 10px;

    border: 1px solid #e4e9e0;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.gye-soutenir-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.10);
}


/* ICON */

.gye-soutenir-icon {
    margin-bottom: 20px;

    font-size: 38px;
}


/* NUMÉRO */

.gye-soutenir-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #dce5d8;
    font-size: 25px;
    font-weight: 900;
}


/* CONTENU */
.gye-soutenir-card h3 {
    margin: 0 0 15px;
    color: var(--gye-noir);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.gye-soutenir-card p {
    margin: 0 0 25px;
    color: var(--gye-gris);
    font-size: 14px;
    line-height: 1.75;
}


/* LIEN */
.gye-soutenir-link {
    margin-top: auto;
    color: var(--gye-vert-fonce);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.gye-soutenir-link:hover {
    color: var(--gye-vert);
}

/* POURQUOI */
.gye-soutenir-why {
    padding: 100px 0;
}

.gye-soutenir-why-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.gye-soutenir-why-image {
    height: 560px;
    overflow: hidden;
    border-radius: 10px;
}

.gye-soutenir-why-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gye-soutenir-why-content h2 {
    margin: 0 0 20px;
    color: var(--gye-noir);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
}

.gye-soutenir-why-content > p {
    color: var(--gye-gris);
    font-size: 16px;
    line-height: 1.8;
}


/* POINTS */
.gye-soutenir-points {
    margin-top: 35px;
}

.gye-soutenir-points > div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #e5e9e1;
}

.gye-soutenir-points strong {
    color: var(--gye-vert);
    font-size: 12px;
    font-weight: 900;
}

.gye-soutenir-points span {
    color: var(--gye-noir);
    font-size: 14px;
    font-weight: 700;
}


/* TRANSPARENCE */
.gye-soutenir-transparence {
    padding: 100px 0;
    background: var(--gye-creme);
}

.gye-soutenir-transparence-box {
    display: grid;
    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);
    gap: 80px;
    padding: 65px;
    border-left: 6px solid var(--gye-jaune);
    background: #ffffff;
}

.gye-soutenir-transparence-box h2 {
    margin: 0;
    color: var(--gye-noir);
    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.1;
}

.gye-soutenir-transparence-box > div:last-child {
    color: var(--gye-gris);
    font-size: 16px;
    line-height: 1.8;
}

.gye-soutenir-transparence-box p {
    margin-top: 0;
}


/* CONTACT */
.gye-soutenir-contact {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            var(--gye-vert-fonce),
            var(--gye-vert-tres-fonce)
        );
}

.gye-soutenir-contact-content {
    max-width: 800px;
}

.gye-soutenir-contact .gye-section-label {
    color: var(--gye-jaune);
}

.gye-soutenir-contact h2 {
    margin: 0 0 15px;
    color: var(--gye-blanc);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
}

.gye-soutenir-contact-content > p:not(.gye-section-label) {
    margin: 0 0 30px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .gye-soutenir-intro-grid,
    .gye-soutenir-why-grid,
    .gye-soutenir-transparence-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gye-soutenir-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gye-soutenir-why-image {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .gye-soutenir-intro,
    .gye-soutenir-options,
    .gye-soutenir-why,
    .gye-soutenir-transparence,
    .gye-soutenir-contact {
        padding: 70px 0;
    }

    .gye-soutenir-grid {
        grid-template-columns: 1fr;
    }

    .gye-soutenir-card {
        min-height: auto;
    }

    .gye-soutenir-why-image {
        height: 300px;
    }

    .gye-soutenir-transparence-box {
        padding: 35px 25px;
    }
}

/* =========================================================
   GYE ONGD — BOUTON WHATSAPP
========================================================= */
.gye-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 5px;
    background: #25D366;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.gye-whatsapp-button:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.gye-whatsapp-icon {
    font-size: 19px;
    line-height: 1;
}

.gye-whatsapp-button:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.20);
}

.gye-whatsapp-button:hover .gye-whatsapp-icon {
    transform: scale(1.15);
}

.gye-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 46px;
    padding: 0 22px;

    border-radius: 5px;

    background: #25D366;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* HOVER */
.gye-whatsapp-button:hover {
    background-color: #347523;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.20);
}

.gye-whatsapp-icon {
    font-size: 19px;
    line-height: 1;

    transition: transform .2s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .gye-whatsapp-button {
        width: 100%;
        box-sizing: border-box;
        min-height: 48px;
    }

}

/* =========================================================
   DONS - GYE ONGD
========================================================= */

.gye-donation-section {
    padding: 100px 0;
    background: #ffffff;
}

.gye-donation-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.gye-donation-heading h2 {
    margin: 0 0 18px;
    color: var(--gye-noir);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 800;
}

.gye-donation-heading > p:last-child {
    margin: 0;
    color: var(--gye-gris);
    font-size: 16px;
    line-height: 1.8;
}


/* CARTES */

.gye-donation-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.gye-donation-card {
    padding: 35px 30px;
    border: 1px solid #e2e8df;
    border-radius: 10px;
    background: #ffffff;
    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.gye-donation-card-icon {
    margin-bottom: 20px;
    font-size: 36px;
}

.gye-donation-label {
    display: block;
    margin-bottom: 9px;
    color: var(--gye-vert-fonce);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.gye-donation-card h3 {
    margin: 0 0 20px;
    color: var(--gye-noir);
    font-size: 25px;
    line-height: 1.2;
}


/* BANQUE */

.gye-bank-details {
    margin-bottom: 20px;
    padding: 5px 0;
    border-top: 1px solid #e5e9e1;
}

.gye-bank-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e9e1;
}

.gye-bank-line span {
    color: var(--gye-gris);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.gye-bank-line strong {
    color: var(--gye-vert-fonce);
    font-size: 18px;
}


/* MOBILE */

.gye-mobile-details {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
    padding: 18px;
    background: #f5f8f2;
    border-left: 4px solid var(--gye-jaune);
}

.gye-mobile-details span {
    color: var(--gye-gris);
    font-size: 11px;
}

.gye-mobile-details strong {
    color: var(--gye-vert-fonce);
    font-size: 19px;
}


/* NOTE */

.gye-donation-note {
    margin: 0;
    color: var(--gye-gris);
    font-size: 12px;
    line-height: 1.7;
}


/* PAIEMENT */

.gye-donation-card-online {
    background: #f7f9f4;
}

.gye-payment-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0 12px;
    color: var(--gye-gris);
    font-size: 12px;
}

.gye-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gye-jaune);
}

.gye-donation-coming {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 3px;
    background: var(--gye-vert-fonce);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .7px;
}


/* BÉNÉFICIAIRE */

.gye-donation-recipient {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    padding: 25px 30px;
    border-left: 5px solid var(--gye-jaune);
    background: var(--gye-creme);
}

.gye-donation-recipient-icon {
    font-size: 30px;
}

.gye-donation-recipient > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gye-donation-recipient span {
    color: var(--gye-vert-fonce);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.gye-donation-recipient strong {
    color: var(--gye-noir);
    font-size: 17px;
}

.gye-donation-recipient small {
    color: var(--gye-gris);
    font-size: 13px;
}


/* =========================================================
   PROCÉDURE
========================================================= */

.gye-donation-procedure {
    padding: 100px 0;
    background: var(--gye-creme);
}

.gye-donation-procedure-grid {
    display: grid;
    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);
    gap: 80px;
}

.gye-donation-procedure-grid h2 {
    margin: 0 0 20px;
    color: var(--gye-noir);
    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.1;
}

.gye-donation-procedure-grid > div:first-child > p:last-child {
    color: var(--gye-gris);
    font-size: 16px;
    line-height: 1.8;
}


/* ÉTAPES */

.gye-procedure-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #dfe5da;
}

.gye-procedure-step > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gye-vert-fonce);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
}

.gye-procedure-step strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gye-noir);
    font-size: 16px;
}

.gye-procedure-step p {
    margin: 0;
    color: var(--gye-gris);
    font-size: 13px;
    line-height: 1.7;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .gye-donation-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gye-donation-procedure-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}

@media (max-width: 600px) {

    .gye-donation-section,
    .gye-donation-procedure {
        padding: 70px 0;
    }

    .gye-donation-grid {
        grid-template-columns: 1fr;
    }

    .gye-donation-recipient {
        align-items: flex-start;
        padding: 20px;
    }

}


/* =========================================================
   MENU PRINCIPAL GYE ONGD
========================================================= */
/* =========================================================
   EN-TÊTE + MENU PRINCIPAL GYE ONGD
========================================================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e9df;
}


/* =========================================================
   CONTENEUR DU HEADER
========================================================= */

.site-header .inside-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 82px;

    padding-top: 10px;
    padding-bottom: 10px;
}


/* =========================================================
   LOGO
========================================================= */

.site-branding {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.site-logo {
    display: block;

    width: 82px;
    height: auto;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
    background: #ffffff;

    margin-left: auto;
}

.main-navigation .inside-navigation {
    display: flex;
    align-items: center;
}


/* MENU PRINCIPAL */

.main-navigation .main-nav > ul {
    display: flex;
    align-items: center;

    gap: 2px;
}


/* LIENS */

.main-navigation .main-nav > ul > li > a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 58px;

    padding: 0 12px;

    color: #182018;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .15px;

    white-space: nowrap;

    transition:
        color .2s ease,
        background .2s ease;
}


/* EFFET SOUS LE LIEN */

.main-navigation
.main-nav > ul > li > a::after {

    content: "";

    position: absolute;

    left: 12px;
    right: 12px;

    bottom: 4px;

    height: 3px;

    background: #63b72b;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform .2s ease;
}


/* HOVER + PAGE ACTIVE */

.main-navigation
.main-nav > ul > li:hover > a,

.main-navigation
.main-nav > ul > li.current-menu-item > a,

.main-navigation
.main-nav > ul > li.current-menu-ancestor > a {

    color: #2f6f25;
}


.main-navigation
.main-nav > ul > li:hover > a::after,

.main-navigation
.main-nav > ul > li.current-menu-item > a::after,

.main-navigation
.main-nav > ul > li.current-menu-ancestor > a::after {

    transform: scaleX(1);
}


/* =========================================================
   FLÈCHES DES SOUS-MENUS
========================================================= */

.main-navigation
.menu-item-has-children > a {

    padding-right: 28px !important;
}

.main-navigation
.menu-item-has-children > a::before {

    content: "⌄";

    position: absolute;

    right: 10px;

    top: 50%;

    transform: translateY(-55%);

    color: #63b72b;

    font-size: 15px;

    font-weight: 900;
}


/* =========================================================
   SOUS-MENUS
========================================================= */

.main-navigation ul ul {

    min-width: 245px;

    padding: 8px 0;

    background: #ffffff;

    border-top: 3px solid #63b72b;

    border-radius: 0 0 5px 5px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.12);
}


/* LIENS DES SOUS-MENUS */

.main-navigation ul ul li a {

    display: block;

    min-height: auto;

    padding: 12px 18px;

    color: #182018;

    background: #ffffff;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.4;

    text-transform: none;

    white-space: normal;
}


/* HOVER SOUS-MENU */

.main-navigation ul ul li a:hover {

    background: #f3f7ef;

    color: #2f6f25;
}


/* PAS DE LIGNE SOUS LES SOUS-MENUS */

.main-navigation ul ul li a::after {
    display: none;
}


/* =========================================================
   BOUTON NOUS SOUTENIR
========================================================= */

.main-navigation
.main-nav > ul > li.gye-menu-soutenir > a {

    min-height: 42px;

    margin: 0 7px;

    padding: 0 18px;

    border-radius: 5px;

    background: #3d8b25;

    color: #ffffff;

    font-size: 11px;

    font-weight: 900;
}


.main-navigation
.main-nav > ul > li.gye-menu-soutenir > a:hover {

    background: #63b72b;

    color: #ffffff;
}


.main-navigation
.main-nav > ul > li.gye-menu-soutenir > a::after {

    display: none;
}


/* =========================================================
   ESPACEMENT ENTRE LOGO ET MENU
========================================================= */

@media (min-width: 1101px) {

    .site-branding {
        margin-right: 30px;
    }

}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1100px) {

    .site-header .inside-header {
        min-height: 75px;
    }

    .site-logo {
        width: 72px;
    }

    .main-navigation .main-nav > ul > li > a {

        padding-left: 8px;
        padding-right: 8px;

        font-size: 11px;
    }

    .main-navigation
    .menu-item-has-children > a {

        padding-right: 22px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-header .inside-header {

        min-height: 70px;

        padding: 8px 20px;

    }

    .site-logo {
        width: 65px;
    }

    .main-navigation {

        margin-left: 0;

    }

    .main-navigation .main-nav {

        width: 100%;

    }

    .main-navigation .main-nav > ul {

        display: block;

    }

    .main-navigation .main-nav > ul > li > a {

        min-height: 50px;

        padding: 0 20px;

    }

    .main-navigation
    .main-nav > ul > li > a::after {

        display: none;

    }

    .main-navigation
    .main-nav > ul > li.gye-menu-soutenir > a {

        margin: 8px 15px;

        justify-content: center;

    }

}


/* =========================================================
   GYE ONGD
   HEADER + MENU PERSONNALISÉ
========================================================= */


/* =========================================================
   HEADER
========================================================= */

.gye-header {

    position: relative;

    z-index: 9999;

    width: 100%;

    background: #ffffff;

    border-bottom: 3px solid #d9b928;

}


.gye-header-container {

    max-width: 1200px;

    min-height: 88px;

    margin: 0 auto;

    padding: 8px 20px;

    display: flex;

    align-items: center;

    gap: 25px;

}


/* =========================================================
   LOGO
========================================================= */

.gye-logo {

    flex-shrink: 0;

}


.gye-logo img {

    display: block;

    width: 78px;

    height: auto;

}


/* =========================================================
   NAVIGATION
========================================================= */

.gye-navigation {

    margin-left: auto;

}


.gye-menu {

    display: flex;

    align-items: center;

    margin: 0;

    padding: 0;

    list-style: none;

}


/* =========================================================
   ELEMENTS PRINCIPAUX
========================================================= */

.gye-menu > li {

    position: relative;

    margin: 0;

    padding: 0;

}


.gye-menu > li > a {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 55px;

    padding: 0 12px;

    color: #111111;

    font-size: 12px;

    font-weight: 800;

    line-height: 1.2;

    text-decoration: none;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color .2s ease,
        background-color .2s ease;

}


/* =========================================================
   LIEN ACTIF / SURVOL
========================================================= */

.gye-menu > li > a:hover,

.gye-menu > li.current-menu-item > a,

.gye-menu > li.current-menu-ancestor > a {

    color: #347523;

}


/* =========================================================
   PETIT TRAIT VERT
========================================================= */

.gye-menu > li > a::after {

    content: "";

    position: absolute;

    left: 12px;

    right: 12px;

    bottom: 5px;

    height: 3px;

    background: #63b72b;

    transform: scaleX(0);

    transition: transform .2s ease;

}


.gye-menu > li:hover > a::after,

.gye-menu > li.current-menu-item > a::after,

.gye-menu > li.current-menu-ancestor > a::after {

    transform: scaleX(1);

}


/* =========================================================
   FLÈCHE DES MENUS QUI POSSÈDENT UN SOUS-MENU
========================================================= */

.gye-menu > li.menu-item-has-children > a {

    padding-right: 28px;

}


.gye-menu > li.menu-item-has-children > a::before {

    content: "▾";

    position: absolute;

    right: 10px;

    top: 50%;

    transform: translateY(-50%);

    color: #63b72b;

    font-size: 12px;

    font-weight: 900;

}


/* =========================================================
   SOUS-MENUS
   IMPORTANT : C'EST CETTE PARTIE QUI LES CACHE
========================================================= */

.gye-menu li {

    position: relative;

}


.gye-menu ul.sub-menu {

    position: absolute;

    top: 100%;

    left: 0;

    z-index: 99999;

    display: block;

    visibility: hidden;

    opacity: 0;

    min-width: 245px;

    margin: 0;

    padding: 8px 0;

    list-style: none;

    background: #ffffff;

    border-top: 3px solid #63b72b;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .14);

    transform: translateY(8px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;

}


/* =========================================================
   AFFICHAGE DU SOUS-MENU AU SURVOL
========================================================= */

.gye-menu li:hover > ul.sub-menu {

    visibility: visible;

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   LIENS DES SOUS-MENUS
========================================================= */

.gye-menu ul.sub-menu li {

    display: block;

    width: 100%;

}


.gye-menu ul.sub-menu li a {

    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 12px 18px;

    color: #182018;

    background: #ffffff;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.4;

    text-decoration: none;

    text-transform: none;

    white-space: normal;

}


.gye-menu ul.sub-menu li a:hover {

    color: #347523;

    background: #f3f7ef;

}


/* =========================================================
   SOUS-MENU DE DEUXIÈME NIVEAU
========================================================= */

.gye-menu ul.sub-menu ul.sub-menu {

    top: -8px;

    left: 100%;

}


/* =========================================================
   NOUS SOUTENIR
========================================================= */

.gye-menu > li.gye-menu-soutenir > a {

    min-height: 42px;

    margin-left: 8px;

    padding: 0 18px;

    border-radius: 5px;

    background: #347523;

    color: #ffffff;

}


.gye-menu > li.gye-menu-soutenir > a:hover {

    background: #63b72b;

    color: #ffffff;

}


.gye-menu > li.gye-menu-soutenir > a::after {

    display: none;

}


/* =========================================================
   LANGUES
========================================================= */

.gye-language-switcher {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    gap: 7px;

    margin-left: 5px;

}


.gye-language {

    color: #555555;

    font-size: 11px;

    font-weight: 800;

    text-decoration: none;

}


.gye-language.active {

    color: #347523;

}


.gye-language:hover {

    color: #63b72b;

}


.gye-language-separator {

    color: #cccccc;

}


/* =========================================================
   BOUTON MOBILE
========================================================= */

.gye-menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    padding: 8px;

    border: 0;

    border-radius: 4px;

    background: #347523;

    cursor: pointer;

}


.gye-menu-toggle span:not(.screen-reader-text) {

    display: block;

    width: 25px;

    height: 2px;

    margin: 5px auto;

    background: #ffffff;

}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1100px) {

    .gye-header-container {

        gap: 12px;

    }


    .gye-menu > li > a {

        padding-left: 8px;

        padding-right: 8px;

        font-size: 11px;

    }


    .gye-menu > li.menu-item-has-children > a {

        padding-right: 22px;

    }


    .gye-language-switcher {

        margin-left: 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .gye-header-container {

        min-height: 70px;

        padding: 8px 18px;

        justify-content: space-between;

    }


    .gye-logo img {

        width: 65px;

    }


    .gye-menu-toggle {

        display: block;

        order: 3;

    }


    .gye-navigation {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        display: none;

        margin: 0;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        box-shadow:
            0 15px 30px rgba(0,0,0,.12);

    }


    .gye-navigation.gye-menu-open {

        display: block;

    }


    .gye-menu {

        display: block;

        width: 100%;

    }


    .gye-menu > li {

        width: 100%;

        border-bottom: 1px solid #eeeeee;

    }


    .gye-menu > li > a {

        min-height: 50px;

        padding: 0 20px;

    }


    .gye-menu > li > a::after {

        display: none;

    }


    /* SOUS-MENUS MOBILE */

    .gye-menu ul.sub-menu {

        position: static;

        display: none;

        visibility: visible;

        opacity: 1;

        min-width: 100%;

        padding: 0;

        border-top: 0;

        box-shadow: none;

        transform: none;

    }


    .gye-menu li.menu-item-open > ul.sub-menu {

        display: block;

    }


    .gye-menu ul.sub-menu li a {

        padding: 13px 35px;

        background: #f5f8f2;

    }


    .gye-language-switcher {

        margin-left: auto;

        margin-right: 8px;

    }


    .gye-menu > li.gye-menu-soutenir > a {

        justify-content: center;

        margin: 8px 15px;

    }

}



/* =========================================================
   GYE ONGD — MENU PLUS COMPACT
========================================================= */

.gye-header-container {
    gap: 6px;
}

.gye-menu {
    gap: 0;
}

.gye-menu > li > a {
    padding-left: 5px;
    padding-right: 5px;
}

/* Éléments avec sous-menu */
.gye-menu > li.menu-item-has-children > a {
    padding-right: 19px;
}

.gye-menu > li.menu-item-has-children > a::before {
    right: 5px;
}

/* Bouton Nous soutenir */
.gye-menu > li.gye-menu-soutenir > a {
    margin-left: 4px;
    padding-left: 10px;
    padding-right: 10px;
}

/* FR | EN */
.gye-language-switcher {
    margin-left: 3px;
    gap: 4px;
}


/* =========================================================
   GYE ONGD — ESPACEMENT DU CONTENU DES PAGES
========================================================= */

/* Conteneur principal */
.site-content {
    width: 100%;
}

/* Contenu des pages et articles */
.site-content .inside-article,
.site-content .entry-content,
.site-content .page-content {
    box-sizing: border-box;
}


/* Pages principales */
body.page .site-content {
    padding-left: 20px;
    padding-right: 20px;
}


/* Articles */
body.single .site-content {
    padding-left: 20px;
    padding-right: 20px;
}


/* Conteneur des pages */
.site-content .content-area {
    box-sizing: border-box;
}


/* Écrans larges */
@media (min-width: 1101px) {

    body.page .site-content,
    body.single .site-content {
        padding-left: 30px;
        padding-right: 30px;
    }

}


/* Tablette */
@media (max-width: 768px) {

    body.page .site-content,
    body.single .site-content {
        padding-left: 15px;
        padding-right: 15px;
    }

}


/* =========================================================
   GYE ONGD — PAGE D'ACCUEIL
   ESPACEMENT LATÉRAL
========================================================= */

body.home .site-content {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}


/* Écrans larges */
@media (min-width: 1101px) {

    body.home .site-content {
        padding-left: 30px;
        padding-right: 30px;
    }

}


/* Tablette */
@media (max-width: 768px) {

    body.home .site-content {
        padding-left: 15px;
        padding-right: 15px;
    }

}



/* =========================================================
   GYE ONGD — MENU MOBILE VERTICAL
========================================================= */

@media (max-width: 768px) {

    /* Le conteneur du menu prend toute la largeur */
    .gye-navigation {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #ffffff;
        box-sizing: border-box;
        z-index: 99999;
    }

    /* Affichage lorsque le bouton est cliqué */
    .gye-navigation.gye-menu-open {
        display: block !important;
    }

    /* Menu vertical */
    .gye-navigation .gye-menu {
        display: block !important;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* Chaque rubrique occupe toute la largeur */
    .gye-navigation .gye-menu > li {
        display: block !important;
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #eeeeee;
    }

    /* Liens principaux */
    .gye-navigation .gye-menu > li > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-height: 50px;

        padding: 0 20px;

        box-sizing: border-box;

        font-size: 12px;
        font-weight: 800;

        background: #ffffff;
        color: #222222;

        text-decoration: none;
    }

    /* Suppression du trait horizontal du desktop */
    .gye-navigation .gye-menu > li > a::after {
        display: none !important;
    }

    /* =====================================================
       SOUS-MENUS
    ===================================================== */

    .gye-navigation .gye-menu ul.sub-menu {
        position: static !important;

        display: none !important;

        width: 100%;
        min-width: 100%;

        margin: 0;
        padding: 0;

        visibility: visible;
        opacity: 1;

        transform: none;

        background: #f5f8f2;

        border: 0;

        box-shadow: none;
    }

    /* Sous-menu ouvert */
    .gye-navigation
    .gye-menu li.menu-item-open > ul.sub-menu {
        display: block !important;
    }

    /* Liens des sous-menus */
    .gye-navigation
    .gye-menu ul.sub-menu li {
        display: block !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .gye-navigation
    .gye-menu ul.sub-menu li a {
        display: block !important;

        width: 100%;

        padding: 13px 35px;

        box-sizing: border-box;

        background: #f5f8f2;
        color: #333333;

        font-size: 12px;
        font-weight: 600;

        text-decoration: none;
    }

    /* =====================================================
       NOUS SOUTENIR
    ===================================================== */

    .gye-navigation
    .gye-menu > li.gye-menu-soutenir > a {

        display: flex !important;

        justify-content: center;

        width: calc(100% - 30px);

        min-height: 44px;

        margin: 10px 15px;

        padding: 0 15px;

        border-radius: 5px;

        background: #347523;

        color: #ffffff;
    }

}



/* =========================================================
   GYE ONGD — HEADER FIXE AU SCROLL
========================================================= */

.gye-header {
    position: sticky !important;
    top: 0;
    z-index: 99999;

    width: 100%;

    background: #ffffff;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}


/* Sécurité pour éviter les problèmes de largeur */

.gye-header-container {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   GYE ONGD — BOUTON RETOUR EN HAUT
========================================================= */

.gye-back-to-top {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #347523;
    color: #ffffff;

    font-size: 22px;
    font-weight: 700;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease;

    z-index: 99998;

    box-shadow: 0 4px 15px rgba(0,0,0,.18);
}


/* Bouton visible */

.gye-back-to-top.is-visible {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* Survol */

.gye-back-to-top:hover {

    background: #63b72b;

    transform: translateY(-3px);

}


/* Mobile */

@media (max-width: 768px) {

    .gye-back-to-top {

        right: 15px;
        bottom: 15px;

        width: 40px;
        height: 40px;

        font-size: 19px;

    }

}



/* =========================================================
   GYE ONGD — PAGE NOS DOMAINES
========================================================= */

.gye-domains-hero {
    background-image: linear-gradient(
        rgba(21, 83, 32, 0.72),
        rgba(21, 83, 32, 0.72)
    ),
    url("assets/images/hero-gye-reboisement.webp");
    background-size: cover;
    background-position: center;
}

.gye-domains-intro {
    padding: 80px 0 45px;
}

.gye-domains-list {
    padding: 35px 0 85px;
}

.gye-domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gye-domain-card {
    position: relative;
    padding: 38px 32px 34px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease,
                border-color .25s ease;
}

.gye-domain-card:hover {
    transform: translateY(-6px);
    border-color: #63b72b;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}

.gye-domain-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #edf7e8;
    font-size: 28px;
}

.gye-domain-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #347523;
    font-size: 13px;
    font-weight: 700;
}

.gye-domain-card h3 {
    margin: 0 0 14px;
    color: #1f5428;
    font-size: 22px;
}

.gye-domain-card p {
    margin: 0;
    color: #555555;
    line-height: 1.75;
}

.gye-domains-approach {
    padding: 0 0 90px;
}

.gye-domains-approach-box {
    padding: 55px;
    border-radius: 8px;
    background: #1f5b28;
    color: #ffffff;
}

.gye-domains-approach-box h2 {
    margin: 8px 0 18px;
    color: #ffffff;
}

.gye-domains-approach-box p:not(.gye-section-label) {
    max-width: 800px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.75;
}

.gye-domains-approach-box .gye-section-label {
    color: #f4c430;
}


/* TABLETTE */

@media (max-width: 900px) {

    .gye-domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .gye-domains-intro {
        padding: 60px 0 30px;
    }

    .gye-domains-list {
        padding: 25px 0 60px;
    }

    .gye-domains-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gye-domain-card {
        padding: 30px 25px;
    }

    .gye-domains-approach {
        padding-bottom: 60px;
    }

    .gye-domains-approach-box {
        padding: 35px 25px;
    }
}


/* =========================================================
   ANIMATIONS D'APPARITION AU DÉFILEMENT
========================================================= */

.gye-scroll-animation {
    opacity: 0;
    transform: translateY(60px) scale(0.97);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: opacity, transform;
}


.gye-scroll-animation.gye-scroll-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* =========================================================
   APPARITION PROGRESSIVE DES CARTES
========================================================= */

.gye-soutenir-card:nth-child(2),
.gye-domain-card:nth-child(2),
.gye-project-card:nth-child(2),
.gye-achievement-card:nth-child(2),
.gye-area-card:nth-child(2),
.gye-donation-card:nth-child(2) {
    transition-delay: 0.12s;
}


.gye-soutenir-card:nth-child(3),
.gye-domain-card:nth-child(3),
.gye-project-card:nth-child(3),
.gye-achievement-card:nth-child(3),
.gye-area-card:nth-child(3),
.gye-donation-card:nth-child(3) {
    transition-delay: 0.24s;
}


.gye-soutenir-card:nth-child(4),
.gye-domain-card:nth-child(4),
.gye-project-card:nth-child(4),
.gye-achievement-card:nth-child(4),
.gye-area-card:nth-child(4),
.gye-donation-card:nth-child(4) {
    transition-delay: 0.36s;
}


.gye-soutenir-card:nth-child(5),
.gye-domain-card:nth-child(5),
.gye-project-card:nth-child(5),
.gye-achievement-card:nth-child(5),
.gye-area-card:nth-child(5) {
    transition-delay: 0.48s;
}


.gye-soutenir-card:nth-child(6),
.gye-domain-card:nth-child(6),
.gye-project-card:nth-child(6),
.gye-achievement-card:nth-child(6),
.gye-area-card:nth-child(6) {
    transition-delay: 0.60s;
}


/* =========================================================
   EFFET LÉGER SUR LES IMAGES
========================================================= */

.gye-scroll-animation img {
    transition:
        transform 0.9s ease;
}


.gye-scroll-animation.gye-scroll-visible img {
    transform: scale(1.02);
}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gye-scroll-animation {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* =========================================================
   EFFET DE SURVOL — CARTES GYE ONGD
========================================================= */

.gye-domain-card,
.gye-project-card,
.gye-achievement-card,
.gye-area-card,
.gye-soutenir-card,
.gye-donation-card,
.gye-team-card,
.gye-news-card,
.gye-contact-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Soulèvement de la carte */

.gye-domain-card:hover,
.gye-project-card:hover,
.gye-achievement-card:hover,
.gye-area-card:hover,
.gye-soutenir-card:hover,
.gye-donation-card:hover,
.gye-team-card:hover,
.gye-news-card:hover,
.gye-contact-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   IMAGES DES CARTES
========================================================= */

.gye-domain-card img,
.gye-project-card img,
.gye-achievement-card img,
.gye-area-card img,
.gye-soutenir-card img,
.gye-donation-card img,
.gye-team-card img,
.gye-news-card img {
    transition:
        transform 0.5s ease;
}


.gye-domain-card:hover img,
.gye-project-card:hover img,
.gye-achievement-card:hover img,
.gye-area-card:hover img,
.gye-soutenir-card:hover img,
.gye-donation-card:hover img,
.gye-team-card:hover img,
.gye-news-card:hover img {
    transform: scale(1.04);
}


/* =========================================================
   ICÔNES
========================================================= */

.gye-domain-card .gye-domain-icon {
    transition:
        transform 0.4s ease;
}


.gye-domain-card:hover .gye-domain-icon {
    transform:
        scale(1.12)
        rotate(3deg);
}


/* =========================================================
   BOUTONS DANS LES CARTES
========================================================= */

.gye-domain-card a,
.gye-project-card a,
.gye-achievement-card a,
.gye-area-card a,
.gye-soutenir-card a {
    transition:
        transform 0.3s ease;
}


.gye-domain-card:hover a,
.gye-project-card:hover a,
.gye-achievement-card:hover a,
.gye-area-card:hover a,
.gye-soutenir-card:hover a {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .gye-domain-card:hover,
    .gye-project-card:hover,
    .gye-achievement-card:hover,
    .gye-area-card:hover,
    .gye-soutenir-card:hover,
    .gye-donation-card:hover,
    .gye-team-card:hover,
    .gye-news-card:hover,
    .gye-contact-card:hover {
        transform: translateY(-4px);
    }

}


/* =========================================================
   ANIMATION DU HERO
========================================================= */

.gye-page-hero-container > * {
    opacity: 0;
    transform: translateY(30px);
    animation: gye-hero-appear 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


/* Petit label */

.gye-page-hero-container > *:nth-child(1) {
    animation-delay: 0.15s;
}


/* Titre */

.gye-page-hero-container > *:nth-child(2) {
    animation-delay: 0.30s;
}


/* Description */

.gye-page-hero-container > *:nth-child(3) {
    animation-delay: 0.45s;
}


/* Bouton éventuel */

.gye-page-hero-container > *:nth-child(4) {
    animation-delay: 0.60s;
}


/* =========================================================
   MOUVEMENT
========================================================= */

@keyframes gye-hero-appear {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .gye-page-hero-container > * {
        transform: translateY(20px);
        animation-duration: 0.7s;
    }

}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gye-page-hero-container > * {
        opacity: 1;
        transform: none;
        animation: none;
    }

}


/* =========================================================
   BOUTONS — EFFET DYNAMIQUE
========================================================= */

.gye-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}


/* Survol */

.gye-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.16);
}


/* Clic */

.gye-button:active {
    transform: translateY(0);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   BOUTON PRINCIPAL
========================================================= */

.gye-button-primary {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.gye-button-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   FLÈCHES DANS LES BOUTONS
========================================================= */

.gye-button span,
.gye-button .arrow {
    transition:
        transform 0.3s ease;
}

.gye-button:hover span,
.gye-button:hover .arrow {
    transform: translateX(5px);
}


/* =========================================================
   BOUTON WHATSAPP
========================================================= */

.gye-button-whatsapp {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.gye-button-whatsapp:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   BOUTON CONTACT
========================================================= */

.gye-button-contact {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gye-button-contact:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gye-button,
    .gye-button-primary,
    .gye-button-whatsapp,
    .gye-button-contact {
        transition: none;
        transform: none;
    }
}





/* =========================================================
   HEADER — ANIMATIONS ET INTERACTIONS
========================================================= */


/* =========================================================
   LOGO
========================================================= */

.gye-logo img {
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.gye-logo a:hover img {
    transform: scale(1.04);
    opacity: 0.92;
}


/* =========================================================
   LIENS DU MENU
========================================================= */

.gye-menu > li > a {
    position: relative;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Petite ligne animée sous le lien */

.gye-menu > li > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    transition:
        width 0.3s ease;
}


/* Survol */

.gye-menu > li > a:hover::after {
    width: 70%;
}


/* Lien actif */

.gye-menu > li.current-menu-item > a::after,
.gye-menu > li.current_page_item > a::after {
    width: 70%;
}


/* =========================================================
   SOUS-MENU
========================================================= */

.gye-menu li ul {
    opacity: 0;

    transform:
        translateY(8px);

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.gye-menu li:hover > ul {
    opacity: 1;

    transform:
        translateY(0);

    visibility: visible;
}


/* =========================================================
   LIENS DU SOUS-MENU
========================================================= */

.gye-menu li ul li a {
    transition:
        padding-left 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.gye-menu li ul li a:hover {
    padding-left: 22px;
}


/* =========================================================
   SÉLECTEUR DE LANGUE
========================================================= */

.gye-language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gye-language {
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.gye-language:hover {
    transform: translateY(-2px);
}

.gye-language.active {
    font-weight: 700;
}


/* =========================================================
   BOUTON MENU MOBILE
========================================================= */

.gye-menu-toggle span {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gye-logo img,
    .gye-menu > li > a,
    .gye-menu > li > a::after,
    .gye-menu li ul,
    .gye-menu li ul li a,
    .gye-language,
    .gye-menu-toggle span {
        transition: none;
        transform: none;
    }
}


/* =========================================================
   IMAGES — ANIMATION ET EFFET DE SURVOL
========================================================= */

/* Conteneurs d'images */

.gye-project-image,
.gye-achievement-image,
.gye-area-image,
.gye-team-image,
.gye-news-image,
.gye-soutenir-image {
    overflow: hidden;
}


/* Images */

.gye-project-image img,
.gye-achievement-image img,
.gye-area-image img,
.gye-team-image img,
.gye-news-image img,
.gye-soutenir-image img {
    display: block;
    width: 100%;

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}


/* =========================================================
   ZOOM AU SURVOL
========================================================= */

.gye-project-image:hover img,
.gye-achievement-image:hover img,
.gye-area-image:hover img,
.gye-team-image:hover img,
.gye-news-image:hover img,
.gye-soutenir-image:hover img {
    transform: scale(1.07);
}


/* =========================================================
   LÉGER ASSOMBRISSEMENT AU SURVOL
========================================================= */

.gye-project-image:hover img,
.gye-achievement-image:hover img,
.gye-area-image:hover img,
.gye-team-image:hover img,
.gye-news-image:hover img,
.gye-soutenir-image:hover img {
    filter: brightness(0.94);
}


/* =========================================================
   IMAGES DES CARTES
========================================================= */

.gye-project-card img,
.gye-achievement-card img,
.gye-area-card img,
.gye-team-card img,
.gye-news-card img {
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}


.gye-project-card:hover img,
.gye-achievement-card:hover img,
.gye-area-card:hover img,
.gye-team-card:hover img,
.gye-news-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gye-project-image img,
    .gye-achievement-image img,
    .gye-area-image img,
    .gye-team-image img,
    .gye-news-image img,
    .gye-soutenir-image img {
        transition: none;
    }

}


/* =========================================================
   GALERIE PHOTOS
========================================================= */

.gye-gallery-page {
    background: #ffffff;
}

.gye-gallery-hero {
    padding: 90px 0 55px;
    background: #f7f8f6;
}

.gye-gallery-intro {
    max-width: 720px;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.gye-gallery-filter-section {
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
}

.gye-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gye-gallery-filter {
    border: 1px solid #d7d7d7;
    background: #ffffff;
    color: #1f6b45;
    padding: 10px 18px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .25s ease;
}

/* Bouton au survol et bouton actif */

.gye-gallery-filter:hover,
.gye-gallery-filter.active {
    background: #1f6b45;
    color: #ffffff;
    border-color: #1f6b45;
}

.gye-gallery-section {
    padding: 70px 0 90px;
}

.gye-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gye-gallery-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gye-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .10);
}

.gye-gallery-image-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
}

.gye-gallery-image-button img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .45s ease;
}

.gye-gallery-item:hover
.gye-gallery-image-button img {
    transform: scale(1.05);
}

.gye-gallery-caption {
    padding: 20px;
}

.gye-gallery-caption span {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gye-gallery-caption h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
}

.gye-gallery-item.is-hidden {
    display: none;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.gye-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, .92);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.gye-gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gye-gallery-lightbox-image {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gye-gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    border: 0;
    background: none;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}


/* =========================================================
   CTA
========================================================= */

.gye-gallery-cta {
    padding: 80px 0;
    background: #f3f5f2;
}

.gye-gallery-cta-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.gye-gallery-cta-content p:not(.gye-section-label) {
    max-width: 650px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.gye-gallery-cta-content .gye-hero-actions {
    justify-content: center;
    margin-top: 30px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .gye-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .gye-gallery-hero {
        padding: 65px 0 40px;
    }

    .gye-gallery-section {
        padding: 50px 0 65px;
    }

    .gye-gallery-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .gye-gallery-image-button img {
        height: 250px;
    }

    .gye-gallery-filters {
        justify-content: flex-start;
    }

    .gye-gallery-filter {
        padding: 9px 13px;
        font-size: 11px;
    }

    .gye-gallery-lightbox {
        padding: 20px;
    }

    .gye-gallery-lightbox-image {
        max-width: 94vw;
        max-height: 80vh;
    }

}


/* =========================================================
   BOUTONS DE FILTRE - GALERIE
========================================================= */

.gye-gallery-filter {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid #d7d7d7 !important;
    background: #ffffff !important;

    color: #1f6b45 !important;
    -webkit-text-fill-color: #1f6b45 !important;

    padding: 10px 18px !important;
    min-height: 40px !important;

    border-radius: 3px !important;

    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: .5px !important;
    text-indent: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;

    cursor: pointer !important;
    transition: all .25s ease !important;

    appearance: none !important;
    -webkit-appearance: none !important;
}


/* =========================================================
   SURVOL
========================================================= */

.gye-gallery-filter:hover {
    background: #1f6b45 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border-color: #1f6b45 !important;
}


/* =========================================================
   BOUTON ACTIF
========================================================= */

.gye-gallery-filter.active {
    background: #1f6b45 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border-color: #1f6b45 !important;
}