.sss-slideshow-wrapper {
    width: 95%;
    max-width: 100%;
    margin: 0 auto 30px;
}

/* Il contenitore ora avrà altezza dinamica via JS */
.sss-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Le slide sono sovrapposte e sfumano con opacity */
.sss-slide {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.sss-slide.sss-active {
    opacity: 1;
    z-index: 2;
}

.sss-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* NON taglia le immagini */
}

/* Box testo link */
.sss-slide-caption {
    position: absolute;
    right: 5%;
    bottom: 5%;
    padding: 10px 15px;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
}

.sss-slide-caption a {
    color: #000000;
    text-decoration: none;
}
