.slide-banner {
  .slide-banner__container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 375/420;

    @media screen and (min-width: 1000px) {
      aspect-ratio: 1440/394;
    }
    
    .swiper-wrapper {
      display: flex;
      width: fit-content;
      position: relative;
      height: 100%;

      .slide {
        width: 100%;
        position: relative;

        .slide__image {
          width: 100%;
          height: 100%;
          position: relative;

          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }

        .slide__overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: #000;
        }

        .slide__content {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          padding: 20px;
          width: fit-content;
          display: flex;
          flex-direction: column;
          align-items: center;
          width: 100%;
          max-width: 88vw;

          .slide__title {
            font-family: var(--heading-font-family);
            font-weight: 600;
            font-size: 36px;
            line-height: 120%;
            text-align: center;
            color: var(--background-primary);
            margin-bottom: 70px;
            
            @media screen and (min-width: 1000px) {
              margin-bottom: 16px;
              font-size: 42px;
            }
          }

          .slide__subtitle {
            font-family: var(--heading-font-family);
            font-weight: 400;
            font-size: 18px;
            line-height: 120%;
            color: var(--background-primary);
            margin-bottom: 8px;
            text-align: center;
          }
        }
      }
    }

    .swiper-button-prev,
    .swiper-button-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .swiper-button-disabled,
    .swiper-button-lock {
      opacity: 0;
      visibility: hidden;
    }

    .swiper-button-prev {
      left: 12px;

      @media screen and (min-width: 1000px) {
        left: 58px;
      }
    }

    .swiper-button-next {
      right: 12px;

      @media screen and (min-width: 1000px) {
        right: 58px;
      }
    }
  }
}