.c__video-carousel {
  margin: 60px 0px;
}
.c__video-carousel .heading {
  color: #3C465A;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.c__video-carousel .description {
  font-size: 1rem;
  margin: 0 auto 2rem auto;
  max-width: 750px;
}
.c__video-carousel .iframe-wrapper {
  max-width: 768px;
  margin: 0 auto;
}
.c__video-carousel .iframe-wrapper .video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625 or 56.25%) */
  height: 0;
  overflow: hidden;
}
.c__video-carousel .iframe-wrapper .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.c__video-carousel .slick-carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.c__video-carousel .slick-carousel-wrapper::before,
.c__video-carousel .slick-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.c__video-carousel .slick-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.c__video-carousel .slick-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.c__video-carousel .slick-carousel {
  width: 100%;
}
.c__video-carousel .slick-carousel:not(.slick-initialized) {
  visibility: hidden;
}
.c__video-carousel .slick-carousel .slick-carousel-item {
  aspect-ratio: 16/9;
}
.c__video-carousel .slick-carousel .slick-carousel-item .image-wrapper {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
.c__video-carousel .slick-carousel .slick-carousel-item .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* or 'contain' depending on your need */
  display: block;
}
.c__video-carousel .slick-carousel .slick-slide {
  margin: 0 1rem;
  cursor: pointer;
}
.c__video-carousel .slick-carousel .slick-next, .c__video-carousel .slick-carousel .slick-prev {
  z-index: 99;
  top: calc(50% - 25px);
}
.c__video-carousel .slick-carousel .slick-next:before, .c__video-carousel .slick-carousel .slick-prev:before {
  content: "";
  background-image: url("../../../images/chevron-left.svg");
}
.c__video-carousel .slick-carousel .slick-prev {
  left: 0;
}
.c__video-carousel .slick-carousel .slick-next:before {
  transform: rotate(180deg);
}/*# sourceMappingURL=component-video_carousel.css.map */