.reviews-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  gap: 30px;
  animation: scrollReviews 40s linear infinite;
}

.review-card {
  flex: 0 0 320px;
  background: #f1f1f1;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: center;
  color: #000;
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.user-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.user-info h4 {
  font-size: 18px;
  margin: 5px 0;
  color: #000;
}

.stars {
  color: #fbbc04;
  margin-bottom: 10px;
  font-size: 18px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
