/* Swiper container */
.image-strip {
    width: 100%;
    padding: 0 48px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Fixed-width slides create the peek effect */
.image-strip .swiper-slide {
    width: 280px !important;
    height: 360px;
    flex-shrink: 0;
}

/* Images fill the slide */
.image-strip .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 4px;
}

/* Navigation arrows */
.image-strip .swiper-button-prev,
.image-strip .swiper-button-next {
    color: #000;
}

.image-strip .swiper-button-prev {
    left: 0;
}

.image-strip .swiper-button-next {
    right: 0;
}

.image-strip .swiper-button-prev,
.image-strip .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Mobile */
@media ( max-width: 600px ) {
    .image-strip {
        padding: 0 40px;
    }
    .image-strip .swiper-slide {
        width: 85vw;
        height: auto;
    }
}