/* Styles dédiés au bloc Gallery Slider */
/*
.gallery-slider {
    position: relative;
    margin-bottom: 2rem;
}
.gallery-slider .swiper-wrapper {
    align-items: center;
}
.gallery-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.imgfit {
    overflow: hidden;
    border-radius: 1rem;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-paysage img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.img-portrait img {
    width: auto;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    max-height: 400px;
}
.img-square img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.swiper-controls {
    position: relative;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
} 
*/