/**
 * FAQ Archive Page Header Fix
 * Sık Sorulan Sorular sayfası header padding düzeltmeleri
 */

/* FAQ Archive Page Header - Header'dan en az 50px uzaklık */
.faq-archive-wrapper .page-header {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    position: relative;
}

.faq-archive-wrapper .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.faq-archive-wrapper .page-header .container {
    position: relative;
    z-index: 2;
}

.faq-archive-wrapper .page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    text-align: center;
}

.faq-archive-wrapper .page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 0;
}

/* Breadcrumb section spacing */
.faq-archive-wrapper .breadcrumb-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.faq-archive-wrapper .breadcrumb {
    margin-bottom: 0;
}

.faq-archive-wrapper .breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-archive-wrapper .breadcrumb-item a:hover {
    color: #5a6fd8;
}

.faq-archive-wrapper .breadcrumb-item.active {
    color: #6c757d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-archive-wrapper .page-header {
        padding-top: 60px !important;
        padding-bottom: 30px !important;
    }
    
    .faq-archive-wrapper .page-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .faq-archive-wrapper .page-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-archive-wrapper .page-header {
        padding-top: 50px !important;
        padding-bottom: 25px !important;
    }
    
    .faq-archive-wrapper .page-title {
        font-size: 24px;
    }
    
    .faq-archive-wrapper .page-subtitle {
        font-size: 14px;
    }
}