.rg-section {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
}
.rg-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.rg-container {
    column-count: 3;
    column-gap: 24px;
    width: 100%;
}
.rg-card {
    background-color: #fcfcfc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    break-inside: avoid;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.rg-card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}
.rg-card-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}
.rg-card-meta {
    font-size: 0.85rem;
    color: #666;
    margin-top: 2px;
}
.rg-card-stars {
    font-size: 1.1rem;
    color: #EABE12;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.rg-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

@media (max-width: 991px) {
    .rg-container {
        column-count: 2;
    }
}
@media (max-width: 767px) {
    .rg-container {
        column-count: 1;
    }
    .rg-title {
        font-size: 2rem;
    }
}
