/* Testimonial Initials Styles */

.author-avatar .initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #497EE6;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
}

/* Hide the original images */
.author-avatar img {
    display: none;
}

/* Ensure the avatar maintains its circular shape */
.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.25rem;
    border: 3px solid #497EE6; /* Matching the blue theme */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f5ff; /* Light blue background */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .author-avatar {
        width: 48px;
        height: 48px;
    }
    
    .author-avatar .initials {
        font-size: 1.1rem;
    }
}
