.ir-review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: scale(1);
}

.ir-review-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.ir-review-avatar {
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-weight: bold; 
    color: #fff;
}

/* Color Modifiers */
.ir-review-avatar.ir-red { background-color: #ef4444; }   /* red */
.ir-review-avatar.ir-green { background-color: #22c55e; } /* green */
.ir-review-avatar.ir-blue { background-color: #3b82f6; }  /* blue */