.image-carousel-wrapper{
    --large-image: 300px;
    --small-image: 350px;
    position: relative;
}
.image-carousel-wrapper .content-wrapper{
    max-width: var(--container-size);
}
.image-carousel-wrapper__content{
    width: 100%;
    max-width: 720px;
    margin: 0 auto
    text-align: center;

    /* text-wrap: balance; */
}
.image-carousel-wrapper .swiper-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 2;
}

.image-carousel-wrapper .swiper-slide{
    overflow: hidden;
}
.image-carousel-wrapper .swiper-slide img{
    height: var(--large-image);
    width: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.image-carousel-wrapper__content .module.cta{
    display: block;
    margin-top: 45px;
}
.image-carousel-wrapper .swiper-wrapper{
  transition-timing-function: linear;
}
.image-carousel-wrapper .swiper-slide:nth-child(2n) img{
  height: var(--small-image);
  width: 100%;
  object-fit: cover;
}
.image-carousel-wrapper .image-carousel{
    margin-top: 52px;
}

@media only screen and (min-width: 768px){
    .image-carousel-wrapper{
        --large-image: 527px;
        --small-image: 450px;
        position: relative;
    }
}