.rs-carousel {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.grc-carousel {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}


.grc-review {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    margin: 0 10px;
    text-align: center;
}

.grc-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.grc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.grc-stars {
    color: #ffc107;
    font-size: 16px;
}

.grc-review-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.grc-read-more {
    color: #1976d2;
    text-decoration: none;
    font-size: 12px;
}

.grc-date {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

.grc-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    grid-template-rows: repeat(var(--rows), auto);
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.grc-grid .grc-review {
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

/* Slick Carousel */
.slick-slide {
    padding: 10px;
}
