.mentor-carousel {
  position: relative;
}

.mentor-carousel__viewport {
  overflow: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mentor-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.mentor-carousel__track {
  display: flex;
  gap: 16px;
  padding: 4px;
}

.mentor-carousel__slide {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 82%;
}

@media (min-width: 640px) {
  .mentor-carousel__slide {
    width: 48%;
  }
}

@media (min-width: 1024px) {
  .mentor-carousel__slide {
    width: 32%;
  }
}

.mentor-carousel__nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mentor-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(238, 241, 246, 1);
  background: #ffffff;
  color: #283979;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.mentor-carousel__btn:hover {
  background: rgba(247, 249, 252, 1);
  transform: translateY(-1px);
}

.mentor-carousel__btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}



/* تخصيص سلايدر شركاء النجاح (العملاء) */

/* الجوال: صورتين (خصم مسافة واحدة 16px مقسومة على 2) */
.mentor-carousel__slide.clients-slide {
  width: calc(50% - 8px); 
}

/* الشاشات المتوسطة: 3 صور (خصم مسافتين 32px مقسومة على 3) */
@media (min-width: 640px) {
  .mentor-carousel__slide.clients-slide {
    width: calc(33.333% - 10.66px); 
  }
}

/* الشاشات الكبيرة: 6 صور (خصم 5 مسافات 80px مقسومة على 6) */
@media (min-width: 1024px) {
  .mentor-carousel__slide.clients-slide {
    width: calc(16.666% - 13.33px); 
  }
}
