/* Galerie photo */

#galerie_photo {
    padding-bottom: var(--gap3);
}

#galerie_photo > * {
    margin:auto;
}

#galerie {
    max-width:1169px;
    width:calc( 100% - 30px );
    display:grid;
    grid-template-columns: repeat(4,1fr);
    row-gap:5px;
    column-gap:5px;
    margin-bottom:30px;
}

@media (max-width:600px) {
    #galerie {
        grid-template-columns: repeat(2,1fr);
    }
}

#galerie li:first-child {
    grid-area: 1 / 1 / 3 / 3;
}

@media (max-width:600px) {
    #galerie li:first-child {
        grid-area: unset;
    }
}

#galerie li, #galerie li img {
    width:100%;
    height:100%;
    aspect-ratio: 1/1;
    object-fit:cover;
}

.pswp__img {
    object-fit:contain;
    background-color:transparent!important;
}