.gr-6e85fa9e-wrapper {
    width: 100%;
    font-family: inherit;
}

.gr-6e85fa9e-heading {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gr-6e85fa9e-live-badge {
    background-color: #e0f2f1;
    color: #00897b;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: bold;
    animation: gr-6e85fa9e-pulse 2s infinite;
}

@keyframes gr-6e85fa9e-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.gr-6e85fa9e-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.gr-6e85fa9e-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.5s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.gr-6e85fa9e-card.refreshing {
    opacity: 0;
    transform: translateY(10px);
}

.gr-6e85fa9e-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.gr-6e85fa9e-author {
    font-weight: 600;
    font-size: 1.05rem;
    color: #333;
}

.gr-6e85fa9e-stars {
    color: #fbbc05;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.gr-6e85fa9e-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/* Responsive constraints */
@media (max-width: 1024px) {
    .gr-6e85fa9e-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .gr-6e85fa9e-grid {
        grid-template-columns: 1fr;
    }
}