/* ============================================================
   1. STYLE GLOBAL & MOBILE (Par défaut : Couleur & Visible)
   ============================================================ */

/* On s'assure que le titre est beau et bien placé */
.card_report .eael-entry-title {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    color: white !important;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.5);
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    width: auto;
    
    /* Positionnement sur l'image (ajustez les -135px si besoin) */
    transform: translateY(-130px);
    transition: all 0.4s ease-in-out;
}

/* Sur mobile/tablette : Toujours en couleur et visible */
.card_report .eael-entry-media img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

.card_report .eael-entry-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0.1) !important; /* Voile léger permanent */
}

/* ============================================================
   2. ÉCRANS LARGES (Ordinateur : Noir et Blanc + Effet Hover)
   ============================================================ */

@media (min-width: 1025px) {
    
    /* État normal : On cache et on met en Noir et Blanc */
    .card_report .eael-entry-media img {
        filter: grayscale(100%) !important;
        transition: all 0.6s ease-in-out !important;
    }

    .card_report .eael-entry-overlay {
        opacity: 0 !important; /* Cache le voile noir */
        transition: all 0.4s ease-in-out !important;
    }

    .card_report .eael-entry-title {
        opacity: 0 !important; /* Cache le titre */
        transform: translateY(-110px) !important; /* Position basse */
        border-bottom-color: transparent !important;
    }

    /* État au SURVOL (Hover) */
    .card_report .eael-grid-post-holder:hover .eael-entry-media img {
        filter: grayscale(0%) !important;
        transform: scale(1.05); /* Petit zoom cinématique */
    }

    .card_report .eael-grid-post-holder:hover .eael-entry-overlay {
        opacity: 1 !important;
        background-color: rgba(0, 0, 0, 0.1) !important;
    }

    .card_report .eael-grid-post-holder:hover .eael-entry-title {
        opacity: 1 !important;
        transform: translateY(-150px) !important; /* Le titre monte */
        border-bottom-color: white !important;
        padding-bottom: 30px !important;
    }
}

/* ============================================================
   3. NAVIGATION (SYDNEY)
   ============================================================ */
.sydney-dropdown-link {
    font-family: 'Lato', sans-serif !important;
    letter-spacing: 2px;
    color: black !important;
    text-transform: uppercase;
    font-size: 13px;
}

.sydney-dropdown-link:hover {
    border-bottom: 2px solid black;
    padding-bottom: 5px;
}
