.collection-slider {
  overflow: hidden;

  .collection-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    flex-direction: column;
    margin-bottom: 24px;

    @media screen and (min-width: 1000px) {
      flex-direction: row;
    }
  }

  .collection-slider__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 140%;
    text-align: center;
    color: var(--text-color-1);
    font-family: var(--heading-font-family);

    @media screen and (min-width: 1000px) {
      font-size: 36px;
    }
  }

  .slider-container {
    position: relative;

    .swiper-button-prev {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%) rotate(180deg);

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

    .swiper-button-next {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);

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

    .swiper-button-disabled {
      opacity: 0;
    }
  }

  .collection-slider__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;

    @media screen and (min-width: 1000px) {
      padding: 22px 0;
    }

    .swiper-slide {
      padding: 0;
      list-style: none;
    }

    .collection-slider__item {
      width: 102px;
      display: flex;
      flex-direction: column;
      gap: 10px;

      @media screen and (min-width: 1000px) {
        gap: 16px;
        width: 132px;
      }
      
      .collection-slider__item-image {
        aspect-ratio: 1/1;
        width: 100%;
        border-radius: 50%;
        overflow: hidden;

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

      .collection-slider__item-title {
        font-size: 14px;
        line-height: 140%;
        text-align: center;
      }
    }
  }
}