/* ==========================================================================
   Testimonial / graduate spotlight card
   A11Y: uses <figure><blockquote> + <figcaption> for correct quote semantics.
   ========================================================================== */
.testimonial {
  display: grid;
  gap: var(--space-3);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  margin: 0;
}
@media (min-width: 640px) {
  .testimonial--media { grid-template-columns: 96px 1fr; align-items: start; }
}
.testimonial__avatar {
  width: 96px; height: 96px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-md);
}
.testimonial__quote {
  font-family: var(--font-headline);
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
  color: var(--color-primary);
}
.testimonial__quote::before { content: '\201C'; color: var(--color-orange); margin-right: 0.1em; }
.testimonial__quote::after { content: '\201D'; color: var(--color-orange); margin-left: 0.05em; }
.testimonial__cite {
  margin-top: var(--space-2);
  font-style: normal;
  font-size: var(--text-sm);
}
.testimonial__cite strong { display: block; color: var(--color-primary); }
.testimonial__cite span { color: var(--color-text-muted); }

/* Pull-quote band on navy */
.quote-band { background: var(--color-primary); color: #ffffff; }
.quote-band blockquote {
  font-family: var(--font-headline);
  font-size: var(--text-3xl);
  line-height: var(--leading-snug);
  text-align: center;
  max-width: 24ch;
  margin-inline: auto;
}
.quote-band figcaption { text-align: center; margin-top: var(--space-3); color: var(--color-text-on-dark-muted); }
/* NOTE: the .stat / .stat__num / .stat__label styles moved to sections.css
   (they're used in section stat rows, e.g. the home page, which doesn't load
   this testimonial component). */
