.grl-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

.grl-header-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.grl-avg-rating {
    font-size: 24px;
    font-weight: bold;
    color: #1e293b;
}

.grl-summary-stars {
    color: #f59e0b;
    letter-spacing: 2px;
}

.grl-total-count {
    color: #64748b;
    font-size: 14px;
}

.grl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.grl-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.grl-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.grl-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.grl-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #cbd5e1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.grl-author-name {
    margin: 0 0 2px 0;
    font-size: 16px;
    color: #1e293b;
    font-weight: 600;
}

.grl-date {
    font-size: 12px;
    color: #94a3b8;
}

.grl-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.grl-text {
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.grl-google-badge {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}