/* Sezione: carosello infinito con box carta */
.carousel{position:relative;height:var(--car-h);overflow:hidden;background:#000}
.carousel__track{display:flex;height:100%;will-change:transform}
.carousel__track.is-anim{transition:transform var(--car-speed) ease}
.carousel__slide{flex:0 0 calc(100% / var(--car-per));height:100%;overflow:hidden}
.carousel__slide img{width:100%;height:100%!important;object-fit:cover}
.carousel__arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:4;width:3.2vw;min-width:36px;aspect-ratio:1;background:none;border:0;cursor:pointer;color:var(--ts-sand)}
.carousel__arrow svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:1.2}
.carousel__arrow--prev{left:1.5vw}
.carousel__arrow--next{right:1.5vw}
@media (max-width:767px){.carousel__arrow{width:10vw}}
