/* ========================================
   PAGE PRESSE
======================================== */


/* ========================================
   SÉLECTION — 3 ARTICLES MIS EN AVANT
======================================== */

.press-featured {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;

    margin-bottom: 30px;
}


/* ========================================
   ARTICLE MIS EN AVANT
======================================== */

.press-featured-item {
    min-width: 0;

    display: flex;
    flex-direction: column;

    padding-top: 12px;

    border-top:
        1px solid rgba(255, 255, 255, 0.65);

    color: #fff;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


/* ========================================
   ZONE LOGO

   Chaque média dispose de la même zone.
======================================== */

.press-featured-logo {
    width: 100%;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin-bottom: 18px;

    overflow: hidden;
}


/* ========================================
   LOGOS

   Les couleurs sont supprimées,
   mais les noirs, blancs et gris
   d'origine sont conservés.
======================================== */

.press-featured-logo img {
    display: block;

    width: 92%;
    height: 62px;

    object-fit: contain;
    object-position: left center;

    filter: grayscale(1);

    opacity: 1;

    transition:
        transform 0.3s ease;
}


/* ========================================
   TITRE DE L'ARTICLE
======================================== */

.press-featured-title {
    flex: 1;

    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.08;

    font-weight: 700;
}


/* ========================================
   DATE
======================================== */

.press-featured-date {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;
    line-height: 1;

    font-weight: 700;
}


/* ========================================
   SURVOL — ORDINATEUR
======================================== */

@media (hover: hover) and (pointer: fine) {

    .press-featured-item:hover {
        transform: translateY(-3px);

        border-color:
            rgba(255, 255, 255, 1);
    }


    .press-featured-item:hover
    .press-featured-logo img {
        transform: scale(1.025);
    }

}


/* ========================================
   VISUEL FINAL — IMG03

   La photo se trouve maintenant
   après toutes les archives presse.
======================================== */

.press-hero {
    width: 100%;

    margin-top: 42px;
    margin-bottom: 0;

    overflow: hidden;
}


.press-hero img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {


    /* ----------------------------------------
       SÉLECTION
    ---------------------------------------- */

    .press-featured {
        grid-template-columns: 1fr;

        gap: 32px;

        margin-bottom: 28px;
    }


    /* ----------------------------------------
       ARTICLE
    ---------------------------------------- */

    .press-featured-item {
        padding-top: 10px;
    }


    /* ----------------------------------------
       LOGO
    ---------------------------------------- */

    .press-featured-logo {
        height: 82px;

        margin-bottom: 12px;
    }


    .press-featured-logo img {
        width: auto;
        height: 55px;

        max-width: 75%;

        object-position: left center;
    }


    /* ----------------------------------------
       TITRE
    ---------------------------------------- */

    .press-featured-title {
        font-size: 19px;
    }


    /* ----------------------------------------
       DATE
    ---------------------------------------- */

    .press-featured-date {
        margin-top: 10px;

        font-size: 14px;
    }


    /* ----------------------------------------
       PHOTO FINALE
    ---------------------------------------- */

    .press-hero {
        margin-top: 30px;
        margin-bottom: 0;
    }

}

/* ========================================
   CRÉDIT PHOTO
   MÊME TRAITEMENT QUE À PROPOS
======================================== */

.press-photo-credit {
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1;

    text-align: right;
}
