/* ==========================================================================
   Hakkımızda Sayfası - Modüler Sayfa Stilleri
   ========================================================================== */

/* Kompakt Hakkımızda Hero Kartı (Kompakt İnce Görünüm) */
.gd-about-hero-compact {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0 !important;
}

.gd-about-hero-compact .gd-page-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gd-about-hero-compact .gd-page-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.gd-about-hero-compact .gd-page-subtitle {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Ana Sayfa Gövdesi — site.css .gd-page-body ana omurgasına bağlı */

/* Hero Başlık Kartı */
.gd-about-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 100%);
    border: 1px solid #4f46e5;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(55, 48, 163, 0.4);
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.gd-about-hero__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    animation: gd-about-shimmer 3.5s infinite;
    pointer-events: none;
}

@keyframes gd-about-shimmer {
    0%   { left: -100%; }
    50%  { left: 200%; }
    100% { left: 200%; }
}

.gd-about-hero__inner {
    position: relative;
    z-index: 1;
}

.gd-about-hero__title {
    color: #fcd34d;
    margin: 0 0 15px 0;
    font-size: 2.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gd-about-hero__desc {
    color: #e0e7ff;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

/* Ana İçerik Paneli */
.gd-about-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Giriş / Tanıtım Kutusu */
.gd-about-intro {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.03);
}

.gd-about-intro__text {
    font-size: 16px;
    color: #1e3a8a;
    line-height: 1.8;
    font-weight: 600;
    margin: 0;
}

/* Bölüm Başlıkları */
.gd-about-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
    position: relative;
}

.gd-about-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #3b82f6;
}

.gd-about-section-subtitle {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.gd-about-section-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 40px 0 30px 0;
}

/* Hikaye & Vizyon Kartları */
.gd-about-story-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
}

.gd-about-story-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s ease;
}

.gd-about-story-card:hover {
    border-color: #3b82f6;
}

.gd-about-story-card__title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gd-about-story-card__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Değerlerimiz Grid */
.gd-about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gd-about-value-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.gd-about-value-card__title {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gd-about-value-card__text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Akademik Kadro Grid */
.gd-about-authors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gd-about-author-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.gd-about-author-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.gd-about-author-header {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.gd-about-author-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #3b82f6;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.gd-about-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gd-about-author-meta {
    min-width: 0;
    flex: 1;
}

.gd-about-author-name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gd-about-author-title {
    font-size: 10.5px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.gd-about-author-bio {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 15px 0;
    flex: 1;
}

.gd-about-author-link {
    font-size: 11.5px;
    font-weight: 800;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

/* Güvence Kutusu */
.gd-about-trust-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gd-about-trust-box__title {
    font-size: 13px;
    font-weight: 800;
    color: #1e40af;
    margin: 0;
}

.gd-about-trust-box__text {
    font-size: 12px;
    color: #1e3a8a;
    line-height: 1.5;
    margin: 0;
}

.gd-about-trust-box__text a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.gd-about-trust-box__text a:hover {
    text-decoration: underline;
}

/* DB içeriği render alanı */
.gd-about-db-content {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
}

.gd-about-db-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .gd-about-hero {
        padding: 28px 20px;
    }

    .gd-about-hero__title {
        font-size: 1.6rem;
    }

    .gd-about-panel {
        padding: 20px 16px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.01), 0 4px 12px rgba(0, 0, 0, 0.02);
    }

    .gd-about-authors-grid {
        grid-template-columns: 1fr;
    }

    .gd-about-values-grid {
        grid-template-columns: 1fr;
    }
}
