/* Карусель отзывов на главной */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.reviews-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.reviews-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.reviews-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray2);
  border: none;
  cursor: pointer;
  padding: 0;
}

.reviews-carousel-dot.active {
  background: var(--blue);
}