.video-carousel {
  background-color: var(--bg-color);
  display: block;

  .swiper {
    padding-inline: 16px;

    @media screen and (width >=768px) {
      padding-inline: 40px;
    }

    @media screen and (width >=1280px) {
      padding-inline: 80px;
    }

    .swiper-wrapper {
      width: fit-content;
      margin-inline: auto;
    }

    .swiper-controlls {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 36px;
      gap: 4px;

      .swiper-pagination {
        position: static;
        width: fit-content;
        line-height: 1;
        --swiper-pagination-color: #F7941D;
        --swiper-pagination-bullet-inactive-color: #283A2D;
        --swiper-pagination-bullet-inactive-opacity: 1;
      }

      .swiper-button-prev,
      .swiper-button-next {
        margin: 0;
        position: static;
        height: 32px;
        width: 32px;
        --swiper-navigation-color: #283A2D;

        &.swiper-button-disabled {
          opacity: 1;
        }
      }
    }

    .swiper-slide {
      width: 274px;
    }
  }
}

.video-carousel__content {
  max-width: 1440px;
  margin-inline: auto;
  padding-top: var(--pt-mob);
  padding-bottom: var(--pb-mob);

  @media screen and (width >=768px) {
    padding-top: var(--pt-dsk);
    padding-bottom: var(--pb-dsk);
  }
}

.video-carousel__title {
  font-family: 'Baton Turbo', sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;

  padding-inline: 16px;

  @media screen and (width >=768px) {
    font-size: 48px;
    padding-inline: 40px;
    margin-bottom: 64px;
  }

  @media screen and (width >=1280px) {
    padding-inline: 80px;
  }

}