.testimonials {
  padding: 80px 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  padding: 1.8rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(10, 22, 40, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-card p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.8;
}

.testimonial-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.testimonial-card span {
  color: #6a7a90;
  font-size: 0.88rem;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
