.trustees-container {
    width: 100%;
    padding: 1.875rem 0;
}

.splide__list {
    transition-timing-function: linear !important; 
}

.splide__slide {
    width: 12.5rem;
    height: 9.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.875rem;
    flex-shrink: 0;
}

.splide__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    opacity: 0.8; 
    transition: opacity 0.3s;
}

.splide__slide:hover img {
    opacity: 1; 
}

@media (max-width: 640px) {
    .splide__slide {
        width: 35vw; 
        height: 26.25vw;
        margin-right: 4vw; 
    }
}
/* Explicit width/height attrs (added for CLS) need height:auto so the image
   keeps its aspect ratio when max-width caps the width on small screens. */
img.ui.image {
    height: auto;
}

/* Responsive 16:9 video (plain iframe; no jQuery/Semantic JS) */
.video-embed { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; overflow: hidden; border-radius: 4px; background: #000; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
