.gr-16839-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gr-16839-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gr-16839-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.gr-16839-author {
    font-weight: 600;
    font-size: 16px;
    color: #1e293b;
}

.gr-16839-time {
    font-size: 12px;
    color: #64748b;
}

.gr-16839-rating {
    font-size: 18px;
}

.gr-16839-star {
    color: #fbbc04;
}

.gr-16839-star-empty {
    color: #cbd5e1;
}

.gr-16839-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .gr-16839-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gr-16839-grid {
        grid-template-columns: 1fr;
    }
}