.testimonials {
  padding: 60px 5vw;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #2563eb); 
  color: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.testimonials .subtitle {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Bento-style tweaks */
.testimonial-card.wide {
  grid-column: span 2;
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.4;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2563eb;
  margin-top: auto;
}
