.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  width: 100%;
}

.reviews-track::-webkit-scrollbar {
  height: 8px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: #d0d7e4;
  border-radius: 999px;
}

.review-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 12px);
  min-width: 280px;
}

.review-card .service-item {
  height: 100%;
}

.reviews-nav {
  border: 1px solid #dbe2ee;
  background: #fff;
  color: #1f2937;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  line-height: 32px;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  flex: 0 0 36px;
}

.reviews-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 991px) {
  .review-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 575px) {
  .review-card {
    flex: 0 0 calc(100% - 2px);
  }
}
