.sfs-slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.sfs-slide {
    position: absolute; /* This stacks them on top of each other */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the area without stretching */
    opacity: 0;
    transition: opacity var(--sfs-transition-speed, 1.5s) ease-in-out;
}

.sfs-slide.active {
    opacity: 1;
}
