:root {
            --primary-burgundy: #8B2C2D;
            --dark-burgundy: #5e1e1f;
            --primary-gold: #C5A028;
            --light-bg: #fef9f0;
        }
        
        /* AOS kaynaklı opacity sorununu düzelt */
        [data-aos] {
            opacity: 1 !important;
            transform: none !important;
        }
        
        .page-header {
            background: linear-gradient(135deg, var(--primary-burgundy) 0%, #2d1516 100%);
            padding: 2rem 0;
            margin-bottom: 2rem;
        }
        .page-header h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        /* Haber Detay Kartı */
        .news-detail-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .news-main-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }
        .news-detail-content {
            padding: 2rem;
        }
        .news-category-badge {
            display: inline-block;
            background: var(--primary-gold);
            color: #2d2d2d;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* Başlık ve Meta Alanı */
        .news-header-wrapper {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f0e5d5;
        }
        .news-detail-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-burgundy);
            margin-bottom: 0.75rem;
        }
        .news-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .news-meta-left {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .news-meta-item {
            font-size: 0.85rem;
            color: #888;
        }
        .news-meta-item i {
            color: var(--primary-gold);
            margin-right: 6px;
        }
        .text-size-controls {
            display: flex;
            gap: 0.5rem;
            background: #f8f5ef;
            padding: 0.3rem;
            border-radius: 50px;
            flex-shrink: 0;
        }
        .text-size-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: none;
            background: white;
            color: var(--primary-burgundy);
            font-weight: bold;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 0.9rem;
        }
        .text-size-btn:hover {
            background: var(--primary-gold);
            color: #2d2d2d;
            transform: scale(1.05);
        }
        .print-btn {
            background: white;
            color: var(--primary-burgundy);
        }
        .print-btn:hover {
            background: var(--primary-gold);
            color: #2d2d2d;
        }
        
        .news-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #4a4a4a;
        }
        .news-description h2, .news-description h3 {
            color: var(--primary-burgundy);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }
        .news-description p {
            margin-bottom: 1rem;
        }
        .news-description img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 1rem 0;
        }
        
        /* Galeri Bölümü - 3'lü grid */
        .gallery-section {
            margin-top: 2rem;
        }
        .gallery-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .gallery-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 3px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4 / 3;
            transition: all 0.4s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        
        /* Dökümanlar Bölümü */
        .documents-section {
            margin-top: 2rem;
        }
        .documents-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .documents-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 3px;
        }
        .documents-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .document-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background: #f8f5ef;
            border-radius: 20px;
            transition: all 0.3s;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .document-item:hover {
            background: #fef9e8;
            transform: translateX(5px);
        }
        .document-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .document-icon {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .document-icon i {
            font-size: 1.3rem;
            color: var(--primary-gold);
        }
        .document-details h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 0.2rem;
        }
        .document-details p {
            font-size: 0.7rem;
            color: #888;
            margin: 0;
        }
        .download-link {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
            border: none;
            border-radius: 40px;
            padding: 0.5rem 1.2rem;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .download-link:hover {
            background: var(--primary-gold);
            color: #2d2d2d;
            transform: translateY(-2px);
        }
        
        /* Paylaşım Butonları - İçerik Altında */
        .share-section {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f0e5d5;
        }
        .share-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-burgundy);
            margin-bottom: 0.8rem;
        }
        .share-buttons {
            display: flex;
            gap: 0.8rem;
        }
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .share-btn:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }
        .share-facebook { background: #1877f2; }
        .share-twitter { background: #1da1f2; }
        .share-whatsapp { background: #25d366; }
        .share-linkedin { background: #0077b5; }
        
        /* Sağ Taraf Menü */
        .sidebar-menu {
            background: white;
            border-radius: 28px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
            border-bottom: 3px solid var(--primary-gold);
        }
        .sidebar-menu h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .sidebar-menu h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 3px;
        }
        .menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .menu-list li {
            margin-bottom: 0.8rem;
        }
        .menu-list a {
            display: block;
            padding: 12px 18px;
            border-radius: 50px;
            color: #4a4a4a;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            background: #f8f5ef;
        }
        .menu-list a i {
            margin-right: 12px;
            color: var(--primary-gold);
            width: 24px;
        }
        .menu-list a:hover {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
            transform: translateX(5px);
        }
        .menu-list a:hover i {
            color: white;
        }
        .menu-list a.active {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
        }
        .menu-list a.active i {
            color: white;
        }
        
        /* Yazdırma Stili */
        @media print {
            .navbar-custom, .page-header, .sidebar-menu, .footer-modern, 
            .floating-icon, .accessibility-panel, .share-section, 
            .text-size-controls, .documents-section {
                display: none !important;
            }
            .news-detail-card {
                box-shadow: none;
                margin: 0;
                padding: 0;
            }
            .news-main-image {
                max-width: 100%;
                height: auto;
            }
            .news-detail-content {
                padding: 0;
            }
            .gallery-item {
                break-inside: avoid;
                page-break-inside: avoid;
            }
            body {
                background: white;
            }
            .container {
                width: 100%;
                max-width: 100%;
                padding: 0;
                margin: 0;
            }
        }
        
        /* Yazı Boyutu Sınıfları */
        .text-small .news-detail-title {
            font-size: 1.4rem !important;
        }
        .text-small .news-meta-item {
            font-size: 0.7rem !important;
        }
        .text-small .news-description {
            font-size: 0.85rem !important;
            line-height: 1.6 !important;
        }
        .text-medium .news-detail-title {
            font-size: 1.7rem !important;
        }
        .text-medium .news-meta-item {
            font-size: 0.8rem !important;
        }
        .text-medium .news-description {
            font-size: 1rem !important;
            line-height: 1.7 !important;
        }
        .text-large .news-detail-title {
            font-size: 2rem !important;
        }
        .text-large .news-meta-item {
            font-size: 0.9rem !important;
        }
        .text-large .news-description {
            font-size: 1.15rem !important;
            line-height: 1.9 !important;
        }
        .text-xlarge .news-detail-title {
            font-size: 2.3rem !important;
        }
        .text-xlarge .news-meta-item {
            font-size: 1rem !important;
        }
        .text-xlarge .news-description {
            font-size: 1.3rem !important;
            line-height: 2.1 !important;
        }
        
        .loading-spinner {
            text-align: center;
            padding: 3rem;
        }
        
        @media (max-width: 992px) {
            .news-main-image {
                height: 350px;
            }
            .news-detail-title {
                font-size: 1.5rem;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1rem;
            }
            .sidebar-menu {
                position: relative;
                top: 0;
                margin-top: 1rem;
            }
        }
        @media (max-width: 768px) {
            .news-main-image {
                height: 250px;
            }
            .news-detail-content {
                padding: 1.2rem;
            }
            .news-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            .news-detail-title {
                font-size: 1.2rem;
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.8rem;
            }
            .document-item {
                flex-direction: column;
                align-items: flex-start;
            }
            .download-link {
                align-self: flex-end;
            }
        }
        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        /* SEO Uyumlu Başlık Linki */
.news-detail-title-link {
    text-decoration: none;
    display: block;
}

.news-detail-title-link:hover .news-detail-title {
    color: var(--primary-gold);
    text-decoration: underline;
}

.news-detail-title {
    transition: color 0.3s;
}