.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; 
    }
}