/* ── FOTOGALLERY SLIDER ── */
#fotogallery {
    padding-top: 0rem;
    padding-bottom: 0;
    overflow: hidden;
}
.gallery-slider-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
    margin-top: 0rem;
}
.gallery-track {
    display: flex;
    /* desktop/tablet: 4 col → 12 items × 25vw */
    width: calc(25vw * 12);
    animation: gallery-scroll 22s linear infinite;
    will-change: transform;
}
.gallery-track:hover {
    animation-play-state: paused;
}
.gallery-item {
    flex: 0 0 25vw;
    width: 25vw;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
@keyframes gallery-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-25vw * 6)); }
}

/* mobile: 2 col → 12 items × 50vw */
@media (max-width: 767.98px) {
    .gallery-track {
        width: calc(50vw * 12);
        animation-name: gallery-scroll-mobile;
        animation-duration: 18s;
    }
    .gallery-item {
        flex: 0 0 50vw;
        width: 50vw;
    }
    @keyframes gallery-scroll-mobile {
        0%   { transform: translateX(0); }
        100% { transform: translateX(calc(-50vw * 6)); }
    }
}
