/* Duru Tema - Ana Stil */

/* =====================================================
   ANA SAYFA (INDEX) LAYOUT STİLLERİ
   ===================================================== */

/* Ana içerik wrapper - padding sıfırlama */
.home-content-wrapper {
    padding: 0;
}

/* Modül spacing - Standart modül aralığı */
.home-module-spacing {
    margin: 0 0 15px 0;
}

/* Hızlı servisler spacing */
.home-quick-services-spacing {
    margin: 10px 0 20px 0;
}

/* Featured + Editor bölümü */
.featured-editor-section {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Featured + Editor grid layout */
.featured-editor-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Editör + Flaş panel */
.editor-flash-panel {
    display: grid;
    grid-template-rows: 1fr 0.67fr;
    gap: 20px;
    height: 600px;
}

/* İstanbul + Tokat yan yana bölümü */
.home-dual-category-section {
    background: white;
    padding: 15px 0;
    margin: 0 0 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Responsive - Featured Editor Grid */
@media (max-width: 992px) {
    .featured-editor-grid {
        grid-template-columns: 1fr;
    }
    .editor-flash-panel {
        height: auto;
        grid-template-rows: auto auto;
    }
}

/* =====================================================
   GLOBAL STİLLER
   ===================================================== */

/* Yukarı Çık Butonu (global stil) */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e11d48;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    z-index: 999;
    font-weight: bold;
}

#scrollToTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.7);
    background: #be123c; /* Hover'da koyu kırmızı */
}

#scrollToTopBtn:active {
    transform: translateY(-2px);
}

#scrollToTopBtn.show {
    display: flex;
}


:root {
    --primary-color: #E63946;
    --secondary-color: #1D3557;
    --light-color: #F1FAEE;
    --text-color: #333;
    --border-color: #ddd;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #f5f5f5;
}

/* Container - 1200px genişlik */
.duru-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 1200px) {
    .duru-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .duru-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .duru-container {
        padding: 0 10px;
    }
}

/* Üst Header (Kırmızı) */
.duru-header-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
}

.duru-header-top .duru-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.duru-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.duru-logo img {
    max-height: 40px;
    width: auto;
}

/* Header Sağ Taraf */
.duru-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .duru-header-right {
        gap: 10px;
    }
}

/* Arama Formu */
.duru-search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
    max-width: 350px;
    min-width: 200px;
}

.duru-search-input {
    border: none;
    padding: 8px 12px;
    flex: 1;
    outline: none;
    font-size: 14px;
}

.duru-search-input::placeholder {
    color: #999;
}

.duru-search-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.3s;
}

.duru-search-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .duru-search-form {
        max-width: 250px;
        min-width: 150px;
    }

    .duru-search-input {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .duru-search-form {
        max-width: 100%;
        min-width: auto;
    }
}

/* Header İkonları */
.duru-header-icons {
    display: flex;
    gap: 15px;
}

.duru-icon-btn {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.duru-icon-btn:hover {
    opacity: 0.8;
}

/* Alt Header (Kategoriler + Döviz) */
.duru-header-bottom {
    background-color: white;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    position: relative;
    z-index: 50;
}

.duru-header-bottom .duru-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Kategoriler */
.duru-categories {
    display: flex;
    gap: 0;
    flex: 1;
    flex-wrap: wrap;
    overflow: visible;
    justify-content: flex-start;
    position: relative;
    z-index: 51;
}

.duru-categories::-webkit-scrollbar {
    height: 3px;
}

.duru-categories::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.duru-categories::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.duru-category-link {
    padding: 8px 15px;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    border-right: 1px solid var(--border-color);
    transition: color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.duru-categories > *:first-child .duru-category-link {
    padding-left: 0;
}

.duru-categories > *:last-child .duru-category-link {
    border-right: none;
}

.duru-category-link:hover {
    color: var(--primary-color);
}

.duru-category-item {
    position: relative;
    flex-shrink: 0;
}

.duru-category-arrow {
    font-size: 10px;
}

.duru-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    border: 1px solid var(--border-color);
    min-width: 160px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 1000;
    display: none;
}

.duru-submenu-link {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
}

.duru-submenu-link:hover {
    background: #f8f8f8;
    color: var(--primary-color);
}

.duru-category-item:hover .duru-submenu {
    display: block;
}

/* Döviz Modülü */
.duru-currency-module {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.duru-currency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    text-align: center;
}

.duru-currency-name {
    font-weight: bold;
    color: var(--text-color);
    font-size: 11px;
}

.duru-currency-value {
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
}

.duru-currency-change {
    font-size: 11px;
    margin-top: 2px;
}

.duru-currency-change.up {
    color: #28a745;
}

.duru-currency-change.down {
    color: #dc3545;
}

@media (max-width: 1366px) {
    .duru-category-link {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .duru-header-bottom .duru-container {
        gap: 15px;
    }

    .duru-currency-module {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .duru-header-bottom .duru-container {
        flex-direction: column;
        gap: 10px;
    }

    .duru-categories {
        width: 100%;
    }

    .duru-currency-module {
        width: 100%;
        justify-content: space-around;
    }

    .duru-category-link {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .duru-currency-item {
        font-size: 11px;
    }

    .duru-currency-value {
        font-size: 12px;
    }

    /* Hamburger Menü - Mobil */
    #sidebar-menu {
        width: 85% !important;
        max-width: 320px !important;
    }
}

/* Ana İçerik */
.duru-main {
    min-height: calc(100vh - 300px);
    padding: 15px 0;
    width: 100%;
}

.duru-main .duru-container {
    width: 100%;
}

/* Hızlı Servisler 8'li Grid (Döviz modülü altı) */
.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 8px;
    background: #ffffff;
    padding: 10px 12px 6px 12px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.quick-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 4px;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.quick-service-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #a855f7 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
    font-size: 18px;
}

.quick-service-label {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.quick-service-item:hover {
    transform: translateY(-2px);
    background: #f9fafb;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.14);
}

@media (max-width: 1024px) {
    .quick-services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
/* Sidebar kategori a 1ac 79l 72 men fc */
.duru-sidebar-cat {
    position: relative;
    display: block;
}

.duru-sidebar-cat .duru-sidebar-link {
    display: block;
}

.duru-sidebar-cat .duru-sidebar-toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44px; /* Tıklama alanını büyüttük */
    background: none;
    border: none;
    color: #ffffff; /* Ok beyaz */
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.duru-sidebar-cat .duru-sidebar-toggle i {
    transition: transform 0.2s ease;
}

.duru-sidebar-cat.open .duru-sidebar-toggle i {
    transform: rotate(180deg);
}

.duru-sidebar-cat .duru-sidebar-subcats {
    display: none;
    padding-top: 4px;
}

.duru-sidebar-cat.open .duru-sidebar-subcats {
    display: block;
}


@media (max-width: 640px) {
    .quick-services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .quick-service-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .quick-service-label {
        font-size: 10px;
    }
}


/* Footer */
.duru-footer {
    background-color: #111827; /* Sabit koyu renk - footer değişmez */
    color: white;
    padding: 40px 0 20px;
    margin-top: 40px;
    width: 100%;
}

/* Ana sayfa döviz barı - responsive */
.home-currency-bar {
    background: linear-gradient(90deg, #06b6d4 0%, #dc2626 100%);
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    gap: 0;
    align-items: stretch;
    border-radius: 4px;
    overflow-x: auto;
}

.home-currency-item {
    flex: 1 0 110px;
    min-width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding: 0 6px;
}

.home-currency-item:last-child {
    border-right: none;
}

.home-currency-item span,
.home-currency-item i {
    color: #fff;
}

.home-currency-location span:first-child {
    font-size: 13px;
    font-weight: 700;
}

.home-currency-location i {
    font-size: 16px;
    transform: rotate(20deg);
}

.home-currency-temp {
    font-size: 14px;
    font-weight: 700;
}

.home-currency-symbol {
    font-size: 14px;
}

.home-currency-value {
    font-size: 15px;
    font-weight: 600;
}

.home-currency-change {
    font-size: 12px;
}

.home-currency-change.positive {
    color: #bbf7d0;
}

.home-currency-change.negative {
    color: #fecaca;
}

.home-currency-source {
    flex: 0 0 60px;
    min-width: 60px;
    background: rgba(0,0,0,0.15);
}

.home-currency-source small {
    font-size: 10px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .home-currency-bar {
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        overflow-x: hidden;
        flex-wrap: wrap;
    }

    .home-currency-item {
        flex: 0 0 50%;
        min-width: 50%;
        height: 38px;
    }

    .home-currency-location {
        flex: 0 0 100%;
        min-width: 100%;
        justify-content: center;
        padding-left: 0;
    }

    .home-currency-value {
        font-size: 14px;
    }

    .home-currency-change {
        font-size: 11px;
    }
}


.duru-footer .duru-container {
    width: 100%;
}

.duru-footer h5 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 16px;
}

.duru-footer p {
    font-size: 14px;
    line-height: 1.6;
}

.duru-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.duru-footer-links li {
    width: 50%;
    margin-bottom: 8px;
}

/* Istanbul + Tokat grid (yan yana, mobilde alta)
   Inline stil index.php'den al	md	; buraya ta1 bidik. */
.istanbul-tokat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 1024px) {
    .istanbul-tokat-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .istanbul-tokat-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Duru Tema - D fcnya kategorisi kart mod dcl fc (category-dunya-card) */
.dunya-block {
    background: #ffffff;
    padding: 15px 0;
    margin: 0 0 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.dunya-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.dunya-top-card {
    min-height: 140px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dunya-top-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.dunya-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    color: inherit;
    background: #fafafa;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.dunya-list-item:hover {
    background: #ffffff;
    transform: translateX(3px);
}

.dunya-top-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.dunya-right-list {
    background: #fafafa;
    border-radius: 6px;
    overflow: hidden;
    padding: 13px 0;
}

.dunya-list-title {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dunya-list-item span:last-child {
    flex: 1 1 0;
    min-width: 0;
}

@media (max-width: 1024px) {
    .dunya-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dunya-top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dunya-top-grid > a:nth-child(n+5) {
        display: none !important;
    }

    .dunya-top-card h3 {
        font-size: 10px !important;
    }
}

@media (max-width: 576px) {
    .dunya-header h2 {
        font-size: 20px;
    }
}

.duru-footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

@media (max-width: 576px) {
    /* Mobilde de kategoriler 2 kolon kalsın, daha az yer kaplasın */
    .duru-footer-links li {
        width: 50%;
    }
}

.duru-footer-links a:hover {
    color: white;
}

.duru-social-links {
    display: flex;
    gap: 15px;
}

.duru-social-link {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}


.duru-social-x {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.1em;
}

@media (max-width: 480px) {
    .duru-social-x {
        width: 0.9em;
        height: 0.9em;
    }
}

.duru-social-link:hover {
    color: var(--primary-color);
}

.duru-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 13px;
}

.duru-footer-left {
    text-align: left;
}

.duru-footer-right {
    text-align: right;
}

.duru-footer-right a {
    color: #f3f4f6;
    font-weight: 600;
    text-decoration: none;
}

.duru-footer-right a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .duru-footer {
        padding: 30px 0 15px;
    }

    .duru-footer h5 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .duru-footer p {
        font-size: 13px;
    }

    /* Tablet ve alt31nda footer bloklar31 alt alta gelsin */
    .duru-footer .duru-container > div:first-child {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .duru-footer {
        padding: 20px 0 10px;
    }

    .duru-footer h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .duru-footer p {
        font-size: 12px;
    }

    .duru-social-link {
        font-size: 18px;
    }

    /* Telefon ekran31nda da tek kolon ve daha s31k aral31klar */
    .duru-footer .duru-container > div:first-child {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Alt sat31r: telif ve Haberpaketleri mobile daha d7uzg7cn g 7676ns76n */
    .duru-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .duru-footer-left,
    .duru-footer-right {
        text-align: center;
    }
}

/* Kutu Haberler Hover Efekti */
.boxed-news-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.boxed-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

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

.boxed-news-card:hover img {
    transform: scale(1.1);
}

/* Sidebar Menü - Modern görünüm */
.duru-sidebar-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #3f5876; /* #2c3e50'den daha koyu değil, daha ferah mavi-gri */
    box-shadow: 8px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 9998;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-radius: 0 18px 18px 0;
    padding-bottom: 16px;
}

.duru-sidebar-header {
    background: var(--primary-color); /* Yandan menü üst logo alanı tema ana rengi */
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.duru-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}

.duru-sidebar-logo img {
    height: 26px;
    width: auto;
    display: block;
}

.duru-sidebar-close {
    background: rgba(15,23,42,0.06);
    border: 0;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: #111827; /* X işareti koyu görünsün */
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.duru-sidebar-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.duru-sidebar-section {
    padding: 16px 0 20px;
    background: transparent;
}

.duru-sidebar-categories {
    flex: 1;
}

.duru-sidebar-section + .duru-sidebar-section {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.duru-sidebar-section-title {
    padding: 0 16px 8px;
}

.duru-sidebar-section-title h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.duru-sidebar-link {
    display: block;
    padding: 11px 20px;
    color: #f9fafb; /* Varsayılan: Kategoriler beyaz */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.duru-sidebar-link:hover {
    background: rgba(15, 23, 42, 0.9);
}

.duru-sidebar-pages {
    margin-top: 4px;
}

/* Sayfalar başlığı: çok yer kaplamadan ince şerit gibi */
.duru-sidebar-pages-toggle {
    width: 100%;
    background: none;
    border: 0;
    padding: 3px 18px 4px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d1d5db;
}

.duru-sidebar-pages-title {
    font-size: 11px;
    font-weight: 700;
}

.duru-sidebar-pages-icon {
    font-size: 13px;
}

/* Sayfalar listesi: normal kategori çizgileriyle aynı hizada, sadece biraz içerden */
.duru-sidebar-pages-list .duru-sidebar-link {
    padding-left: 32px;
    color: #e5e7eb;
}


.duru-sidebar-socials-list {
    display: flex;
    flex-wrap: nowrap; /* Her formatta tek satır */
    gap: 12px;
    padding: 0 16px 6px;
    overflow: hidden; /* Masaüstünde scrollbar gizle */
}

@media (max-width: 640px) {
    .duru-sidebar-socials-list {
        overflow-x: auto; /* Sadece küçük ekranlarda yana kaydırma olsun */
    }
}

.duru-sidebar-social {
    flex: 0 0 auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.duru-sidebar-social:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.55);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .duru-sidebar-menu {
        width: 85%;
        max-width: 320px;
        box-shadow: none; /* Mobilde gölgeyi kaldır */
    }

    #sidebar-menu .duru-social-link:hover {
        box-shadow: none;
        transform: none;
    }
}

/* Sosyal Medya İkonları Hover (sidebar içindeki butonlar için ekstra efekt) */
#sidebar-menu .duru-social-link:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* ============================================
   SON DAKİKA - PROFESYONEL TASARIM
   ============================================ */
.breaking-news-container {
    width: 100%;
    max-width: 1200px;
    margin: 8px auto 0;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}

.breaking-news-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 50px;
}

.breaking-news-label {
    background: #1a1a1a;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-shrink: 0;
    min-width: 200px;
}

.breaking-news-label span {
    color: white;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: none;
}

.breaking-news-label .breaking-text {
    margin-right: 4px;
}

/* Son Dakika - Mobilde sadece ikon görünsün */
@media (max-width: 768px) {
    .breaking-news-label {
        min-width: 60px !important;
        padding: 0 10px !important;
    }

    .breaking-news-label .breaking-text {
        display: none !important;
    }

    .breaking-news-label .breaking-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #fff;
    }
}


.breaking-news-content {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to right, #ffc107 0%, #ff9800 50%, #ff9800 100%);
    display: flex;
    align-items: center;
}

.breaking-news-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.breaking-news-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-decoration: none;
    color: #333;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.breaking-news-item.active {
    opacity: 1;
    z-index: 10;
}

.breaking-news-item span {
    font-size: 22.176px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: none;
}

.breaking-news-item:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* ============================================
   FEATURED TOP SLIDER - ÜSTÜN MANŞET
   ============================================ */
.featured-top-slider {
    position: relative;
    overflow: hidden;
    margin: 0 0 15px 0;
    height: 300px;
    border-radius: 0;
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.25);
    /* T fcm alan header k f1rm f1z f1s f1, sa f0 tarafa do f0ru  e7ok hafif beyaz ge e7i fe sahip */
    background: var(--primary-color);
}

.featured-slide {
    position: absolute;
    inset: 0;
    display: none;
    text-decoration: none;
    color: inherit;
}

.featured-slide.is-active {
    display: flex;
}

.featured-slide-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.featured-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1s ease-out;
}

.featured-slide.is-active .featured-slide-image img {
    transform: scale(1.05);
}

.featured-slide-content {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    /* Sağdaki metin bloğu, arka planı şeffaf: Rengi üst kapsayıcıdan (featured-top-slider) alıyor */
    background: transparent;
}

.featured-slide-title-wrapper {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.featured-slide-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
    /* Gölge ve ekstra arka plan efekti yok */
    text-shadow: none;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Masaüstünde max 4 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Numaralar (Dots) */
.featured-numbers-container {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    padding: 10px 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(15,23,42,0.85), rgba(15,23,42,0.92));
    box-shadow: 0 18px 40px rgba(15,23,42,0.9);
    backdrop-filter: blur(18px);
}

.featured-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.35);
    color: #e5e7eb;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.featured-number span {
    display: inline-block;
    text-decoration: none;
}

.featured-number.is-active {
    background: var(--secondary-color);
    color: #ffffff; /* Aktif rakam beyaz */
    box-shadow: none; /* Kırmızının etrafındaki beyaz halka iptal */
}

.featured-number:hover {
    transform: translateX(2px);
    color: #ffffff; /* Hover'da da rakam beyaz kalsın */
}

/* ============================================
   RESPONSIVE TASARIM - TABLET (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    /* Manşet Slider - Tablet */
    .featured-slider-main {
        height: 450px !important;
    }

    .featured-slider-main a h2 {
        font-size: 36px !important;
    }

    /* Sağ Panel - Tablet */
    .editor-flash-panel {
        height: 450px !important;
    }

    /* Kategoriler - Tablet'te gizle */
    .duru-categories-bottom {
        display: none !important;
    }




}

/* ============================================
   RESPONSIVE TASARIM - MOBİL (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Üst Manşet - Mobil */
    .featured-top-slider {
        height: 360px !important; /* %30 civarı artırıldı */
        border-radius: 0 !important;
    }

    .featured-slide {
        flex-direction: column !important;
        position: absolute !important;
        height: 100% !important;
        border-radius: 0 !important;
    }

    .featured-slide-image {
        width: 100% !important;
        height: 100% !important;
        order: 1;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    .featured-slide-image img {
        filter: brightness(0.7) !important;
    }

    .featured-slide-content {
        width: 100% !important;
        height: 100% !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        order: 2;
        position: relative !important;
        background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, transparent 70%) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 22px 18px 28px 18px !important;
    }

    .featured-slide-content h2,
    .featured-slide-title {
        font-size: 20px !important;
        text-align: left !important;
        line-height: 1.3 !important;
        color: white !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Numaralar - Mobil (Solda dikey) */
    .featured-numbers-container {
        left: 12px !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 6px !important;
        padding: 8px 6px !important;
        border-radius: 999px !important;
    }

    .featured-numbers-container .featured-number {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        font-size: 11px !important;
    }

    /* SON DAKİKA - MOBİL */
    .breaking-news-inner {
        height: 45px;
    }

    .breaking-news-label {
        min-width: 140px;
        padding: 0 12px;
    }

    .breaking-news-label span {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .breaking-news-item span {
        font-size: 13px;
    }

    /* Kutu Haberler - Mobil (2 sütun) */
    .boxed-news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Manşet + Editörün Seçtiği - Mobil (Tek sütun) */
    .featured-editor-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }



    /* Manşet Slider - Mobil */
    .featured-slider-main {
        height: 300px !important;
    }

    .featured-slider-main a h2 {
        font-size: 20px !important;
        padding: 20px !important;
    }

    /* Sağ Panel - Mobil */
    .editor-flash-panel {
        grid-template-rows: 1fr 1fr !important;
        height: auto !important;
        gap: 15px !important;
    }

    /* Kategoriler - Mobil'de gizle */
    .duru-categories-bottom {
        display: none !important;
    }





    /* Header - Mobil */
    .duru-header-top .duru-container {
        flex-wrap: wrap;
    }

    .duru-header-right {
        width: 100%;
        justify-content: flex-end;
        margin-left: 0;

	    /* Yazarlar - Mobil geniş görünüm (eski haline dönüş) */
	    .authors-carousel {
	        overflow: visible;
	    }

	    .authors-carousel .author-card {
	        flex: 0 0 calc(33.333% - 20px);
	        min-width: 300px;
	    }

    }
}

/* ============================================
   RESPONSIVE TASARIM - KÜÇÜK MOBİL (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    /* Üst Manşet - Küçük Mobil */
    .featured-top-slider {
        height: 285px !important; /* Ek %35 artırıldı (210 -> ~285) */
    }

    .featured-slide-content {
        padding: 12px !important;
    }

    .featured-slide-content h2 {
        font-size: 14px !important;
    }

    /* Kutu Haberler - Küçük Mobil (1 sütun) */
    .boxed-news-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    /* Manşet Slider - Küçük Mobil */
    .featured-slider-main {
        height: 250px !important;
    }

    .featured-slider-main a h2 {
        font-size: 16px !important;
        padding: 15px !important;
    }

    /* Sağ Panel - Küçük Mobil */
    .editor-flash-panel {
        gap: 12px !important;
    }

    /* Döviz Modülü - Küçük Mobil */
    .duru-currency-module {
        flex-wrap: wrap;
        gap: 8px !important;
    }

    .duru-currency-item {
        flex: 0 0 calc(50% - 4px) !important;
    }


}

/* ============================================
   NEWS DETAIL PAGE STYLES
   ============================================ */

/* Most Read Card */
.news-most-read-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.news-most-read-card li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}
.news-most-read-card li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.news-most-read-card li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: #111827;
    border-radius: 6px;
    padding: 4px 4px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.news-most-read-card li a:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.news-most-read-card li a img {
    transition: transform 0.2s ease;
}
.news-most-read-card li a:hover img {
    transform: scale(1.03);
}

/* Trending News */
.trend-item-category {
    display: inline-block;
    padding: 2px 7px;
    font-size: 11px;
    font-weight: 700;
    background-color: #111827;
    color: #ffffff;
    border-radius: 2px;
    margin-bottom: 4px;
}
.trend-item-time {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #111827;
}
.trend-item-title {
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
    max-height: 3.3em;
    overflow: hidden;
}
.trending-news-card {
    background: #e11d48;
    border-radius: 0;
    padding: 14px 16px 16px;
    margin-top: 14px;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.trending-news-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.trending-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 8px;
}
.trending-news-header-icon {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
}
.trending-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.trending-news-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    transition: background 0.2s ease, transform 0.2s ease;
}
.trending-news-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(3px);
}
.trending-news-item:hover .trending-news-rank {
    background: #ffffff;
    color: #e11d48;
}
.trending-news-item:last-child {
    border-bottom: none;
}
.trending-news-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
}
.trending-news-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
}
.trending-news-thumb {
    flex: 0 0 96px;
    height: 60px;
    overflow: hidden;
    border-radius: 2px;
    background: rgba(0,0,0,0.15);
}
.trending-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trending-news-title {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}

/* Editor Picks Card */
.editor-picks-card {
    background: #ffffff;
    border-radius: 0;
    padding: 14px 14px 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    margin-bottom: 15px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.editor-picks-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}
.editor-picks-header {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}
.editor-picks-header-icon {
    margin-left: 8px;
    color: #9ca3af;
    font-size: 15px;
}
.editor-picks-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 8px 0 0;
    color: var(--primary-color);
}
.editor-picks-header-line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}
.editor-picks-main {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 10px;
}
.editor-picks-main-image {
    height: 190px;
    background: #e5e7eb;
    overflow: hidden;
    margin-bottom: 6px;
}
.editor-picks-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}
.editor-picks-main-title {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #111827;
}
.editor-picks-secondary-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.editor-picks-secondary-item {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    overflow: hidden;
    background: #0f766e;
    border-radius: 0;
    color: #ffffff;
    transition: background 0.2s ease, transform 0.2s ease;
}
.editor-picks-secondary-item:hover {
    background: #0d9488;
    transform: translateY(-1px);
}
.editor-picks-secondary-thumb {
    flex: 0 0 40%;
    min-width: 40%;
    max-width: 40%;
    background: rgba(0,0,0,0.15);
    overflow: hidden;
}
.editor-picks-secondary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}
.editor-picks-main:hover .editor-picks-main-image img,
.editor-picks-secondary-item:hover .editor-picks-secondary-thumb img {
    transform: scale(1.06);
}
.editor-picks-secondary-title {
    flex: 1;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.5;
}

/* News Meta */
.news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 18px;
}
.news-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-meta-item i {
    font-size: 13px;
    color: #9ca3af;
}
.news-meta-category {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    background: #111827;
    color: #f9fafb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.news-meta-category a {
    color: inherit;
    text-decoration: none;
}
.news-meta-category a:hover {
    text-decoration: underline;
}
.news-meta-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f4f6;
}
.news-meta-chip--accent {
    background: rgba(0,0,0,0.02);
    color: var(--primary-color);
}

/* News Detail Image */
.news-detail-image-wrapper {
    margin-bottom: 20px;
    border-radius: 0;
    overflow: hidden;
    max-height: 450px;
    position: relative;
    background: #000000;
}
.news-detail-image-wrapper img.news-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-detail-image-zoom-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: rgba(15,23,42,0.9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15,23,42,0.45);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.news-detail-image-zoom-btn i {
    font-size: 14px;
}
.news-detail-image-zoom-btn:hover {
    background: rgba(15,23,42,1);
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.6);
}

/* Lightbox */
.news-image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    z-index: 9999;
}
.news-image-lightbox.is-active {
    display: flex;
}
.news-image-lightbox-inner {
    position: relative;
    max-width: 1100px;
    width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-image-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 24px 70px rgba(0,0,0,0.6);
}
.news-image-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(15,23,42,0.95);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.news-image-lightbox-close i {
    font-size: 16px;
}

/* Share Toolbar */
.news-share-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    padding: 8px 12px;
    border-radius: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15,23,42,0.06);
    margin-bottom: 20px;
}
.news-share-toolbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.news-share-toolbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}
.news-share-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-right: 4px;
}
.news-share-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}
.news-share-icon-link {
    width: 32px;
    height: 32px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(15,23,42,0.18);
}
.news-share-icon-link--facebook {
    background: #1877f2;
}
.news-share-icon-link--x {
    background: #020617;
}
.news-share-icon-link--whatsapp {
    background: #16a34a;
}
.news-share-icon-link--email {
    background: #4b5563;
}
.news-share-icon-link--nextsocial {
    background: #2563eb;
}
.news-share-icon-link--nextsocial .news-share-nextsocial-letter {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    display: inline-block;
}
.news-share-icon-link--x .news-share-x-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
}
.news-share-icon-link--linkedin {
    background: #0a66c2;
}
.news-share-icon-link--telegram {
    background: #0088cc;
}

.news-toolbar-btn {
    width: 32px;
    height: 32px;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.news-toolbar-btn i {
    font-size: 14px;
}
.news-toolbar-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}
.news-toolbar-btn.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Previous/Next News Navigation */
.news-prev-next-card {
    margin-top: 40px;
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
    box-shadow: none;
    border-top: 2px solid #f0f0f0;
    padding-top: 40px;
}
.news-prev-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.news-prev-next-item {
    flex: 1 1 0;
    border-radius: 0;
    background: #ffffff;
    border: none;
    padding: 0;
    text-decoration: none;
    color: #111827;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    min-height: 140px;
}
.news-prev-next-item:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}
.news-prev-next-item::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
.news-prev-next-item:nth-child(2)::before {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}
.news-prev-next-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 6px;
    gap: 8px;
}
.news-prev-next-label i {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.news-prev-next-item:hover .news-prev-next-label i {
    transform: translateX(-4px);
}
.news-prev-next-item:nth-child(2):hover .news-prev-next-label i {
    transform: translateX(4px);
}
.news-prev-next-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    max-height: 3.2em;
    overflow: hidden;
    padding: 6px 16px 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-prev-next-item:hover .news-prev-next-title {
    color: var(--primary-color);
}

/* Video Embed */
.news-video-embed {
    margin-top: 24px;
    margin-bottom: 12px;
}
.news-video-embed iframe,
.news-video-embed video {
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
}
.news-extra-meta {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 4px;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
    font-size: 13px;
    color: #4b5563;
}
.news-extra-meta-item {
    display: flex;
    align-items: center;
}
.news-extra-meta-label {
    font-weight: 600;
    margin-right: 4px;
}
.news-extra-meta-value {
    font-weight: 500;
}

/* Inline Related Box */
.inline-related-box {
    margin: 18px 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15,23,42,0.25);
    transition: all 0.3s ease;
}
.inline-related-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.45);
}
.inline-related-box-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    padding: 10px 14px;
    gap: 12px;
    transition: all 0.3s ease;
}
.inline-related-box:hover .inline-related-box-link {
    padding: 12px 16px;
}
.inline-related-thumb {
    flex: 0 0 120px;
    height: 70px;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}
.inline-related-box:hover .inline-related-thumb {
    transform: scale(1.08);
}
.inline-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}
.inline-related-box:hover .inline-related-thumb img {
    transform: scale(1.1);
}
.inline-related-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    transition: all 0.3s ease;
}
.inline-related-box:hover .inline-related-title {
    letter-spacing: 0.5px;
}
.inline-related-box--1 { background: #f97316; }
.inline-related-box--1:hover { background: #ea580c; }
.inline-related-box--2 { background: #0ea5e9; }
.inline-related-box--2:hover { background: #0284c7; }
.inline-related-box--3 { background: #ef4444; }
.inline-related-box--3:hover { background: #dc2626; }

/* Related News Section */
.related-news-section {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.related-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.related-news-title {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.related-news-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 2px;
}
.related-news-view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.related-news-view-all:hover {
    gap: 10px;
    color: var(--secondary-color);
}
.related-news-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.related-news-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}
.related-news-card:hover {
    text-decoration: none;
}
.related-news-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}
.related-news-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    overflow: hidden;
}
.related-news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.related-news-card:hover .related-news-image {
    transform: scale(1.08);
}
.related-news-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.related-news-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.related-news-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.related-news-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #1f2937;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.related-news-card:hover .related-news-card-title {
    color: var(--primary-color);
}
.related-news-meta {
    display: none;
}
.related-news-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.related-news-meta-item i {
    color: var(--primary-color);
}

/* Related News Responsive */
@media (max-width: 1199px) {
    .related-news-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .related-news-image-wrapper {
        height: 160px;
    }

    .related-news-card-title {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .related-news-section {
        margin-top: 30px;
        padding: 20px;
    }

    .related-news-title {
        font-size: 24px;
    }

    .related-news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .related-news-image-wrapper {
        height: 140px;
    }

    .related-news-content {
        padding: 12px;
    }

    .related-news-card-title {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 767px) {
    .related-news-section {
        margin-top: 20px;
        padding: 16px;
    }

    .related-news-header {
        margin-bottom: 14px;
    }

    .related-news-title {
        font-size: 20px;
    }

    .related-news-title::before {
        height: 22px;
    }

    .related-news-view-all {
        font-size: 13px;
    }

    .related-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .related-news-image-wrapper {
        height: 120px;
    }

    .related-news-content {
        padding: 10px;
    }

    .related-news-category {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .related-news-card-title {
        font-size: 12px;
        line-height: 1.4;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 575px) {
    .related-news-section {
        margin-top: 15px;
        padding: 14px;
    }

    .related-news-title {
        font-size: 18px;
    }

    .related-news-view-all {
        font-size: 12px;
    }

    .related-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .related-news-image-wrapper {
        height: 100px;
    }

    .related-news-content {
        padding: 8px;
    }

    .related-news-category {
        font-size: 9px;
    }

    .related-news-card-title {
        font-size: 11px;
    }

    .related-news-no-image i {
        font-size: 28px;
    }
}

@media (max-width: 380px) {
    .related-news-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .related-news-card {
        display: flex;
        flex-direction: row;
    }

    .related-news-image-wrapper {
        width: 100px;
        height: 80px;
        flex-shrink: 0;
    }

    .related-news-content {
        padding: 8px 10px;
        justify-content: center;
    }

    .related-news-card-title {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
}

/* Source & Reporter Card */
.news-source-reporter-card {
    margin-top: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 16px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.news-source-reporter-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.news-source-reporter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.news-source-reporter-icon i {
    font-size: 16px;
    color: var(--primary-color, #c8102e);
}
.news-source-reporter-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #374151;
}
.news-source-reporter-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #4b5563;
}
.news-source-reporter-content .news-source,
.news-source-reporter-content .news-reporter {
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-source-reporter-content .news-source i {
    color: #198754;
}
.news-source-reporter-content .news-reporter i {
    color: #fd7e14;
}

/* Tags Card */
.news-tags-card {
    margin-top: 24px;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    padding: 16px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.news-tags-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.news-tags-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.news-tags-icon i {
    font-size: 16px;
    color: var(--primary-color, #c8102e);
}
.news-tags-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #374151;
}
.news-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.news-tag-item {
    display: inline-block;
    padding: 6px 14px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}
.news-tag-item:hover {
    background: #e5e7eb;
    color: #111827;
    text-decoration: none;
}

/* Comments Card */
.news-comments-card {
    margin-top: 24px;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(15,23,42,0.15);
    padding: 18px 18px 20px;
}
.news-comments-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.news-comments-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.news-comments-header-line {
    flex: 1;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.6;
    border-radius: 999px;
}
.news-comments-count {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}
.news-comment-alert {
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.news-comment-alert-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.news-comment-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.news-comment-form-group {
    margin-bottom: 10px;
}
.news-comment-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}
.news-comment-textarea {
    width: 100%;
    min-height: 110px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 13px;
    resize: vertical;
}
.news-comment-input {
    width: 100%;
    height: 38px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    padding: 6px 10px;
    font-size: 13px;
}
.news-comment-submit {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 4px;
    border: none;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.news-comment-submit:hover {
    filter: brightness(0.95);
}
.news-comments-note {
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}
.news-comments-list {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.news-comment-item {
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}
.news-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.news-comment-author {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}
.news-comment-date {
    font-size: 11px;
    color: #6b7280;
}
.news-comment-body {
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}
.news-comments-empty {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #9ca3af;
}

/* Floating Suggest */
.news-floating-suggest {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 2000;
    width: 320px;
    max-width: calc(100% - 32px);
    background: #0f172a;
    color: #f9fafb;
    box-shadow: 0 18px 45px rgba(15,23,42,0.55);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    opacity: 0;
    transform: translateX(-10px) translateY(20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.news-floating-suggest.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
    pointer-events: auto;
}
.news-floating-suggest-link {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    flex: 1 1 auto;
}
.news-floating-suggest-thumb {
    flex: 0 0 90px;
    background: #111827;
    overflow: hidden;
}
.news-floating-suggest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-floating-suggest-content {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-floating-suggest-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 3px;
}
.news-floating-suggest-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    max-height: 3.9em;
    overflow: hidden;
}
.news-floating-suggest-close {
    position: absolute;
    top: 4px;
    right: 6px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    font-size: 14px;
    padding: 2px;
    line-height: 1;
}
.news-floating-suggest-close:hover {
    color: #e5e7eb;
}
.news-floating-suggest.is-visible:hover {
    background: #b91c1c;
    box-shadow: 0 24px 60px rgba(185, 28, 28, 0.85);
    transform: translateX(0) translateY(-4px);
}

/* News Detail Sidebar Styles */
.news-latest-card {
    background: #ffffff;
    border-radius: 0;
    padding: 14px 14px 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    margin-bottom: 15px;
}
.news-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;
}
.news-sidebar-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}
.news-sidebar-header i {
    color: #9ca3af;
    font-size: 16px;
}
.news-sidebar-line {
    height: 2px;
    background: #f3f4f6;
    margin: 0 0 12px;
    position: relative;
}
.news-sidebar-line-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 90px;
    background: var(--primary-color);
}
.news-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.news-sidebar-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}
.news-sidebar-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.news-sidebar-item a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: #111827;
}
.news-sidebar-thumb {
    flex: 0 0 100px;
    height: 80px;
    overflow: hidden;
    background: #e5e7eb;
}
.news-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-sidebar-content {
    flex: 1;
    min-width: 0;
}
.trending-news-line {
    height: 2px;
    background: rgba(255,255,255,0.85);
    margin: 0 0 10px;
    width: 90px;
}
.related-news-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}
.related-news-no-image i {
    font-size: 48px;
    color: #d1d5db;
}

/* Comments Card Styles */
.news-comments-card {
    margin-top: 24px;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(15,23,42,0.15);
    padding: 18px 18px 20px;
}
.news-comments-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.news-comments-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.news-comments-header-line {
    flex: 1;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.6;
    border-radius: 999px;
}
.news-comments-count {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}
.news-comment-alert {
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.news-comment-alert-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.news-comment-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.news-comment-form-group {
    margin-bottom: 10px;
}
.news-comment-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}
.news-comment-textarea {
    width: 100%;
    min-height: 110px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 13px;
    resize: vertical;
}
.news-comment-input {
    width: 100%;
    height: 38px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    padding: 6px 10px;
    font-size: 13px;
}
.news-comment-submit {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 4px;
    border: none;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.news-comment-submit:hover {
    filter: brightness(0.95);
}
.news-comments-note {
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}
.news-comments-list {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.news-comment-item {
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}
.news-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.news-comment-author {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}
.news-comment-date {
    font-size: 11px;
    color: #6b7280;
}
.news-comment-body {
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}
.news-comments-empty {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #9ca3af;
}

/* Tags Card */
.news-tags-card {
    margin-top: 22px;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    padding: 12px 14px;
    box-shadow: 0 12px 32px rgba(15,23,42,0.15);
}
.news-tags-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.news-tags-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
}
.news-tags-title i {
    font-size: 13px;
    color: var(--primary-color);
}
.news-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.news-tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
}
.news-tag-chip:hover {
    border-color: var(--primary-color);
    background: #eff6ff;
    color: #1d4ed8;
    text-decoration: none;
}

/* =====================================================
   NEWS DETAIL PAGE STYLES
   ===================================================== */

/* Container */
.news-detail-container {
    margin-top: 7px;
    margin-bottom: 30px;
}

/* Breadcrumb Card */
.news-detail-breadcrumb-card {
    background: #ffffff;
    border-radius: 0;
    padding: 8px 16px;
    margin-bottom: 15px;
    box-shadow: none;
    display: flex;
    align-items: center;
}

/* Header Card */
.news-detail-header-card {
    background: #ffffff;
    border-radius: 0;
    padding: 14px 24px 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.news-detail-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 8px;
    color: #111827;
}

.news-detail-summary {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    color: #4b5563;
}

/* Main Card */
.news-detail-main-card {
    background: #ffffff;
    border-radius: 0;
    padding: 16px 18px 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Article Card */
.news-detail-card {
    background: #f9fafb;
    padding: 18px 20px 25px;
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(15,23,42,0.18);
    border: 1px solid #e5e7eb;
}

/* News Content */
.news-detail-content {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.news-detail-content p {
    margin-bottom: 1.2em;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1em 0;
}

/* Gallery */
.news-detail-gallery {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.news-detail-gallery-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-detail-gallery-title i {
    color: var(--primary-color);
}

.news-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.news-detail-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

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

.news-detail-gallery-item:hover img {
    transform: scale(1.05);
}

/* Video */
.news-detail-video {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.news-detail-video-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-detail-video-title i {
    color: var(--primary-color);
}

.news-detail-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
}

.news-detail-video-wrapper iframe,
.news-detail-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   NEWS DETAIL - RESPONSIVE STYLES
   Desktop > Tablet > Mobile
======================================== */

/* DESKTOP (1200px+) - Varsayılan stiller yukarıda */

/* LARGE TABLET (992px - 1199px) */
@media (max-width: 1199px) {
    .news-detail-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-detail-title {
        font-size: 34px;
    }
}

/* TABLET (768px - 991px) */
@media (max-width: 991px) {
    .news-detail-container {
        margin-top: 5px;
    }

    .news-detail-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .news-detail-summary {
        font-size: 17px;
    }

    .news-detail-header-card {
        padding: 16px 18px;
    }

    .news-detail-main-card {
        padding: 16px;
    }

    .news-detail-card {
        padding: 16px 18px 22px;
    }

    .news-detail-content {
        font-size: 16px;
    }

    /* Meta bilgiler tablet */
    .news-meta {
        gap: 10px 16px;
    }

    .news-meta-item {
        font-size: 13px;
    }

    /* Sosyal paylaşım toolbar tablet */
    .news-share-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .news-share-toolbar-left {
        width: 100%;
        flex-wrap: wrap;
    }

    .news-share-toolbar-right {
        width: 100%;
        justify-content: flex-start;
    }

    .news-share-icons {
        flex-wrap: wrap;
    }

    /* Galeri tablet */
    .news-detail-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    /* Sidebar tablet */
    .col-lg-4.col-md-12 {
        margin-top: 25px;
    }

    /* Kaynak/Muhabir tablet */
    .news-source-reporter-content {
        gap: 12px;
    }

    /* Etiketler tablet */
    .news-tags-list {
        gap: 6px;
    }

    .news-tag-item {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* MOBILE LANDSCAPE & SMALL TABLET (576px - 767px) */
@media (max-width: 767px) {
    .news-detail-container {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .news-detail-breadcrumb-card {
        padding: 10px 14px;
        margin-bottom: 8px;
    }

    .news-detail-header-card {
        padding: 14px 16px;
        margin-bottom: 8px;
    }

    .news-detail-title {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.02em;
    }

    .news-detail-summary {
        font-size: 15px;
        line-height: 1.5;
        margin-top: 10px;
    }

    .news-detail-main-card {
        padding: 12px 14px 16px;
    }

    .news-detail-card {
        padding: 14px 16px 20px;
        border-radius: 0;
    }

    /* Meta bilgiler mobil */
    .news-meta {
        gap: 8px 12px;
        margin-bottom: 14px;
    }

    .news-meta-item {
        font-size: 12px;
    }

    .news-meta-item i {
        font-size: 11px;
    }

    .news-meta-category {
        padding: 2px 8px;
        font-size: 11px;
    }

    .news-meta-chip {
        padding: 3px 8px;
        font-size: 11px;
    }

    /* Görsel mobil */
    .news-detail-image-wrapper {
        margin-bottom: 14px;
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
    }

    .news-detail-image-zoom-btn {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
    }

    /* İçerik mobil */
    .news-detail-content {
        font-size: 15px;
        line-height: 1.75;
    }

    .news-detail-content p {
        margin-bottom: 1em;
    }

    .news-detail-content img {
        margin: 12px 0;
        border-radius: 6px;
    }

    /* Sosyal paylaşım mobil */
    .news-share-toolbar {
        padding: 12px;
        margin: 14px 0;
        gap: 10px;
    }

    .news-share-label {
        font-size: 12px;
        display: none;
    }

    .news-share-icons {
        gap: 8px;
    }

    .news-share-icon-link {
        width: 36px;
        height: 36px;
    }

    .news-toolbar-btn {
        width: 34px;
        height: 34px;
    }

    /* Video mobil */
    .news-detail-video {
        margin-top: 20px;
        margin-left: -16px;
        margin-right: -16px;
        padding: 0;
        border: none;
    }

    .news-detail-video-title {
        font-size: 16px;
        padding: 0 16px;
        margin-bottom: 12px;
    }

    .news-detail-video-wrapper {
        border-radius: 0;
    }

    /* Galeri mobil */
    .news-detail-gallery {
        margin-top: 20px;
    }

    .news-detail-gallery-title {
        font-size: 16px;
    }

    .news-detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .news-detail-gallery-item {
        border-radius: 6px;
    }

    /* Kaynak/Muhabir mobil */
    .news-source-reporter-card {
        margin-top: 18px;
        padding: 14px;
    }

    .news-source-reporter-header {
        margin-bottom: 10px;
    }

    .news-source-reporter-title {
        font-size: 12px;
    }

    .news-source-reporter-content {
        flex-direction: column;
        gap: 8px;
    }

    .news-source-reporter-content .news-source,
    .news-source-reporter-content .news-reporter {
        font-size: 13px;
    }

    /* Etiketler mobil */
    .news-tags-card {
        margin-top: 18px;
        padding: 14px;
    }

    .news-tags-title {
        font-size: 12px;
    }

    .news-tags-list {
        gap: 6px;
    }

    .news-tag-item {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* MOBILE PORTRAIT (max-width: 575px) */
@media (max-width: 575px) {
    .news-detail-breadcrumb-card {
        padding: 8px 12px;
        font-size: 11px;
    }

    .news-detail-breadcrumb-card .breadcrumb {
        gap: 4px;
    }

    .news-detail-header-card {
        padding: 12px 14px;
    }

    .news-detail-title {
        font-size: 20px;
        line-height: 1.35;
    }

    .news-detail-summary {
        font-size: 14px;
        line-height: 1.5;
        color: #4b5563;
    }

    .news-detail-main-card {
        padding: 10px 12px 14px;
    }

    .news-detail-card {
        padding: 12px 14px 18px;
    }

    /* Meta çok küçük ekran */
    .news-meta {
        gap: 6px 10px;
    }

    .news-meta-item {
        font-size: 11px;
    }

    .news-meta-chip {
        font-size: 10px;
        padding: 2px 6px;
    }

    /* Görsel tam genişlik */
    .news-detail-image-wrapper {
        margin-left: -14px;
        margin-right: -14px;
    }

    /* İçerik */
    .news-detail-content {
        font-size: 14.5px;
        line-height: 1.7;
    }

    /* Paylaşım butonları */
    .news-share-toolbar {
        padding: 10px;
        margin: 12px -14px;
        border-radius: 0;
    }

    .news-share-icon-link {
        width: 34px;
        height: 34px;
    }

    .news-share-icon-link i,
    .news-share-icon-link svg {
        font-size: 13px;
    }

    .news-toolbar-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    /* Video */
    .news-detail-video {
        margin-left: -14px;
        margin-right: -14px;
    }

    .news-detail-video-title {
        font-size: 15px;
        padding: 0 14px;
    }

    /* Galeri */
    .news-detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .news-detail-gallery-item {
        border-radius: 4px;
    }

    /* Kaynak */
    .news-source-reporter-card {
        padding: 12px;
    }

    .news-source-reporter-content .news-source,
    .news-source-reporter-content .news-reporter {
        font-size: 12px;
    }

    /* Etiketler */
    .news-tags-card {
        padding: 12px;
    }

    .news-tag-item {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* EXTRA SMALL MOBILE (max-width: 380px) */
@media (max-width: 380px) {
    .news-detail-title {
        font-size: 18px;
    }

    .news-detail-summary {
        font-size: 13px;
    }

    .news-meta-item {
        font-size: 10px;
    }

    .news-share-icon-link {
        width: 30px;
        height: 30px;
    }

    .news-share-icons {
        gap: 5px;
    }

    .news-toolbar-btn {
        width: 28px;
        height: 28px;
    }

    .news-detail-content {
        font-size: 14px;
    }
}

/* ========================================
   NEWS DETAIL COMPONENTS - RESPONSIVE
   Sidebar, Prev/Next, Comments
======================================== */

/* TABLET (768px - 991px) */
@media (max-width: 991px) {
    /* Prev/Next Tablet */
    .news-prev-next {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .news-prev-next-item {
        padding: 14px;
    }

    .news-prev-next-title {
        font-size: 14px;
    }

    /* Sidebar Tablet - yatay layout */
    .news-latest-card {
        margin-top: 20px;
    }

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

    .news-sidebar-item {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    /* Comments tablet */
    .news-comments-card {
        margin-top: 20px;
        padding: 16px;
    }

    .news-comment-textarea {
        min-height: 90px;
    }
}

/* MOBILE (576px - 767px) */
@media (max-width: 767px) {
    /* Prev/Next Mobil */
    .news-prev-next-card {
        margin-top: 25px;
    }

    .news-prev-next {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .news-prev-next-item {
        padding: 12px 14px;
    }

    .news-prev-next-label {
        font-size: 11px;
    }

    .news-prev-next-title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    /* Sidebar Mobil - tek sütun */
    .news-latest-card {
        margin-top: 25px;
        padding: 14px;
    }

    .news-sidebar-header {
        margin-bottom: 12px;
    }

    .news-sidebar-header h2 {
        font-size: 16px;
    }

    .news-sidebar-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-sidebar-item {
        padding-bottom: 12px;
        border-bottom: 1px solid #f3f4f6;
    }

    .news-sidebar-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .news-sidebar-thumb {
        flex: 0 0 90px;
        height: 70px;
    }

    .news-sidebar-content h4 {
        font-size: 13px;
    }

    /* Comments Mobil */
    .news-comments-card {
        margin-top: 20px;
        padding: 14px;
    }

    .news-comments-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .news-comments-title {
        font-size: 16px;
    }

    .news-comments-header-line {
        display: none;
    }

    .news-comments-count {
        font-size: 12px;
        margin-left: 0;
    }

    .news-comment-form-label {
        font-size: 12px;
    }

    .news-comment-textarea {
        min-height: 80px;
        font-size: 14px;
    }

    .news-comment-input {
        height: 36px;
        font-size: 14px;
    }

    .news-comment-submit {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    .news-comments-note {
        font-size: 11px;
    }

    .news-comment-author {
        font-size: 12px;
    }

    .news-comment-date {
        font-size: 10px;
    }

    .news-comment-body {
        font-size: 12px;
    }
}

/* MOBILE SMALL (max-width: 575px) */
@media (max-width: 575px) {
    /* Prev/Next küçük mobil */
    .news-prev-next-item {
        padding: 10px 12px;
    }

    .news-prev-next-label {
        font-size: 10px;
        gap: 4px;
    }

    .news-prev-next-label i {
        font-size: 12px;
    }

    .news-prev-next-title {
        font-size: 13px;
    }

    /* Sidebar küçük mobil */
    .news-latest-card {
        padding: 12px;
    }

    .news-sidebar-header h2 {
        font-size: 15px;
    }

    .news-sidebar-thumb {
        flex: 0 0 80px;
        height: 60px;
    }

    .news-sidebar-content h4 {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

    /* Comments küçük mobil */
    .news-comments-card {
        padding: 12px;
    }

    .news-comments-title {
        font-size: 15px;
    }

    .news-comment-submit {
        font-size: 13px;
    }
}

/* EXTRA SMALL MOBILE (max-width: 380px) */
@media (max-width: 380px) {
    .news-prev-next-title {
        font-size: 12px;
    }

    .news-sidebar-thumb {
        flex: 0 0 70px;
        height: 55px;
    }

    .news-sidebar-content h4 {
        font-size: 11px;
    }
}
