/* Ana Kapsayıcı */
.gr-full-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* Üst Alan Düzeni */
.gr-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.gr-top-left {
    flex: 1.2;
}

.gr-top-right {
    flex: 1;
    padding-top: 30px;
}

/* Tipografi - Üst Alan */
.gr-subtitle {
    color: #4a4aef;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.gr-main-title {
    font-size: 42px;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.gr-button {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #111;
    border-radius: 50px;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}

.gr-button:hover {
    background-color: #111;
    color: #fff;
}

.gr-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Slider ve Kart Düzeni */
.gr-reviews-slider {
    padding: 20px 0 !important;
    overflow: hidden;
}

.swiper-slide {
    height: auto !important;
}

/* YORUM KARTLARI */
.gr-review-card {
    background-color: #F9FAFC;
    border-radius: 0; 
    padding: 40px 30px; 
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.gr-quote-icon {
    margin-bottom: 15px;
}

.gr-quote-icon svg {
    stroke: #4a4aef;
    fill: transparent;
}

.gr-text {
    color: #4a4a5a;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Müşteri Bilgileri */
.gr-author-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto; 
    padding-top: 15px;
}

/* KULLANICI RESMİ (Her Zaman Tam Yuvarlak) */
.gr-avatar {
    width: 60px !important;
    height: 60px !important;
    aspect-ratio: 1 / 1; /* Resmin kesinlikle kare oranlı işlenmesini sağlar */
    border-radius: 50% !important; /* Kusursuz daire formu için kilitli komut */
    object-fit: cover !important; /* Resim ezilmez, dairenin içini doldurur */
    margin-bottom: 10px;
    background-color: #fff;
    display: block;
    overflow: hidden; /* Dışa taşan pikselleri gizler */
}

.gr-name {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 0.5px;
}

.gr-title {
    font-size: 13px;
    color: #888;
    margin-top: 3px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .gr-top-section {
        flex-direction: column;
        gap: 20px;
    }
    .gr-top-right {
        padding-top: 0;
    }
    .gr-main-title {
        font-size: 32px;
    }
}