/* Testimonials Section */
.testimonials-section {
  padding: var(--space-20) 0;
  background: var(--color-gray-50);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.testimonials-header__title {
  font-size: var(--text-3xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
}

.testimonial-card__stars {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
}

.testimonial-card__text {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: var(--space-6);
}

.testimonial-card__name {
  font-weight: var(--font-bold);
}

.testimonial-card__role {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}
