.testimonial-slider-container {
  position: relative;
  width: 100%;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease-in-out;
  width: calc(100% + 24px * 2);
}

.testimonial-slide {
  flex-shrink: 0;
  display: flex;
}

/* Móvil: 1 reseña (100%) */
.testimonial-slide {
  width: 100%;
}

/* Tablet md (768px+): 2 reseñas (50% - gap) */
@media (min-width: 768px) {
  .testimonial-slide {
    width: calc(50% - 12px);
  }
}

/* Desktop lg (1024px+): 3 reseñas (33.333% - gap) */
@media (min-width: 1024px) {
  .testimonial-slide {
    width: calc(33.333% - 16px);
  }
}

/* Dots indicator styles */
.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dot.active {
  background: rgba(255, 255, 255, 0.9);
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
