.srg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.srg-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.srg-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.srg-avatar-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.srg-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}

.srg-meta {
    display: flex;
    flex-direction: column;
}

.srg-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.srg-product {
    font-size: 12px;
}

.srg-stars-row {
    margin-bottom: 12px;
}

.srg-stars {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}

.srg-body {
    flex-grow: 1;
}

.srg-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Hover Animations */
.srg-hover-translate:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.srg-hover-scale:hover {
    transform: scale(1.02);
}
