.gallery-swiper {
    overflow: hidden;
  }
  .gallery-swiper-container {
    margin: 0 -10px;

    @media (min-width: 1376px) {
      margin: 0 -0.5%;
    }

    .swiper-wrapper {
      height: auto;
    }
    .swiper-slide {
      @media (min-width: 1376px) {
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transition-property: transform, transform-origin;
        transform-origin: top;
        padding: 0 1%;
        width: 50%;

        &.swiper-slide-active {
          & ~ * {
            transform: scale(0.5) translateX(-50%);
          }
          & + * + * {
            transform: scale(0.5) translateX(-150%);
          }
        }
        &:has(~ .swiper-slide-active) {
          transform: scale(0.5) translateX(50%);
        }
        &:has(+ * + .swiper-slide-active) {
          transform: scale(0.5) translateX(150%);
        }
      }
      @media not all and (min-width: 1376px) {
        width: 50%;
        padding: 0 10px;
      }
      @media not all and (min-width: 1200px) {
        width: 65%;
      }
      @media not all and (min-width: 1024px) {
        width: 80%;
      }
      @media not all and (min-width: 768px) {
        width: 85%;
      }
      @media not all and (min-width: 576px) {
        width: 100%;
      }

      img {
        width: 100%;
        aspect-ratio: 930 / 600;
        object-fit: cover;
      }
    }
  }
  .gallery-swiper-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;

    @media not all and (min-width: 768px) {
      gap: 20px;
    }
  }
  .gallery-swiper-prev,
  .gallery-swiper-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #282828;
    font-size: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer;

    svg {
      width: 1em;
      height: 1em;
      fill: currentColor;
    }

    @media not all and (min-width: 768px) {
      font-size: 20px;
    }
  }
  .swiper-slide{
    opacity: 0.5;
  }
  .swiper-slide-active{
    opacity: 1;
  }
  .gallery-swiper-container{
    text-align: center;
    margin-top: 25px;
    font-size: 32px;
  }