.custom-products .swiper-wrapper {
  align-items: center;
}

@media (max-width: 768px) {
  .custom-products .stories-container-wrapper {
    padding-inline: 24px;
  }
}

.custom-products .custom-products-wrapper {
  padding-block: 30px;
}

@media (min-width: 768px) {
  .custom-products .custom-products-wrapper {
    overflow-y: visible;
  }
}

@media (min-width: 768px) {
  .custom-products .story-wrapper-parent {
    /* height: clamp(20.875rem, 14.9056rem + 25.4694vw, 40.375rem); */
    display: flex;
    align-items: center;
  }
}

.custom-products .story-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  height: 400px;
  width: 100%;
}

@media (min-width: 768px) {
  .custom-products .story-wrapper {
    transition: transform 0.5s ease;
  }
  .custom-products .story-wrapper:hover {
    transform: scale(1.2);
  }
  .custom-products .content-container {
    opacity: 0;
  }
  .custom-products .story-wrapper:hover .content-container {
    opacity: 1;
  }
}

.custom-products .swiper-slide.z-10 {
  z-index: 10;
}

.custom-products .banner-background {
  position: absolute;
  inset: 0;
}

.custom-products .banner-bg-img,
.custom-products .banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-products .content-container {
  position: relative;
  z-index: 5;
  transition: opacity 0.5s ease;
  text-align: center;
}

.custom-products .product-name {
  color: var(--product-name-color);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.dark .custom-products .product-name {
  color: var(--product-name-color-dark);
}

.custom-products .product-button {
  padding-block: 10px;
  min-width: 170px;
}