/* Dedicated styles for testimonial avatars (initials-based) */

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(120% 120% at 30% 20%, #fcfcfc 0%, #f2f4f8 60%, #e6eaf0 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial__avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: inherit;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0b1220;
  background: transparent;
  user-select: none;
}

/* Small screens: keep size but reduce font slightly for balance */
@media (max-width: 480px) {
  .testimonial__avatar-initials {
    font-size: 18px;
  }
}
