/* Customers page — 10 clearly-marked placeholder cards, per DESIGN-REFERENCE.md §9.4.
   Dashed border + generic avatar + bracket text = obviously not real, on purpose.
   Never style these to look like genuine testimonials. */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--surface-white);
  border: 1px dashed #CBD5E1;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__quote {
  font-style: italic;
  color: var(--text-color-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-color-muted);
  margin: 0;
}

@media (max-width: 1023px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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