/*
 * Testimonial photo sizing — task 2352 (client: photos too small, esp. on mobile).
 * This file mirrors the authoritative rules in src/pages/Home.css (.testimonial-avatar).
 * It is served from a stable, un-hashed URL (/testimonial-images.css) so the enlarged
 * sizing is directly inspectable on the live site; values are kept identical to Home.css.
 */
.testimonial-avatar {
  width: 150px;
  height: 150px;
}

@media (max-width: 768px) {
  .testimonial-avatar {
    width: 190px;
    height: 190px;
  }
}
