video-carousel {
  display: block;
}

.video-carousel__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.video-carousel__item.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.video-carousel__item video,
.video-carousel__item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000000;
}
