.grs-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    max-width: 600px;
    @media (max-width: 767px) {
        padding: 8px 2px;
    }
    .grs-left {
        color: #1f2937;
        font-weight: 600;
        font-size: 24px;
        line-height: 24px;
        letter-spacing: -1.2px;
        @media (max-width: 767px) {
            font-size: 16px;
            line-height: 16px;
        }
    }
    .grs-center {
        flex: 1;
        text-align: center;
        .grs-stars {
            display: flex;
            justify-content: center;
            gap: 1px;
            margin-bottom: 0px;
            .grs-star {
                transition: color 0.2s ease;
                color: #ddd;
                font-size: 10px;
                line-height: 10px;
            }
            .grs-star.filled {
                color: #fbbc04;
            }
        }
        .grs-text {
            color: #6b7280;
            font-size: 12px;
            line-height: 12px;
            letter-spacing: -0.75px;
            @media (max-width: 767px) {
                font-size: 10px;
                line-height: 10px;
            }
            .hide-on-mobile {
                @media (max-width: 767px) {
                    display: none;
                }
            }
        }
    }
    .grs-right {
        img {
            width: 30px;
            height: auto;
            @media (max-width: 767px) {
                width: 20px;
            }
        }
    }
}
