.cards-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.cards-carousel {
  position: relative;
  width: 100%;
}

.cards-carousel .swiper-slide {
  flex-shrink: 0;
  display: flex;
  height: auto;
}

.cards-carousel .custom-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* arrows */

.swiper-arrows-wrapper {
  display: flex;
  gap: 12px;
}

.swiper-arrows-wrapper .swiper-button-next,
.swiper-arrows-wrapper .swiper-button-prev {
  position: static;
  width: 32px;
  height: 32px;
    border: 1px solid rgba(174, 177, 199, 0.10);
    background: #1F2028;
    color: #AEB1C7 !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin: 0;
  left: 0;
  right: 0;
}

.swiper-arrows-wrapper .swiper-button-next:hover,
.swiper-arrows-wrapper .swiper-button-prev:hover {
  color: #ffffff !important;
    border: 1px solid rgba(174, 177, 199, 0.25);
}

.swiper-arrows-wrapper .swiper-button-next::after,
.swiper-arrows-wrapper .swiper-button-prev::after {
  font-size: 12px;
  font-weight: 600;
}

/* pagination */
.swiper-pagination {
    position: static;
  margin-top: 16px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 1;
  margin: 0 4px;
}

.swiper-pagination-bullet-active {
  background: #c04afd;
}

.cards-carousel-wrapper .swiper-loading-placeholder {
  width: 100%;
  overflow: hidden;
}

.cards-carousel-wrapper .swiper-loading-placeholder .swiper-wrapper {
  display: flex;
  gap: 24px;
}

.cards-carousel-wrapper .swiper-loading-placeholder .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
}

.swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.swiper-wrapper {
  display: flex;
}



.swiper.cards-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(to left, rgb(22 23 31), rgb(22 23 31 / 0%));
}

.swiper.cards-carousel.has-fade-mask::after {
  opacity: 1;
}



