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

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 56px;
}

.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 4px 18px rgba(0,80,140,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,80,140,0.14);
}

.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.7;
  flex: 1;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,80,140,0.09);
}

.testi-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0097a7, #1565c0);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
}

.testi-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
}

.testi-school {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

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