.testimonials-section { padding: 56px 5vw 80px; background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px 22px;
  box-shadow: 0 4px 16px rgba(0,80,140,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid transparent;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.testimonial-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(0,151,167,0.13);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
}

.testimonial-footer {
  border-top: 1px solid rgba(0,120,180,0.1);
  padding-top: 14px;
}

.testimonial-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 3px;
}

.testimonial-school {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
}

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