.collection-promo__wrap {
  display: grid;
  background-color: #F0EEE1;
  padding-bottom: 40px;

  @media(min-width: 768px) {
    align-items: center;
    grid-template-columns: 47.2% 52.8%;
    padding: 40px 0;
  }
}

.collection-promo-wrap--image-right {
  @media(min-width: 768px) {
    .collection-promo__image {
      order: 2;
    }

    .collection-promo__content {
      order: 1;
    }
  }
}

.collection-promo__image {
  height: 100%;
}

.collection-promo__image-desktop {
  display: none;

  @media(min-width: 768px) {
    display: block;
    height: 100%;
  }

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

.collection-promo__image-mobile {
  text-align: center;

  @media(min-width: 768px) {
    display: none;
  }
}

.collection-promo__content-items-viewport {
  overflow: hidden;
  margin-bottom: 40px;
  padding: 0 40px;

  @media(min-width: 768px) {
    margin-bottom: 55px;
    padding: 0;
  }
}

.collection-promo__content {
  text-align: center;
  overflow: hidden;

  .btn-primary {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: unset;

    svg {
      width: 20px;
      height: 20px;
    }
  }
}

.collection-promo__content-items {
  display: grid;
  gap: 40px;

  @media(max-width: 767px) {
    display: flex;
    touch-action: pan-y pinch-zoom;
    margin-left: -40px;
    gap: unset;
  }

  @media(min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }

  @media(min-width: 1024px) {
    grid-template-columns: repeat(3, 1fr);
  }

  a {
    text-decoration: none;
  }

  h2 {
    font-size: 12px;
    margin-bottom: 0;
  }

  h3 {
    text-transform: unset;
    margin-bottom: 0;

  }

  .price {
    font-size: 12px;
  }
}

.collection-promo__item {
  display: flex;
  flex-direction: column;
   @media(max-width: 767px) {
      transform: translate3d(0, 0, 0);
      flex: 0 0 240px;
      min-width: 0;
      padding-left: 40px;
   }
}