.testimonial-avatar-box-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 48px; /* Default size */
    height: 48px; /* Default size */
    border-radius: 9999px; /* Fully rounded */
    background: linear-gradient(135deg, oklch(50% 0.08 65) 0%, oklch(78% 0.1 80) 45%, oklch(88% 0.09 85) 55%, oklch(50% 0.08 65) 100%);
}

.avatar-letter-v2 {
    font-weight: 700;
    color: oklch(0.08 0.005 60); /* Default deep gold contrast text */
    line-height: 1;
    z-index: 2;
}

.shimmer-v2 {
    position: relative;
}

/* The white sliding light flare animation remains 100% active */
.shimmer-v2:after {
    content: "";
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 65%);
    animation: 3.5s ease-in-out infinite shimmer-effect;
    position: absolute;
    inset: 0;
    transform: translate(-100%);
}

@keyframes shimmer-effect {
    0% { transform: translate(-100%); }
    60%, 100% { transform: translate(100%); }
}
