/* Container Utama */
.mgrs-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 50px; /* Ruang untuk panah navigasi */
}

/* Kartu Review */
.mgrs-review-card {
    background-color: #f5f6f8;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 250px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header (Avatar & Info) */
.mgrs-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mgrs-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.mgrs-user-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.mgrs-date {
    font-size: 13px;
    color: #888;
}

/* Rating Stars & Badge */
.mgrs-rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mgrs-stars {
    display: flex;
    gap: 2px;
    margin-right: 8px;
}

.mgrs-star-filled {
    color: #ffc107; /* Warna kuning bintang */
    font-size: 18px;
}

.mgrs-star-empty {
    color: #ddd;
    font-size: 18px;
}

.mgrs-verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Teks Review (Dibatasi 4 baris) */
.mgrs-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    margin: 0 0 12px 0;
    /* CSS Line Clamp untuk memotong teks panjang */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Link Read More */
.mgrs-read-more {
    font-size: 14px;
    color: #888;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
}

.mgrs-read-more:hover {
    color: #555;
    text-decoration: underline;
}

/* Kustomisasi Navigasi Swiper (Panah) */
.mgrs-nav-prev,
.mgrs-nav-next {
    color: #333;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mgrs-nav-prev:after,
.mgrs-nav-next:after {
    font-size: 16px;
    font-weight: bold;
}

.mgrs-nav-prev {
    left: 0;
}

.mgrs-nav-next {
    right: 0;
}