/**
 * YayReviews - Shared reviewer-avatar styling.
 *
 * Single stylesheet for avatars rendered by AvatarService (PHP) and
 * YayRevAvatarRender (JS). Holds shape/behavior only — NO dimensions: size is
 * consumer-controlled and applied inline per call. The initials background is
 * themeable via --yayrev-avatar-bg.
 */
.yayrev-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.yayrev-avatar--initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yayrev-avatar-bg, #6366f1);
    color: #fff;
    font-weight: 600;
    line-height: 1;
}
