/* ============================================
   ASSETS FILES - Tạo các file sau:
   ============================================

   /assets/css/style.css:
   ---------------------- */


.grs-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.grs-swiper {
    padding: 20px 50px 60px;
}

.grs-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grs-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.grs-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.grs-author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.grs-author-info {
    flex: 1;
}

.grs-author-name {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.grs-stars {
    display: flex;
    gap: 2px;
}

.grs-star {
    color: #ddd;
    font-size: 18px;
}

.grs-star.filled {
    color: #fbbc04;
}

.grs-review-content {
    flex: 1;
    margin-bottom: 16px;
}

.grs-review-content p {
    margin: 0;
    line-height: 1.6;
    color: #666;
    font-size: 14px;
}

.grs-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.grs-review-time {
    font-size: 12px;
    color: #999;
}

.grs-google-link {
    display: inline-flex;
    align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
    color: #4285f4;
}

.swiper-pagination-bullet-active {
    background: #4285f4;
}

@media (max-width: 768px) {
    .grs-swiper {
        padding: 20px 40px 60px;
    }
    
    .grs-review-card {
        padding: 16px;
    }
}
