/*-----------------------
    Galerie
-----------------------*/

.galerie-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
    gap: 15px;
}
.galerie-flex > div {
    flex: 1 1 200px;
}

.galerie-1 {
    height: 250px;
    overflow: hidden;
}
.galerie-2 {
    flex-grow: 1;
    flex-basis: auto;
}
.img-galerie, .img-galerie-1, .img-galerie-2 {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: transform .3s ease;
}