/* Google Fonts - Türkçe karakterlere uyumlu */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');

/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', Arial, sans-serif;
    /* Mobil için önemli CSS özellikleri */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Mobil cihazlar için touch optimizasyonu */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    /* Mobilde overflow sorunlarını önle */
    overflow-x: hidden;
}

/* Slider için özel mobil optimizasyonlar */
.slider {
    /* Mobilde touch olayları için */
    touch-action: pan-y pinch-zoom;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Slider navigation için özel kurallar */
.slider-nav,
.slider-arrows {
    /* Mobilde her zaman görünür ve tıklanabilir */
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 100 !important;
}

.slider-number,
.slider-arrow {
    /* Mobilde tıklanabilir hedefler */
    pointer-events: auto !important;
    cursor: pointer !important;
    min-height: 44px;
    min-width: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* MOBİL İÇİN ÖZEL SLIDER SİSTEMİ */
.mobile-slider {
    display: none;
}

.mobile-slider-container {
    display: none;
}

/* Mobilde mevcut slider'ı gizle, mobil slider'ı göster */
@media (max-width: 768px) {
    /* Desktop slider'ı gizle */
    .featured-news .slider {
        display: none !important;
    }
    
    .featured-news .slider-arrows {
        display: none !important;
    }
    
    .featured-news .slider-nav {
        display: none !important;
    }
    
    /* Desktop öne çıkan haberler sidebar'ını gizle */
    .featured-news-sidebar {
        display: none !important;
    }
    
    /* Desktop slider container'ını tamamen gizle */
    .featured-news {
        display: none !important;
    }
    
    /* Desktop köşe yazıları carousel'ını gizle */
    .horizontal-columns-section {
        display: none !important;
    }
    
    /* Desktop editörün seçtikleri carousel'ını gizle */
    .editors-picks-section {
        display: none !important;
    }
    
    /* Mobil slider'ı göster */
    .mobile-slider {
        display: block !important;
        width: 100%;
        height: 300px;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 15px;
        z-index: 1;
    }
    
    .mobile-slider-container {
        display: block !important;
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-slider-container {
        display: block !important;
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .mobile-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: 1;
    }
    
    .mobile-slide.active {
        opacity: 1;
        z-index: 2;
    }
    
    .mobile-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        color: white;
    }
    
    .mobile-slide-content h3 {
        margin: 0 0 8px 0;
        font-size: 16px;
        font-weight: 600;
    }
    
    .mobile-slide-category {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #cc0000;
        color: white;
        padding: 4px 8px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 600;
    }
    
    .mobile-slider-nav {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex !important;
        gap: 8px;
        z-index: 10;
        pointer-events: auto;
    }
    
    .mobile-slider-arrows {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: none !important;
        justify-content: space-between;
        padding: 0 10px;
        z-index: 10;
        pointer-events: auto;
    }
    
    .mobile-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: background 0.3s ease;
        pointer-events: auto;
        z-index: 15;
    }
    
    .mobile-slider-dot.active {
        background: white;
    }
    
    .mobile-slider-arrows {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
        z-index: 10;
    }
    
    .mobile-slider-arrow {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(0,0,0,0.7);
        color: white;
        border: none;
        display: none !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 14px;
        pointer-events: auto;
        z-index: 15;
    }
    
    /* MOBİL İÇİN ÖNE ÇIKAN HABERLER */
    .mobile-featured-news {
        display: block !important;
        margin-top: 15px;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-featured-header {
        background: #cc0000;
        color: white;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-featured-header i {
        color: #ffd700;
        font-size: 14px;
    }
    
    .mobile-featured-header h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    .mobile-featured-list {
        padding: 0;
        margin: 0;
    }
    
    .mobile-featured-item {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    .mobile-featured-item:last-child {
        border-bottom: none;
    }
    
    .mobile-featured-image {
        width: 60px;
        height: 45px;
        border-radius: 4px;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .mobile-featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-featured-content {
        flex: 1;
        min-width: 0;
    }
    
    .mobile-featured-title {
        margin: 0 0 4px 0;
        font-size: 13px;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .mobile-featured-title a {
        color: #333;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .mobile-featured-meta {
        font-size: 11px;
        color: #666;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-featured-category {
        background: #cc0000;
        color: white;
        padding: 2px 6px;
        border-radius: 3px;
        font-size: 10px;
        font-weight: 600;
    }
    
    /* MOBİL İÇİN EDİTÖRÜN SEÇTİKLERİ */
    .mobile-editors-picks {
        display: block !important;
        margin-top: 15px;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-editors-header {
        background: #cc0000;
        color: white;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-editors-header i {
        color: #ffd700;
        font-size: 14px;
    }
    
    .mobile-editors-header h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    .mobile-editors-list {
        padding: 0;
        margin: 0;
    }
    
    .mobile-editors-item {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    .mobile-editors-item:last-child {
        border-bottom: none;
    }
    
    .mobile-editors-image {
        width: 60px;
        height: 45px;
        border-radius: 4px;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .mobile-editors-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-editors-content {
        flex: 1;
        min-width: 0;
    }
    
    .mobile-editors-title {
        margin: 0 0 4px 0;
        font-size: 13px;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .mobile-editors-title a {
        color: #333;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .mobile-editors-meta {
        font-size: 11px;
        color: #666;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-editors-category {
        background: #cc0000;
        color: white;
        padding: 2px 6px;
        border-radius: 3px;
        font-size: 10px;
        font-weight: 600;
    }
    
    /* MOBİL İÇİN KÖŞE YAZILARI */
    .mobile-columns-section {
        display: block !important;
        margin-top: 15px;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-columns-header {
        background: #cc0000;
        color: white;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-columns-header i {
        color: #ffd700;
        font-size: 14px;
    }
    
    .mobile-columns-header h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    .mobile-columns-list {
        padding: 0;
        margin: 0;
    }
    
    .mobile-column-item {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }
    
    .mobile-column-item:last-child {
        border-bottom: none;
    }
    
    .mobile-column-author {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .mobile-column-author img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-column-content {
        flex: 1;
        min-width: 0;
    }
    
    .mobile-column-author-name {
        font-size: 12px;
        font-weight: 600;
        color: #cc0000;
        margin-bottom: 2px;
    }
    
    .mobile-column-title {
        margin: 0 0 4px 0;
        font-size: 13px;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .mobile-column-title a {
        color: #333;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .mobile-column-date {
        font-size: 11px;
        color: #666;
    }
    
    /* Desktop'ta mobil elementleri gizle */
    .mobile-slider,
    .mobile-featured-news,
    .mobile-columns-section {
        display: none;
    }
}

/* Desktop'ta mobil elementleri kesinlikle gizle */
@media (min-width: 769px) {
    .mobile-slider,
    .mobile-featured-news,
    .mobile-columns-section,
    .mobile-editors-picks {
        display: none !important;
    }
}

/* Tüm tıklanabilir elementler için touch optimizasyonu */
a, button, input, select, textarea, [role="button"], [tabindex] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}

/* Safari iOS için özel düzeltmeler */
button, input[type="submit"], input[type="reset"], input[type="button"] {
    -webkit-appearance: none;
    border-radius: 0;
}

/* Touch device optimizasyonları */
.touch-device a,
.touch-device button,
.touch-device [role="button"] {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Touch feedback */
.touch-device .slider-number:active,
.touch-device .dot:active,
.touch-device .carousel-control:active,
.touch-device button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Touch active states */
.touch-active {
    background-color: rgba(204, 0, 0, 0.1) !important;
    transform: scale(0.98);
    transition: all 0.1s ease;
}

/* Mobil cihaz özel stilleri */
.mobile-device .slider {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

.mobile-device .nav-menu {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

/* Container overflow fix */
.container {
    overflow-x: hidden;
}

/* Mobil responsive düzenlemeler */
@media (max-width: 768px) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo-container {
        width: 100%;
    }
    
    /* Mobilde bölüm başlıkları için düzeltme */
    .section-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 10px !important;
    }
    
    .section-header > div:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Öne çıkan haberler ve köşe yazıları bölümleri için düzeltme */
    .editors-picks-section,
    .horizontal-columns-section {
        margin-top: 15px !important;
        padding-top: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .editors-picks-section .section-header,
    .horizontal-columns-section .section-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 10px !important;
    }
    
    /* Carousel container'lar için düzeltme */
    .editors-picks-carousel-container,
    .columns-carousel-container {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Ana container düzeltmeleri */
    .main-news-container {
        margin-bottom: 15px !important;
    }
    
    /* Content wrapper düzeltmeleri */
    .content {
        margin-bottom: 20px !important;
    }
    
    /* Mobilde slider üstündeki boşluğu kaldır */
    .main-news {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .featured-news {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Mobilde ana sayfa container'ı düzelt */
    .content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Mobilde header sonrası boşluğu kaldır */
    header {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    nav {
        margin-bottom: 0 !important;
    }
    
    /* Mobilde container boşluklarını kaldır */
    .container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

/* Ensure all clickable elements work on mobile */
.mobile-device a,
.mobile-device button,
.mobile-device .slider-number,
.mobile-device .dot,
.mobile-device .carousel-control {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Mobil viewport düzeltmeleri */
.mobile-device {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Başlıklar için yazı tipi */
h1, h2, h3, h4, h5, h6, 
.logo h1, 
.news-title, 
.section-header h3, 
.sidebar-title, 
.slide-content h2, 
.editors-pick-content h4, 
.news-content h4, 
.column-item .author-info h4, 
.sidebar-author-item .author-info h4, 
.author-card .author-info h4,
nav ul li a,
.not-found-content h2,
nav ul li,
nav {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

/* Haber içerik metni için yazı tipi */
.news-content p, 
.news-detail-main p, 
.news-content {
    font-family: 'Roboto Condensed', sans-serif;
}

/* Haber detay sayfasındaki içerik stilini güncelle */
.news-detail-main .news-content,
.news-detail-main .news-content p,
.news-detail-main .news-content div,
.news-detail-main .news-content span {
    color: #000000 !important;
    font-size: 18px !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    line-height: 1.6;
}

/* Başlıklar için farklı stilize edilmiş ayarlar */
.news-detail-main .news-content h1,
.news-detail-main .news-content h2,
.news-detail-main .news-content h3,
.news-detail-main .news-content h4,
.news-detail-main .news-content h5,
.news-detail-main .news-content h6 {
    color: #000000 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    margin: 15px 0 10px 0;
}

/* Liste öğeleri için de aynı stili uygula */
.news-detail-main .news-content ul,
.news-detail-main .news-content ol,
.news-detail-main .news-content li {
    color: #000000 !important;
    font-size: 18px !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    line-height: 1.6;
}

/* Metin biçimlendirme etiketleri için stiller - TinyMCE inline style'larını override et */
.news-detail-main .news-content strong,
.news-detail-main .news-content b,
.news-detail-main .news-content strong *,
.news-detail-main .news-content b * {
    font-weight: bold !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.news-detail-main .news-content em,
.news-detail-main .news-content i,
.news-detail-main .news-content em *,
.news-detail-main .news-content i * {
    font-style: italic !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.news-detail-main .news-content u,
.news-detail-main .news-content u * {
    text-decoration: underline !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.news-detail-main .news-content s,
.news-detail-main .news-content strike,
.news-detail-main .news-content s *,
.news-detail-main .news-content strike * {
    text-decoration: line-through !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

/* Linkler */
.news-detail-main .news-content a {
    color: #cc0000 !important;
    text-decoration: underline !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    transition: color 0.3s ease !important;
}

.news-detail-main .news-content a:hover {
    color: #990000 !important;
    text-decoration: underline !important;
}

/* Alıntılar */
.news-detail-main .news-content blockquote {
    border-left: 4px solid #cc0000 !important;
    padding-left: 15px !important;
    margin: 15px 0 !important;
    font-style: italic !important;
    background-color: #f9f9f9 !important;
    padding: 15px !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

/* Kod blokları */
.news-detail-main .news-content code {
    background-color: #f4f4f4 !important;
    padding: 2px 4px !important;
    border-radius: 3px !important;
    font-family: 'Courier New', monospace !important;
    color: #000000 !important;
}

.news-detail-main .news-content pre {
    background-color: #f4f4f4 !important;
    padding: 10px !important;
    border-radius: 5px !important;
    overflow-x: auto !important;
    font-family: 'Courier New', monospace !important;
    color: #000000 !important;
}

/* Tablolar */
.news-detail-main .news-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 15px 0 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
}

.news-detail-main .news-content table td,
.news-detail-main .news-content table th {
    border: 1px solid #ddd !important;
    padding: 8px !important;
    text-align: left !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.news-detail-main .news-content table th {
    background-color: #f2f2f2 !important;
    font-weight: bold !important;
}

/* Yatay çizgi */
.news-detail-main .news-content hr {
    border: none !important;
    height: 1px !important;
    background-color: #ddd !important;
    margin: 20px 0 !important;
}

/* Üst ve alt yazılar */
.news-detail-main .news-content sup {
    vertical-align: super !important;
    font-size: smaller !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.news-detail-main .news-content sub {
    vertical-align: sub !important;
    font-size: smaller !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

/* KÖŞE YAZILARI İÇİN AYNI BİÇİMLENDİRME STİLLERİ */

/* Köşe yazısı ana içeriği */
.column-content,
.column-content p,
.column-content div,
.column-content span {
    color: #000000 !important;
    font-size: 18px !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    line-height: 1.6;
}

/* Köşe yazısı başlıkları */
.column-content h1,
.column-content h2,
.column-content h3,
.column-content h4,
.column-content h5,
.column-content h6 {
    color: #000000 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    margin: 15px 0 10px 0;
}

/* Köşe yazısı listeleri */
.column-content ul,
.column-content ol,
.column-content li {
    color: #000000 !important;
    font-size: 18px !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    line-height: 1.6;
}

/* Köşe yazısı metin biçimlendirme etiketleri - TinyMCE inline style'larını override et */
.column-content strong,
.column-content b,
.column-content strong *,
.column-content b * {
    font-weight: bold !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.column-content em,
.column-content i,
.column-content em *,
.column-content i * {
    font-style: italic !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.column-content u,
.column-content u * {
    text-decoration: underline !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.column-content s,
.column-content strike,
.column-content s *,
.column-content strike * {
    text-decoration: line-through !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

/* Köşe yazısı linkleri */
.column-content a {
    color: #cc0000 !important;
    text-decoration: underline !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    transition: color 0.3s ease !important;
}

.column-content a:hover {
    color: #990000 !important;
    text-decoration: underline !important;
}

/* Köşe yazısı alıntıları */
.column-content blockquote {
    border-left: 4px solid #cc0000 !important;
    padding-left: 15px !important;
    margin: 15px 0 !important;
    font-style: italic !important;
    background-color: #f9f9f9 !important;
    padding: 15px !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

/* Köşe yazısı kod blokları */
.column-content code {
    background-color: #f4f4f4 !important;
    padding: 2px 4px !important;
    border-radius: 3px !important;
    font-family: 'Courier New', monospace !important;
    color: #000000 !important;
}

.column-content pre {
    background-color: #f4f4f4 !important;
    padding: 10px !important;
    border-radius: 5px !important;
    overflow-x: auto !important;
    font-family: 'Courier New', monospace !important;
    color: #000000 !important;
}

/* Köşe yazısı tabloları */
.column-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 15px 0 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
}

.column-content table td,
.column-content table th {
    border: 1px solid #ddd !important;
    padding: 8px !important;
    text-align: left !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.column-content table th {
    background-color: #f2f2f2 !important;
    font-weight: bold !important;
}

/* Köşe yazısı yatay çizgi */
.column-content hr {
    border: none !important;
    height: 1px !important;
    background-color: #ddd !important;
    margin: 20px 0 !important;
}

/* Köşe yazısı üst ve alt yazılar */
.column-content sup {
    vertical-align: super !important;
    font-size: smaller !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

.column-content sub {
    vertical-align: sub !important;
    font-size: smaller !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #000000 !important;
}

/* TinyMCE inline style'larını tamamen override et - EN GÜÇLÜ KURAL */
.news-detail-main .news-content *[style],
.column-content *[style] {
    font-family: Georgia, 'Times New Roman', serif !important;
}

/* Span etiketleri için özel kural (TinyMCE sıkça kullanır) */
.news-detail-main .news-content span,
.column-content span {
    font-family: Georgia, 'Times New Roman', serif !important;
}

/* Font-family içeren tüm inline style'ları zorla override et */
.news-detail-main .news-content *,
.column-content * {
    font-family: Georgia, 'Times New Roman', serif !important;
}

body {
    background-color: rgb(245, 245, 239);
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    padding: 8px 0 2px 0;
    font-family: 'Oswald', sans-serif;
    font-style: normal;
    font-weight: 600;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 15px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 4rem;
    color: #cc0000;
    text-transform: lowercase;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1;
}

.logo img {
    max-width: 650px;
    max-height: 140px;
    display: block;
    margin: 0 auto;
}

.slogan {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0;
}

/* Navigation */
nav {
    margin-bottom: 15px;
    background-color: #fff;
    padding: 2px 5px;
    position: relative;
}

/* Hamburger menu styles removed - using horizontal menu instead */

/* Navigation için özel stil */
nav ul, nav ul li, nav ul li a {
    font-family: 'Oswald', sans-serif !important;
}

.nav-menu {
    display: flex;
    list-style-type: none;
    overflow-x: auto;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    padding: 5px 0;
    margin-right: 25px;
    position: relative;
}

.nav-menu li:last-child {
    margin-right: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif !important;
    padding: 4px 6px;
    border-radius: 4px;
    display: block;
}

.nav-menu li a:hover {
    color: #cc0000;
    background-color: rgba(204, 0, 0, 0.1);
}

/* Mobile Menu Styles - Horizontal Layout */
@media (max-width: 768px) {
    nav {
        margin-bottom: 10px;
        background-color: #fff;
        padding: 8px 0;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    
    .nav-menu {
        display: flex !important;
        list-style-type: none !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        padding: 0 10px !important;
        position: static !important;
        background-color: #fff !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        gap: 8px !important;
        opacity: 1 !important;
        visibility: visible !important;
        left: auto !important;
        height: auto !important;
        transform: none !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        align-items: center !important;
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .nav-menu li {
        margin: 0 !important;
        padding: 2px 0 !important;
        margin-right: 0 !important;
        flex-shrink: 0 !important;
        border-bottom: none !important;
        width: auto !important;
        text-align: center !important;
        min-width: fit-content !important;
        display: block !important;
        float: none !important;
        position: relative !important;
    }
    
    .nav-menu li:last-child {
        margin-right: 0;
    }
    
    .nav-menu li a {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        display: block !important;
        white-space: nowrap !important;
        text-align: center !important;
        border-radius: 20px !important;
        transition: all 0.3s ease !important;
        width: auto !important;
        background: #ffffff !important;
        border: 2px solid #000000 !important;
        min-width: fit-content !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
        float: none !important;
        position: relative !important;
        text-decoration: none !important;
        color: #000000 !important;
    }
    
    .nav-menu li a:hover {
        background-color: #f0f0f0 !important;
        color: #000000 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
        border-color: #333333 !important;
    }
    
    /* Mobil menü için ek güvenlik kuralları */
    @media (max-width: 768px) {
        nav ul.nav-menu {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            overflow-x: auto !important;
            justify-content: flex-start !important;
            align-items: center !important;
        }
        
        nav ul.nav-menu li {
            display: block !important;
            float: none !important;
            width: auto !important;
            flex-shrink: 0 !important;
        }
        
        nav ul.nav-menu li a {
            display: block !important;
            float: none !important;
            width: auto !important;
            white-space: nowrap !important;
        }
        
        /* Bootstrap override */
        .nav-menu,
        .nav-menu *,
        nav ul,
        nav ul * {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
        }
        
        .nav-menu li,
        nav ul li {
            display: block !important;
            float: none !important;
            width: auto !important;
            flex-shrink: 0 !important;
        }
        
        /* En güçlü override kuralları */
        body .container nav .nav-menu,
        body .container nav ul.nav-menu {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            overflow-x: auto !important;
            justify-content: flex-start !important;
            align-items: center !important;
            width: 100% !important;
            margin: 0 !important;
            padding: 0 10px !important;
        }
        
        body .container nav .nav-menu li,
        body .container nav ul.nav-menu li {
            display: block !important;
            float: none !important;
            width: auto !important;
            flex-shrink: 0 !important;
            margin: 0 !important;
            padding: 2px 0 !important;
        }
        
        body .container nav .nav-menu li a,
        body .container nav ul.nav-menu li a {
            display: block !important;
            float: none !important;
            width: auto !important;
            white-space: nowrap !important;
            padding: 10px 16px !important;
            margin: 0 !important;
            background: #ffffff !important;
            border: 2px solid #000000 !important;
            color: #000000 !important;
        }
    }
}

/* Sosyal Medya Bar - Menü Üstü */
.social-media-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 3px 10px;
    margin-bottom: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #fff;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.facebook:hover {
    background-color: #166fe5;
    color: #fff;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #8c1b7e);
    color: #fff;
}

.social-icon.twitter {
    background-color: #000000;
}

.social-icon.twitter:hover {
    background-color: #333333;
    color: #fff;
}

.social-icon.telegram {
    background-color: #0088cc;
}

.social-icon.telegram:hover {
    background-color: #0077bb;
    color: #fff;
}

/* Main Content */
.content {
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Ana Sayfa - Slider ve Köşe Yazıları Konteyneri */
.main-news-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

/* Slider Bölümü */
.main-news {
    flex: 3;
}

/* Öne Çıkan Haberler Sidebar */
.featured-news-sidebar {
    flex: 1;
    max-width: 350px;
    margin-left: 20px;
    height: 400px;
    display: block;
}

.sidebar-header {
    margin-bottom: 15px;
}

.sidebar-title-container {
    background: linear-gradient(135deg, #cc0000, #aa0000);
    color: white;
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.2);
}

.sidebar-title-container i {
    font-size: 16px;
    color: #ffeb3b;
}

.sidebar-title-container h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.featured-news-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 0 0 8px 8px;
    border: 1px solid #e9ecef;
    border-top: none;
    height: calc(400px - 47px);
    overflow-y: auto;
}

.featured-news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.featured-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-color: #cc0000;
}

.featured-card-image {
    position: relative;
    width: 120px;
    height: 80px;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-news-card:hover .featured-card-image img {
    transform: scale(1.05);
}

.featured-card-category {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #cc0000;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-card-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    color: #666;
}

.featured-card-date,
.featured-card-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-card-date i,
.featured-card-views i {
    font-size: 10px;
    color: #cc0000;
}

.featured-card-title {
    margin: 0 0 6px 0;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
}

.featured-card-title a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.featured-card-title a:hover {
    color: #cc0000;
}

.featured-card-footer {
    border-top: none;
    padding-top: 0;
    margin-top: auto;
}

.read-more-link {
    color: #cc0000;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #aa0000;
}

.read-more-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

.featured-news {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f0f0f0;
    z-index: 1;
    /* Mobil için touch özellikleri */
    touch-action: pan-y pinch-zoom;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #e5e5e5;
    border-top: 3px solid #cc0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.slider.loaded::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 2;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: #fff;
    z-index: 4;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    padding-bottom: 60px; /* Navigasyon numaraları için ekstra alan */
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 10;
}

.slide-content h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    color: #fff;
}

.read-more-hint {
    opacity: 0.8;
    font-size: 14px;
    display: inline-block;
    color: #fff;
}

.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 20;
    padding: 8px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    border-radius: 0 0 8px 8px;
    pointer-events: none;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 2px solid rgba(255,255,255,0.8);
}

.dot.active {
    background-color: #ffffff;
    border-color: #cc0000;
}

.dot:hover {
    background-color: rgba(255,255,255,0.8);
}

/* Slider Sayı Navigasyonu */
.slider-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(221, 221, 221, 0.8);
    color: #666666;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    z-index: 25;
    position: relative;
}

.slider-number.active {
    background-color: #cc0000;
    border-color: #cc0000;
    color: #ffffff;
    transform: none;
    box-shadow: 0 3px 6px rgba(204, 0, 0, 0.3);
}

.slider-number:hover {
    background-color: #f5f5f5;
    border-color: #cc0000;
    color: #cc0000;
    transform: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.slider-number.active:hover {
    background-color: #aa0000;
    border-color: #aa0000;
    color: #ffffff;
}

/* Mobil cihazlarda sayı navigasyonunu küçült */
@media (max-width: 768px) {
    .slider-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin: 0 3px;
        /* Mobilde daha iyi touch hedefi */
        min-height: 44px;
        min-width: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobilde slider navigation'ı daha görünür yap */
    .slider-nav {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 10px 0;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 576px) {
    .slider-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
        margin: 0 2px;
    }
}

.slide-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #cc0000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 15;
}

/* Köşe Yazıları için özel slider badge */
.slide-category-badge.column-badge {
    background-color: #cc0000; /* Kırmızı */
    text-transform: none;
    font-weight: 600;
}

/* Slider içerik açıklama metni */
.slide-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 8px 0;
}

/* Öne Çıkan Haberler - Yeni Modern Tasarım */
.featured-news-preview {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
}

/* Köşe Yazıları - Slider'ın Sağı (Geriye uyumluluk için korundu) */
.column-preview {
    flex: 1;
    border: 1px solid #e5e5e5;
    padding: 15px;
    background-color: #f6f5f2;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.column-preview h3 {
    border-bottom: 2px solid #cc0000;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 700;
    flex-shrink: 0;
}

.featured-news-header {
    background: linear-gradient(135deg, #cc0000, #990000);
    padding: 20px 25px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-news-title {
    margin: 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-news-title i {
    color: #ffd700;
    font-size: 1rem;
}

.featured-news-list {
    flex: 1;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.featured-news-container {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

/* Öne Çıkan Haberler - İkinci Görsel Formatı */
.similar-news-list {
    padding: 0;
    background: white;
}

.featured-news-item-clean {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.featured-news-item-clean:last-child {
    border-bottom: none;
}

.featured-news-item-clean:hover {
    background-color: #f8f9fa;
}

.featured-category {
    background: #cc0000;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

.featured-author {
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.featured-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.featured-date {
    font-size: 0.75rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-date i {
    font-size: 0.7rem;
    color: #cc0000;
}

.featured-views {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #888;
}

.featured-views i {
    font-size: 0.7rem;
    color: #cc0000;
}

.featured-title-clean {
    margin: 0;
}

.featured-title-clean a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-title-clean a:hover {
    color: #cc0000;
}

.featured-more-button {
    text-align: center;
    margin-top: 15px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
}

.featured-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #cc0000;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.featured-more-btn:hover {
    background-color: #aa0000;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.featured-more-btn i {
    font-size: 0.8rem;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .featured-news-item-clean {
        padding: 12px 15px;
    }
    
    .featured-category {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .featured-author {
        font-size: 0.8rem;
    }
    
    .featured-meta-row {
        gap: 12px;
        margin-bottom: 6px;
    }
    
    .featured-date,
    .featured-views {
        font-size: 0.7rem;
    }
    
    .featured-title-clean a {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .featured-news-item-clean {
        padding: 10px 12px;
    }
    
    .featured-category {
        font-size: 0.6rem;
        padding: 2px 5px;
        margin-bottom: 4px;
    }
    
    .featured-author {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }
    
    .featured-meta-row {
        gap: 10px;
        margin-bottom: 5px;
    }
    
    .featured-date,
    .featured-views {
        font-size: 0.65rem;
    }
    
    .featured-title-clean a {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .featured-more-button {
        padding: 12px 0;
    }
    
    .featured-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

.featured-news-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

.column-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.featured-news-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.featured-news-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.featured-news-item:last-child {
    border-bottom: none;
}

.featured-news-item.featured-main {
    background: linear-gradient(135deg, #fff8f0, #fff);
    border-left: 4px solid #cc0000;
    padding: 25px 20px;
}

.column-item {
    display: flex;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.column-item:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.column-item .author-img {
    width: 50px;
    margin-right: 10px;
    flex-shrink: 0;
}

.column-item .author-img img {
    width: 100%;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.column-item .author-info {
    flex: 1;
}

.column-item .author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.column-item .author-info p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
}

.read-more {
    color: #cc0000;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

.all-columns {
    text-align: center;
    margin-top: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.all-link {
    display: inline-block;
    background-color: #cc0000;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.all-link:hover {
    background-color: #aa0000;
}

/* Yeni Featured News Stil Eklemeleri */
.featured-news-image {
    position: relative;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-news-item:hover .featured-news-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 8px;
}

.featured-category {
    background: linear-gradient(135deg, #cc0000, #990000);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.featured-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: #666;
}

.featured-date,
.featured-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-date i,
.featured-views i {
    color: #cc0000;
    font-size: 0.7rem;
}

.featured-title {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 600;
}

.featured-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #cc0000;
}

.featured-main .featured-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-actions {
    margin-top: auto;
}

.featured-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cc0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    padding: 4px 8px;
    border-radius: 4px;
}

.featured-read-more:hover {
    color: white;
    background: #cc0000;
    border-color: #cc0000;
    transform: translateY(-1px);
}

.featured-read-more i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.featured-read-more:hover i {
    transform: translateX(2px);
}

/* Featured News Navigation */
.featured-news-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.featured-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.featured-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.featured-nav-dots {
    display: flex;
    gap: 6px;
    margin: 0 5px;
}

.featured-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-dot.active {
    background: white;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.featured-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Mobile Responsive for Featured News Navigation */
@media (max-width: 768px) {
    .featured-news-navigation {
        gap: 8px;
    }
    
    .featured-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .featured-nav-dots {
        gap: 4px;
    }
    
    .featured-dot {
        width: 6px;
        height: 6px;
    }
    
    /* Statik öne çıkan haberler mobil stili */
    .featured-news-item.static-item {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .featured-news-item.static-item .featured-news-image {
        width: 100%;
        height: 120px;
    }
    
    .featured-news-item.static-item .featured-title {
        font-size: 16px;
    }
    
    .featured-news-item.static-item .featured-excerpt {
        font-size: 14px;
    }
    
    .featured-news-item.static-item .featured-meta {
        font-size: 12px;
    }
}



/* Editörün Seçtikleri ve Yazarlar bölümü container */
.editors-picks-authors-container {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    width: 100%;
}

/* Editörün Seçtikleri Bölümü - Tam Genişlik */
.editors-picks-section.full-width {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 10px;
    margin: 30px 0;
}

/* Yazarlar sidebar bölümü */
.sidebar-authors-section {
    flex: 1;
    border: 1px solid #e5e5e5;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    height: auto;
    display: flex;
    flex-direction: column;
    width: 250px;
    min-width: 250px;
    max-width: 250px;
}

.sidebar-authors-section h3 {
    border-bottom: 2px solid #cc0000;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 700;
    color: #333;
    position: relative;
}

.sidebar-authors-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #cc0000;
}

.sidebar-authors-list {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.sidebar-author-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    align-items: center;
}

.sidebar-author-item:last-child {
    margin-bottom: 10px;
}

.sidebar-author-item .author-img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    flex-shrink: 0;
}

.sidebar-author-item .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
}

/* PHP hatalarını gizle */
.sidebar-authors-section .warning-message {
    display: none !important;
}

/* PHP hata metinlerini kapat (warning başlık ve metinleri) */
.sidebar-authors-section br {
    display: none;
}

/* PHP hata metinleri için stil */
.sidebar-authors-section p:first-of-type {
    margin-top: 0;
}

.sidebar-author-item .author-info {
    flex: 1;
    overflow: hidden;
}

.sidebar-author-item .author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-author-item .author-info p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-author-item .author-info .read-more {
    color: #cc0000;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 0;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.sidebar-author-item .author-info .read-more:hover {
    border-bottom-color: #cc0000;
}

.all-authors {
    text-align: center;
    margin-top: auto;
    padding-top: 5px;
}

.all-authors .all-link {
    display: inline-block;
    background-color: #cc0000;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.all-authors .all-link:hover {
    background-color: #aa0000;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h3 {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-header h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #cc0000;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-control {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 2px solid #cc0000 !important;
    background-color: #fff !important;
    color: #cc0000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    position: relative !important;
}

.carousel-control:hover {
    background-color: #cc0000 !important;
    color: #fff !important;
}

.carousel-control.column-prev,
.carousel-control.column-next {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 2px solid #cc0000 !important;
    background-color: #fff !important;
    color: #cc0000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    position: relative !important;
}

.carousel-control.column-prev:hover,
.carousel-control.column-next:hover {
    background-color: #cc0000 !important;
    color: #fff !important;
}

.editors-picks-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.editors-picks-carousel {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.carousel-item {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 20px;
    opacity: 1 !important;
    position: relative !important;
    /* Önemli! Karusel öğelerinin görünür olduğundan emin olmak için */
    display: block !important;
    height: auto !important;
}

.editors-pick-card {
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.editors-pick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.editors-pick-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.editors-pick-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.editors-pick-card:hover .editors-pick-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(204, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.7rem;
    border-radius: 3px;
    font-weight: 600;
    z-index: 1;
}

.editors-pick-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.editors-pick-content h4 {
    font-size: 1rem;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.editors-pick-content p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

.editors-pick-content .read-more {
    color: #cc0000;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    font-weight: 600;
    transition: all 0.2s ease;
    align-self: flex-start;
    border: 1px solid #cc0000;
    padding: 4px 10px;
    border-radius: 4px;
}

.editors-pick-content .read-more:hover {
    background-color: #cc0000;
    color: #fff;
}

.no-content {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 8px;
}

.no-content p {
    color: #777;
    font-style: italic;
    margin: 0;
}

/* Son Haberler Bölümü */
.latest-news-section {
    clear: both;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.latest-news-section h3 {
    border-bottom: 2px solid #cc0000;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    border: 1px solid #e5e5e5;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 15px;
}

.news-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Yazarlar Bölümü */
.authors-section {
    margin-bottom: 30px;
}

.authors-section h3 {
    border-bottom: 2px solid #cc0000;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.author-card {
    text-align: center;
    padding: 15px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-card .author-img {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-card .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.author-card:hover .author-img img {
    border-color: #cc0000;
}

.author-card .author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-card .author-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.author-link {
    display: inline-block;
    background-color: #cc0000;
    color: #fff;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.8rem;
}

.author-link:hover {
    background-color: #aa0000;
}

/* Öne Çıkan Haberler */
.news-stories {
    margin-bottom: 30px;
}

.news-stories h3 {
    border-bottom: 2px solid #cc0000;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.news-story {
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    background-color: #fff;
}

.news-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-story img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.news-story h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-story p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .main-news-container {
        flex-direction: column;
    }
    
    .slider {
        height: 350px;
    }
    
    .column-preview {
        margin-top: 20px;
    }
    
    .logo img {
        max-width: 500px;
        max-height: 120px;
    }
    
    .carousel-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .editors-picks-authors-container {
        flex-direction: column;
    }
    
    .sidebar-authors-section {
        margin-top: 20px;
        max-height: none;
    }
    
        .nav-menu {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 10px;
    }
    
    .nav-menu li {
        margin-right: 15px;
    }
    
    .nav-menu li a {
        font-size: 1.1rem;
        padding: 6px 10px;
    }
    
    /* Sosyal medya bar - tablet */
    .social-media-bar {
        gap: 12px;
        padding: 4px 15px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-container {
        grid-template-columns: 1fr;
    }
    
    .main-news-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .featured-news-sidebar {
        margin-left: 0;
        margin-top: 15px;
        max-width: 100%;
        height: 350px;
    }
    
    .featured-news-grid {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        height: calc(350px - 47px);
        overflow-y: auto;
    }
    
    .featured-card-image {
        width: 90px;
        height: 60px;
    }
    
    .featured-card-title {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .featured-card-content {
        padding: 6px;
    }
    
    .featured-card-meta {
        font-size: 9px;
        margin-bottom: 4px;
    }
    
    .read-more-link {
        font-size: 9px;
    }
    
    .main-news {
        width: 100%;
    }
    
    .featured-news-sidebar {
        margin-left: 0;
        margin-top: 20px;
        max-width: 100%;
        height: 400px;
    }
    
    .featured-news-grid {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
        height: calc(400px - 47px);
        overflow-y: auto;
    }
    
    .featured-card-image {
        width: 100px;
        height: 70px;
    }
    
    .featured-card-title {
        font-size: 11px;
    }
    
    .featured-card-content {
        padding: 8px;
    }
    
    .featured-news-preview {
        width: 100%;
        margin-top: 0;
    }
    
    .slider {
        height: 400px;
        min-height: 350px;
    }
    
    .slide {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .slide.active {
        display: block !important;
    }
    
    .slide-content h2 {
        font-size: 1.3rem;
    }
    
    .logo h1 {
        font-size: 3rem;
    }
    
    .logo img {
        max-width: 450px;
        max-height: 110px;
    }
    
    .carousel-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .editors-pick-content h4 {
        font-size: 1rem;
    }
    
    .editors-pick-content p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .container {
        padding: 0 10px;
    }
    
    header {
        padding: 10px 0 5px 0;
    }
    
    nav {
        margin-bottom: 15px;
    }
    
    .nav-menu li a {
        font-size: 1.1rem;
        padding: 5px 8px;
    }
    
    /* Köşe yazıları tablet düzeltmesi */
    .column-item .author-img {
        width: 55px;
        margin-right: 12px;
    }
    
    .column-item .author-img img {
        height: 55px;
        width: 55px;
    }
    
    .column-item .author-info h4 {
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .column-item .author-info p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    
    .column-item {
        margin-bottom: 14px;
        padding-bottom: 14px;
    }
    
    .read-more {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .column-list-container {
        padding: 18px;
    }
    
    /* Sosyal medya ikonları - mobil orta */
    .social-media-bar {
        gap: 10px;
        padding: 3px 10px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 350px;
        min-height: 300px;
        margin-bottom: 15px;
    }
    
    .slide {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .slide.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 2;
    }
    
    /* Mobilde bölüm başlıkları için ek düzeltmeler */
    .editors-picks-section,
    .horizontal-columns-section {
        margin-top: 10px !important;
        padding-top: 0 !important;
        margin-bottom: 15px !important;
    }
    
    .section-header {
        margin-bottom: 8px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .section-header > div:first-child {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Mobilde carousel container'lar için düzeltme */
    .editors-picks-carousel-container,
    .columns-carousel-container {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Küçük mobilde ana container düzeltmeleri */
    .main-news-container {
        margin-bottom: 10px !important;
    }
    
    .content {
        margin-bottom: 15px !important;
    }
    
    .slide-content {
        padding: 15px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: white;
    }
    
    .slide-content h2 {
        font-size: 1.1rem;
        color: white;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        color: white;
    }
    
    .news-grid-responsive,
    .stories-container,
    .authors-grid {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .logo img {
        max-width: 350px;
        max-height: 90px;
    }
    
    .carousel-item {
        flex: 0 0 calc(100% - 20px) !important;
        width: calc(100% - 20px) !important;
        margin-right: 20px !important;
        min-width: calc(100% - 20px) !important;
    }
    
    /* Mobilde carousel'lar için özel stiller */
    .columns-carousel,
    .editors-picks-carousel {
        transition: transform 0.3s ease !important;
        width: 100% !important;
    }
    
    .column-carousel-item {
        min-width: calc(100% - 20px) !important;
        width: calc(100% - 20px) !important;
        flex-shrink: 0 !important;
        margin-right: 20px !important;
    }
    
    .editors-pick-card:last-child {
        margin-bottom: 20px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Mobilde bölüm başlıkları ve içerikler için düzeltmeler */
    .horizontal-columns-section,
    .editors-picks-section {
        margin-top: 25px !important;
        margin-bottom: 25px !important;
        padding-top: 0 !important;
        clear: both !important;
    }
    
    .section-header {
        margin-bottom: 15px !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
        display: block !important;
    }
    
    .section-title {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 10px !important;
        display: block !important;
        width: 100% !important;
    }
    
    /* Köşe yazıları ve editör seçimleri carousel container'ları */
    .columns-carousel-container,
    .editors-picks-carousel-container {
        margin-top: 0 !important;
        padding-top: 0 !important;
        overflow: visible !important;
        width: 100% !important;
        clear: both !important;
    }
    
    /* Mobilde layout düzeltmeleri */
    .main-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Slider sonrası spacing düzeltmesi */
    .slider + .container,
    .slider + * {
        margin-top: 20px !important;
        padding-top: 0 !important;
    }
    
    /* Viewport ve layout kesin düzeltmeler */
    body.mobile-device {
        overflow-x: hidden !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Ana içerik alanları için mobil optimizasyon */
    .main-content,
    .content,
    main {
        width: 100% !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        overflow-x: hidden !important;
    }
    
        .nav-menu {
        padding: 0 5px;
    }
    
    .nav-menu li {
        margin-right: 10px;
    }
    
    .nav-menu li a {
        font-size: 1rem;
        padding: 4px 6px;
    }
    
    .main-news-container {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .featured-news-sidebar {
        margin-left: 0;
        margin-top: 10px;
        max-width: 100%;
        height: 350px;
    }
    
    .featured-news-grid {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
        height: calc(350px - 47px);
        overflow-y: auto;
    }
    
    .featured-card-image {
        width: 80px;
        height: 55px;
    }
    
    .featured-card-title {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .featured-card-content {
        padding: 6px;
    }
    
    .featured-card-meta {
        font-size: 8px;
        margin-bottom: 3px;
    }
    
    .read-more-link {
        font-size: 8px;
    }
    
    .column-preview {
        padding: 10px;
    }
    
    .column-item .author-img {
        width: 55px;
        margin-right: 10px;
    }
    
    .column-item .author-img img {
        height: 55px;
        width: 55px;
    }
    
    .column-item .author-info h4 {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .column-item .author-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Sosyal medya ikonları - küçük mobil */
    .social-media-bar {
        gap: 8px;
        padding: 2px 5px;
        justify-content: center;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
    }
}

.editors-pick-card:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transform: none;
}

/* Hiçbir içeriğin taşmaması için */
img {
    max-width: 100%;
    height: auto;
}

/* İçerik taşmasını engellemek için */
.content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Son düzenleme olarak Nicolas Anelka içeriğini kapsayan div için özel stil */
#nicolas-anelka-content {
    max-width: 100%;
    overflow: hidden;
    clear: both;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* Yatay Köşe Yazıları Bölümü */
.horizontal-columns-section {
    width: 100%;
    margin: 32px 0;
    position: relative;
    padding: 0;
}

.columns-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 16px;
}

.columns-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    padding: 0;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.columns-carousel::-webkit-scrollbar {
    display: none;
}

.column-carousel-item {
    flex: 0 0 300px;
    padding: 0 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    height: 320px;
}

.column-card {
    border: 1px solid #e1e5e9;
    border-radius: 16px;
    background-color: #ffffff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.column-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: #cc0000;
}



/* Yazar Bilgisi Container */
.column-author-container {
    background: #f8f9fa;
    padding: 8px 14px;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.author-info-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-left: 4px;
}

.author-image {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #ddd !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    border: 2px solid #fff !important;
}

.author-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.author-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.author-name {
    font-weight: 600;
    color: #333;
    font-size: 0.44rem;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.author-role {
    font-size: 0.38rem;
    color: #777;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1px;
    white-space: nowrap;
}

.publish-date {
    font-size: 0.34rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

/* İçerik Container */
.column-content-container {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    height: calc(100% - 40px);
    position: relative;
}

.column-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.7em;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.3px;
}

.column-excerpt {
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    font-family: 'Roboto Condensed', sans-serif;
}

.read-more-btn {
    background: linear-gradient(135deg, #cc0000, #a30000);
    color: white;
    padding: 11px 18px;
    border-radius: 22px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(204, 0, 0, 0.25);
    align-self: flex-start;
    border: none;
    outline: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #a30000, #cc0000);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.35);
    color: white;
}



.column-card.view-all-card {
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    height: calc(100% - 2px);
}

.view-all-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.view-all-content i {
    font-size: 24px;
    color: #cc0000;
    margin-bottom: 10px;
}

.view-all-content span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.all-columns-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Silinen veya değiştirilen stiller */
.editors-picks-authors-container {
    display: none;
}

.sidebar-authors-section {
    display: none;
}

/* Responsive stiller */
@media (max-width: 992px) {
    .column-carousel-item {
        flex: 0 0 280px;
        height: 280px;
    }
    

    
    .column-author-container {
        min-height: 36px;
        padding: 6px 12px;
    }
    
    .author-info-wrapper {
        gap: 8px;
        margin-left: 3px;
    }
    
    .author-image {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        max-width: 34px !important;
        max-height: 34px !important;
    }
    
    .author-name {
        font-size: 0.4rem;
        max-width: 180px;
    }
    
    .author-role {
        font-size: 0.44rem;
    }
    
    .publish-date {
        font-size: 0.38rem;
    }
    
    .column-title {
        font-size: 1.05rem;
    }
    
    .column-content-container {
        padding: 14px 16px 16px;
        height: calc(100% - 36px);
    }
}

@media (max-width: 768px) {
    .column-carousel-item {
        flex: 0 0 260px;
        height: 260px;
    }
    
    .column-author-container {
        min-height: 40px;
        padding: 6px 12px;
    }
    
    .author-info-wrapper {
        gap: 7px;
        margin-left: 2px;
    }
    
    .author-image {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
    }
    
    .author-name {
        font-size: 0.36rem;
        max-width: 160px;
    }
    
    .author-role {
        font-size: 0.34rem;
    }
    
    .publish-date {
        font-size: 0.28rem;
    }
    
    .column-content-container {
        padding: 12px 14px 14px;
        height: calc(100% - 40px);
    }
    

    
    .column-title {
        font-size: 1rem;
        margin-bottom: 10px;
        min-height: 2.4em;
    }
    
    .column-excerpt {
        font-size: 0.8rem;
        margin-bottom: 14px;
        -webkit-line-clamp: 2;
    }
    
    .read-more-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .column-carousel-item {
        flex: 0 0 240px;
        height: 240px;
    }
    
    .column-author-container {
        min-height: 37px;
        padding: 5px 10px;
    }
    
    .author-info-wrapper {
        gap: 6px;
        margin-left: 2px;
    }
    
    .author-image {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        min-height: 26px !important;
        max-width: 26px !important;
        max-height: 26px !important;
    }
    
    .author-name {
        font-size: 0.32rem;
        max-width: 140px;
    }
    
    .author-role {
        font-size: 0.28rem;
    }
    
    .publish-date {
        font-size: 0.26rem;
    }
    
    .column-content-container {
        padding: 10px 12px 12px;
        height: calc(100% - 37px);
    }
    

    
    .column-title {
        font-size: 0.9rem;
    }
    
    .column-excerpt {
        font-size: 0.7rem;
    }
    
    .read-more-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .author-carousel-item {
        flex: 0 0 140px;
        height: 220px;
    }
    
    .author-card .author-img {
        width: 55px;
        height: 55px;
    }
    
    .author-card {
        padding: 12px;
    }
    
    .author-card .author-info h4 {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }
    
    .author-card .author-info p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .author-card .author-info .read-more {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

/* Kategorilere Göre Haberler Bölümü */
.category-news-section {
    margin: 40px 0;
    padding: 0 15px;
}

.category-news-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.category-news-section .section-header h3 {
    color: white !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.view-all-link {
    color: #cc0000;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    margin-top: 10px;
    align-self: flex-end;
}

.view-all-link:hover {
    color: #990000;
}

.category-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.category-news-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.news-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-news-card .news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.category-news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-news-card:hover .news-image img {
    transform: scale(1.05);
}

.category-news-card .news-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-news-card .news-content h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: none;
    font-weight: 600;
    height: 42px; /* 2 satır için sabit yükseklik */
}

.category-news-card .news-content p {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 67px; /* 3 satır için sabit yükseklik */
}

.category-news-card .read-more {
    color: #cc0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.category-news-card .read-more:hover {
    color: #990000;
}

.category-news-card .read-more:after {
    content: " Devamını Oku";
}

/* Responsive için kategori haberleri */
@media (max-width: 768px) {
    .category-news-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .category-news-section {
        margin: 30px 0;
        padding: 0 10px;
    }
    
    .category-news-section .section-header h3 {
        font-size: 1.2rem;
    }
    
    .category-news-card .news-image {
        height: 150px;
    }
}

/* Haber Detay Sayfası Stilleri */
.news-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.news-detail-main {
    flex: 3;
    min-width: 0;
}

.news-detail-sidebar {
    flex: 1;
    min-width: 300px;
}

.news-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    position: relative;
}

.news-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #333;
}

.title-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 15px;
    width: 100%;
}

.category-badge {
    padding: 6px 12px;
    background-color: #cc0000;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 3px;
    z-index: 10;
}

.category-badge i {
    font-size: 0.8rem;
}

.category-badge:hover {
    background-color: #990000;
    color: #fff;
}

/* news-image-container için stiller */
.news-image-container {
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    position: relative;
    height: auto;
}

.news-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}

.news-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s;
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 576px) {
    .news-title {
        font-size: 1.4rem;
}

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
}

    .social-share {
        margin-top: 10px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
}

    .share-buttons {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .news-content {
        font-size: 0.95rem;
}

    .news-image-container {
        margin-bottom: 15px;
}

    .news-image img {
        max-height: 400px;
    }
}

/* Tablet cihazlar için responsive ayarlar */
@media (min-width: 577px) and (max-width: 768px) {
    .news-title {
        font-size: 1.6rem;
    }
    
    .news-meta-category {
        flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

    .news-image img {
        max-height: 500px;
    }
}

/* Yazarlarımız Sayfası */
.authors-page-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.authors-page-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #cc0000;
}

.authors-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.authors-page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: italic;
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.author-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.author-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.author-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.author-image-wrapper {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

.author-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.author-card:hover .author-image {
    transform: scale(1.05);
}

.author-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.author-name:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #cc0000;
}

.author-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.author-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #777;
}

.author-stats i {
    color: #cc0000;
    margin-right: 5px;
}

.author-link {
    display: inline-block;
    background-color: #cc0000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.author-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.author-link:hover {
    background-color: #990000;
    color: #fff;
}

.author-link:hover i {
    transform: translateX(3px);
}

.no-authors-message {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.no-authors-message i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 15px;
}

/* Responsive Tasarım - Yazarlar Sayfası */
@media (max-width: 992px) {
    .authors-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .authors-page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .authors-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .author-image-wrapper {
        padding-top: 60%;
    }
    
    .authors-page-title {
        font-size: 2rem;
    }
    
    .authors-page-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .authors-grid {
        grid-template-columns: 1fr;
    }
    
    .authors-page-title {
        font-size: 1.8rem;
    }
    
    .authors-page-subtitle {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1.3rem;
    }
}

/* Yazar Profil Sayfası */
.author-profile {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
    }
    
.author-profile-header {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    }
    
.author-image-container {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
    background-color: #f8f8f8;
    }
    
.author-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.author-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.author-stats span {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background-color: #f8f8f8;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
}

.author-stats i {
    margin-right: 5px;
    color: #cc0000;
}

.author-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag-badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f0f0;
    color: #555;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.tag-badge:hover {
    background-color: #e0e0e0;
    }
    
.social-links {
    display: flex;
    gap: 10px;
    }

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
    }
    
.twitter {
    background-color: #000000;
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.linkedin {
    background-color: #0077b5;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.author-bio {
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
    white-space: pre-line;
}

/* Yazarın Yazıları Bölümü */
.author-columns-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 3px;
    background-color: #cc0000;
}

.author-columns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.author-column-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: all 0.3s;
    display: flex;
    gap: 15px;
    height: 100%;
}

.author-column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.column-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    min-width: 60px;
    background-color: #f8f8f8;
    border-radius: 8px;
    color: #555;
    text-align: center;
}

.date-day {
    font-size: 1.2rem;
    font-weight: 700;
    color: #cc0000;
}

.date-month {
    font-size: 0.85rem;
    text-transform: uppercase;
}

.date-year {
    font-size: 0.85rem;
}

.column-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.column-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.column-title a:hover {
    color: #cc0000;
}

.column-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #cc0000;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(3px);
}

.no-columns-message, .not-found-message {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.no-columns-message i, .not-found-message i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ddd;
}

.not-found-message h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.not-found-message p {
    margin-bottom: 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background-color: #cc0000;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.back-btn:hover {
    background-color: #aa0000;
    color: #fff;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .author-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-image-container {
        margin-bottom: 20px;
    }
    
    .author-stats, .author-tags, .social-links {
        justify-content: center;
    }
    
    .author-columns-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
}

    .section-title {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .author-profile {
        padding: 20px;
    }
    
    .author-name {
        font-size: 1.8rem;
    }
    
    .author-image-container {
        width: 150px;
        height: 150px;
    }
    
    .author-column-card {
        flex-direction: column;
        align-items: center;
    text-align: center;
    }
    
    .column-date {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 5px;
        margin-bottom: 15px;
}

    .date-day, .date-month, .date-year {
        font-size: 0.9rem;
}

    .date-month:before {
        content: '/';
        margin-right: 5px;
}

    .date-year:before {
        content: '/';
        margin-right: 5px;
}
}

/* Sidebar başlıkları için kırmızı arkaplan stili */
.sidebar-title-red {
    background-color: #cc0000;
    color: white;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 5px 5px 0 0;
    font-size: 1rem;
    text-align: center;
    border-bottom: none;
}

.sidebar-title-red:hover {
    background-color: #990000;
    transition: background-color 0.3s ease;
}

/* Responsive tasarım için slider stilleri */
@media (max-width: 768px) {
    .slide-excerpt {
        display: none; /* Mobilde açıklama gizle */
    }
}

@media (max-width: 576px) {
    .slide-category-badge {
        font-size: 12px;
        padding: 4px 8px;
        top: 15px;
        left: 15px;
    }
}

/* Slider Navigasyon Okları */
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 35;
    width: 100%;
    height: 0;
    /* Mobilde her zaman görünür */
    opacity: 1;
    visibility: visible;
}

.slider-arrow {
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 18px;
    opacity: 0.9;
    z-index: 36;
    position: relative;
}

.slider-arrow:hover {
    background-color: rgba(204, 0, 0, 0.9);
    opacity: 1;
    transform: scale(1.1);
    cursor: pointer;
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow:focus {
    outline: 2px solid #cc0000;
    outline-offset: 2px;
}

.slider-prev {
    margin-left: 15px;
}

.slider-next {
    margin-right: 15px;
}

/* Mobil cihazlarda ok boyutunu küçült */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
        display: flex !important;
        opacity: 0.9;
        background: rgba(0,0,0,0.8);
        z-index: 100;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .slider-prev {
        margin-left: 10px;
    }
    
    .slider-next {
        margin-right: 10px;
    }
    
    .slider-nav {
        display: flex !important;
        bottom: 15px;
        z-index: 100;
        pointer-events: auto !important;
    }
    
    .slider-number {
        display: flex !important;
        opacity: 0.9;
        background: rgba(0,0,0,0.8);
        color: white;
        border: 1px solid rgba(255,255,255,0.3);
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .slider-arrows {
        display: flex !important;
        z-index: 100;
        pointer-events: auto !important;
    }
}

@media (max-width: 576px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
        display: flex !important;
        opacity: 1;
        background: rgba(0,0,0,0.9);
        z-index: 100;
    }
    
    .slider-prev {
        margin-left: 8px;
    }
    
    .slider-next {
        margin-right: 8px;
    }
    
    .slider-nav {
        display: flex !important;
        bottom: 10px;
        z-index: 100;
    }
    
    .slider-number {
        display: flex !important;
        opacity: 1;
        background: rgba(0,0,0,0.9);
        color: white;
        border: 1px solid rgba(255,255,255,0.5);
        font-size: 12px;
        min-width: 30px;
        height: 30px;
    }
    
    .slider-arrows {
        display: flex !important;
        z-index: 100;
    }
} 

/* Köşe Yazıları Sayfası Stilleri */
.columns-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    background: linear-gradient(135deg, #cc0000, #990000);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
}

.page-title-container h1.page-title {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-title i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 300;
}

.columns-stats {
    text-align: right;
}

.stats-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.columns-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.columns-main {
    min-height: 500px;
}

.columns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.column-article {
    display: block;
}

.column-card-full {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.column-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.column-author-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.column-author-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #cc0000;
    font-size: 0.9rem;
    font-weight: 700;
}

.column-author-name i {
    color: #cc0000;
    font-size: 1rem;
}

.column-type-badge {
    background: linear-gradient(135deg, #cc0000, #990000);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.column-content-wrapper {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.column-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Köşe Yazarı yazısını gizle */
.author-role {
    display: none !important;
}

.column-meta > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.column-meta i {
    color: #cc0000;
    font-size: 0.8rem;
}

.author-name {
    color: #cc0000 !important;
    font-weight: 600;
}

.column-title {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 700;
}

.column-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.column-title a:hover {
    color: #cc0000;
}

.column-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.column-actions {
    margin-top: auto;
}

.read-column-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #cc0000, #990000);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.2);
}

.read-column-btn:hover {
    background: linear-gradient(135deg, #990000, #770000);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
    color: white;
}

.read-column-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-column-btn:hover i {
    transform: translateX(3px);
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.pagination-btn:hover {
    background: #cc0000;
    color: white;
    border-color: #cc0000;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 15px;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pagination-number:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
}

.pagination-number.active {
    background: #cc0000;
    color: white;
    border-color: #cc0000;
}

.pagination-dots {
    color: #666;
    font-weight: 600;
    padding: 0 5px;
}

/* Sidebar Styles */
.columns-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.sidebar-title i {
    color: #cc0000;
    font-size: 1rem;
}

.popular-columns-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-column-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #cc0000;
}

.popular-column-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    border-left-color: #990000;
}

.popular-content {
    width: 100%;
}

.popular-title {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.popular-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-title a:hover {
    color: #cc0000;
}

.popular-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #666;
}

.popular-author {
    font-weight: 600;
    color: #cc0000 !important;
}

.popular-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-authors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sidebar-author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.sidebar-author-card:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.sidebar-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-author-name {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.sidebar-author-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-author-name a:hover {
    color: #cc0000;
}

.sidebar-widget-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.view-all-authors {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cc0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-all-authors:hover {
    color: #990000;
}

.view-all-authors i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-all-authors:hover i {
    transform: translateX(3px);
}

/* No Content Message */
.no-columns-found {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.no-content-message {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.no-content-message i {
    font-size: 4rem;
    color: #cc0000;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-content-message h3 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

.no-content-message p {
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #cc0000;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: #990000;
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .columns-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .columns-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
    }
    
    .page-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .page-title-container h1.page-title {
        font-size: 2rem;
    }
    
    .sidebar-authors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .columns-page-container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .page-title-container h1.page-title {
        font-size: 1.7rem;
        gap: 10px;
    }
    
    .page-title i {
        font-size: 1.5rem;
    }
    
    .columns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .column-content-wrapper {
        padding: 20px;
    }
    
    .column-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .column-author-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .column-type-badge {
        align-self: flex-start;
    }
    
    .pagination {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination-numbers {
        margin: 0 10px;
    }
    
    .sidebar-authors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .page-title-container h1.page-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .stats-item {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .column-title {
        font-size: 1.1rem;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .no-content-message {
        padding: 30px 20px;
    }
    
    .no-content-message i {
        font-size: 3rem;
    }
}

/* Köşe yazıları bölümü mobil düzeltmeleri */
@media (max-width: 576px) {
    .column-item .author-img {
        width: 60px !important;
        margin-right: 12px !important;
    }
    
    .column-item .author-img img {
        height: 60px !important;
        width: 60px !important;
    }
    
    .column-item .author-info h4 {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        margin-bottom: 6px !important;
    }
    
    .column-item .author-info p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
    
    .column-item {
        margin-bottom: 16px !important;
        padding-bottom: 16px !important;
    }
    
    .read-more {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
    }
    
    .column-list-container {
        padding: 20px !important;
    }
    
    /* Sosyal medya ikonları - küçük mobil */
    .social-media-bar {
        gap: 8px;
        padding: 2px 5px;
        justify-content: center;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
    }
}

/* Öne Çıkan Haberler - Basit Liste Formatı */
.featured-list {
    padding: 0;
}

.featured-item {
    display: flex;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: none;
}

.featured-item:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.featured-item .author-img,
.featured-item .author-logo {
    width: 70px;
    margin-right: 12px;
    flex-shrink: 0;
}

.featured-item .author-img img,
.featured-item .author-logo img {
    width: 100%;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.featured-item .author-info {
    flex: 1;
}

.featured-item .author-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.featured-item .author-info p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

.featured-item .read-more {
    color: #cc0000;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 600;
}

.featured-item .read-more:hover {
    text-decoration: underline;
}

.all-featured {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: none;
}

.all-featured .all-link {
    display: inline-block;
    background-color: #cc0000;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.all-featured .all-link:hover {
    background-color: #aa0000;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .featured-item .author-img,
    .featured-item .author-logo {
        width: 60px;
        margin-right: 10px;
    }
    
    .featured-item .author-img img,
    .featured-item .author-logo img {
        height: 60px;
    }
    
    .featured-item .author-info h4 {
        font-size: 0.85rem;
    }
    
    .featured-item .author-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .featured-item .author-img,
    .featured-item .author-logo {
        width: 50px;
        margin-right: 8px;
    }
    
    .featured-item .author-img img,
    .featured-item .author-logo img {
        height: 50px;
    }
    
    .featured-item .author-info h4 {
        font-size: 0.8rem;
    }
    
    .featured-item .author-info p {
        font-size: 0.85rem;
    }
    
    .featured-item .read-more {
        font-size: 0.75rem;
    }
}

/* Mobile Menu FORCED Visibility - Emergency Fix */
@media (max-width: 768px) {
    /* Force navigation visibility */
    nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 10px !important;
        background-color: #fff !important;
        padding: 5px !important;
        border-top: 1px solid #e5e5e5 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Force menu visibility */
    .nav-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        list-style-type: none !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        padding: 0 !important;
        position: static !important;
        background-color: #fff !important;
        width: 100% !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
        left: auto !important;
        top: auto !important;
        height: auto !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        overflow: visible !important;
    }
    
    /* Force menu items visibility */
    .nav-menu li {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        padding: 2px 0 !important;
        margin-right: 8px !important;
        flex-shrink: 0 !important;
        border-bottom: none !important;
        width: auto !important;
        text-align: left !important;
        position: relative !important;
        background: none !important;
    }
    
    .nav-menu li:last-child {
        margin-right: 0 !important;
    }
    
    /* Force menu links visibility */
    .nav-menu li a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        text-align: center !important;
        border-radius: 4px !important;
        transition: all 0.3s ease !important;
        width: auto !important;
        background: rgba(204, 0, 0, 0.05) !important;
        border: 1px solid rgba(204, 0, 0, 0.2) !important;
        color: #333 !important;
        text-decoration: none !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .nav-menu li a:hover {
        background-color: rgba(204, 0, 0, 0.1) !important;
        color: #cc0000 !important;
    }
    
    /* Debug borders removed */
}