        article {
            grid-area: article;                         /* Nom de la zone GRILLE */
            display: flex;  
            font-size: 2.2vw;
            top: 55px;
            left: 10px;
            width: 100%;
            max-width: 95%;
            height: auto;
        }

        article figure .img-renouvele {
            top: 0px;
            left: 0px;
            padding: 0;
            margin: 0;
            width: 20vw;
            height: auto;
        }

        article figure figcaption{
                font-size: 2vw;
                top: 140px;
                left: 0;
        }

        article .txt-renouvele {                                   /* on règle le texte qui appartient à "article"  */
            margin: 0;
            padding: 0;
            text-align: justify;
            width: 80%;
            max-width: 60%;
            font-size: 1.8vw;
        }

        #box{
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(55,55,55,0.5);
            display: none;
        }
        #box:target{
            display: block;
        }
 
/*+++++++++++++++++++++++++++++++++++++++++++++++ */
        #modale {
            position: absolute;
            top: 20px;
            left: 5vw;
        }
        #modale .img-renouvele {
            width: 70vw;
            height: auto;
        }
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */

        #modale a {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 25px;
            background-color: white;
            text-decoration: none;
        } 
        #modale a:hover {
            background-color: yellow;
            color: red;
            font-size: 35px;
        }

/* ───────────────────────────────────────────────────────────────────────────────────────────────────── */
/*   ECRAN COMPRIS ENTRE  500 et 900 px */
/* ───────────────────────────────────────────────────────────────────────────────────────────────────── */
@media screen and (min-width: 501px) and  (max-width: 900px)  {

        #modale {
            position: absolute;
            top: 20px;
            left: 10px;
            left: 2vw;
        }
        #modale .img-renouvele {
            width: 95vw;
            height: auto;
        }

}
/* ───────────────────────────────────────────────────────────────────────────────────────────────────── */
/*   ECRAN INFERIEUR A 500px */
/* ───────────────────────────────────────────────────────────────────────────────────────────────────── */

@media screen and (max-width: 500px)  {

        #modale {
            position: absolute;
            top: 20px;
            left: 50px;
            left: 5vw;
        }
        #modale .img-renouvele {
            width: 90vw;
            height: auto;
        }


    }