/*** DOSSIER IMAGE ***/
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');


.dossier-section{
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
}

.dossier-article{
    border:1px solid #ccc;
    border-radius:8px;
    margin:8px;
    box-shadow:1px 1px 5px rgba(50,50,50,0.3);
    transition: all .2s ease-in-out;
    background-color: rgb(255,255,255) !important;
}

.dossier-article a{
    font-size:16px;
    font-family: 'Exo', sans-serif;
    color:#595a5c !important;
    text-decoration:none;
    border-bottom:none !important;
}

.dossier-image{
    min-height:148px;
    border-radius:0px 0px 8px 8px;
    background-size: cover;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.dossier-titre{
    display: table-cell; /* comportement visuel de cellule */
    vertical-align: middle;
    width:260px;
    height:150px;
    text-align:center;
    padding:4px;
}


/******** RESPONSIVE *******/

/*** DESKTOP ***/
@media screen and (min-width: 1025px){
    .dossier-article{
        width:260px;
        height:300px;
    }
    .dossier-titre{
        font-size:1.5em;
    }
}/*mediadektop*/




/*** TABLETTE ***/
@media screen and (min-width: 769px) and (max-width:1024px){
}/*mediapad*/




/*** PHONE ***/
@media screen and (min-width: 360px) and (max-width: 768px) {
    .dossier-article{
        width:200px;
        /*height:250px;*/
    }
    .dossier-titre{
        font-size:1.2em;
    }
}/*mediaphone*/








