.testimonials {
  background: var(--color-light, #fafafa);
}

.testimonials__header {
  text-align: center;
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem 0;
  transition: transform 1.2s ease;
  background: var(--color-light, #fafafa);
}
.testimonials__stars {
  height: 100px;
  transition: transform 1.2s ease;
}
.testimonials__stars img {
  max-height: 60px;
  margin: auto;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  transition: transform 1.2s ease;
}

.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial__text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.testimonial__author {
  font-weight: 600;
  color: var(--color-accent, #d49d4c);
}

@media (max-width: 767px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.slide-up {
  transform: translateY(calc(-80px));
}
.testimonials__header h2 {
  color: #d49d4c;
  font-size: clamp(24px, 4vh, 72px);
}
