.carousel-video-gallery-block {
--carousel-video-gallery-slide-radius: 0;
--carousel-video-gallery-aspect-ratio: 9 / 16;
--carousel-video-gallery-max-width: 28rem;

--vin-carousel-controls-gap: 1rem;
--vin-carousel-controls-margin-top: 2rem;
--vin-carousel-pagination-gap: 0.75rem;
--vin-carousel-focus-outline: 2px solid currentColor;
--vin-carousel-nav-size: 3rem;

overflow: hidden;
}

.carousel-video-gallery {
width: 100%;
max-width: 1100px;
margin: 0 auto;
}

.carousel-video-gallery__swiper {
overflow: hidden;
}

.carousel-video-gallery__wrapper {
align-items: stretch;
}

.carousel-video-gallery__slide {
height: auto;
}

.carousel-video-gallery__media {
width: 100%;
}

.carousel-video-gallery__embed {
position: relative;
width: 100%;
aspect-ratio: var(--carousel-video-gallery-aspect-ratio);
max-width: var(--carousel-video-gallery-max-width);
margin: 0 auto;
overflow: hidden;
border-radius: var(--carousel-video-gallery-slide-radius);
background: #000;
}

.carousel-video-gallery__embed iframe,
.carousel-video-gallery__embed video,
.carousel-video-gallery__embed embed,
.carousel-video-gallery__embed object {
display: block;
width: 100%;
height: 100%;
border: 0;
}

.carousel-video-gallery__controls {
margin-top: 1.5rem;
}

@media (min-width: 782px) {
    .carousel-video-gallery__swiper {
    overflow: hidden;
    }

    .carousel-video-gallery__embed {
    max-width: none;
    }
}