/* ================================================
   Werista Haber - 2026 ULTIMATE PREMIUM THEME
   ================================================ */

:root {
    --primary: #ba1a1a;
    --primary-soft: rgba(186, 26, 26, 0.08);
    --secondary: #0f172a;
    --accent: #3b82f6;
    --bg-body: #f8fafc;
    --card-bg: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border-light: #e2e8f0;
    --radius-lg: 16px;
    --radius-md: 10px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.05);
    --font-main: 'Outfit', 'Inter', sans-serif;
    --font-head: 'Oswald', sans-serif;
}

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-body); color: var(--text-dark); font-family: var(--font-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

.container { max-width: 1240px !important; margin: 0 auto !important; padding: 0 20px !important; display: block !important; }

/* ================================================
   HEADER & NAVIGATION (RESPONSIVE)
   ================================================ */
.site-header { background: #fff; border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 999; }

/* Top Bar */
.header-top { background: #fff; border-bottom: 1px solid #f1f5f9; padding: 10px 0; font-size: 11px; font-weight: 500; }
.header-top .container { display: flex !important; justify-content: space-between !important; align-items: center !important; }
.top-links { display: flex; gap: 15px; }
.top-links a { color: var(--text-gray); }
.top-links a:hover { color: var(--primary); }
.top-social { display: flex !important; gap: 8px; }
.social-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff !important; font-size: 12px; }
.social-icon.fb { background: #1877f2; }
.social-icon.tw { background: #000; }
.social-icon.yt { background: #ff0000; }
.social-icon.ig { background: #e4405f; }

/* Middle Header */
.header-middle { padding: 15px 0; }
.header-main-row { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.logo-box {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-transform: lowercase;
    letter-spacing: -1px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.logo-box span { color: var(--secondary); }
.logo-box img {
    max-width: 100%;
    height: auto;
    display: block;
}
.logo-tagline {
    font-size: 11px;
    font-weight: 400;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: none;
}

.main-nav-diyadin { display: flex; gap: 25px; margin-right: auto; }
.nav-diy-link { font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--secondary); white-space: nowrap; }
.nav-diy-link:hover { color: var(--primary); }

.header-search { position: relative; width: 220px; }
.header-search input { width: 100%; padding: 10px 20px; padding-right: 45px; border: 1.5px solid var(--border-light); border-radius: 30px; font-size: 14px; background: #f8fafc; outline: none; }
.header-search input:focus { border-color: var(--accent); background: #fff; }
.search-btn { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); border: none; background: none; color: var(--accent); font-size: 16px; cursor: pointer; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
    padding: 8px;
}
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}
.mobile-nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -280px !important;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    padding: 20px;
    transition: right 0.3s ease, visibility 0.3s, opacity 0.3s;
    overflow-y: auto;
    visibility: hidden !important;
    opacity: 0 !important;
}
.mobile-nav-menu.active { right: 0 !important; visibility: visible !important; opacity: 1 !important; }
.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    margin-bottom: 20px;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mobile-nav-links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}
.mobile-nav-links a:hover { color: var(--primary); }

/* TICKER */
.ticker-section { background: var(--primary); color: #fff; padding: 12px 0; box-shadow: 0 4px 12px rgba(186, 26, 26, 0.2); }
.ticker-container { display: flex; align-items: center; }
.ticker-label { font-family: var(--font-head); font-weight: 700; font-size: 14px; margin-right: 25px; white-space: nowrap; border-right: 2px solid rgba(255,255,255,0.3); padding-right: 20px; }
.ticker-item { color: #fff !important; margin-right: 40px; font-size: 14px; font-weight: 600; }

/* ================================================
   HOMEPAGE (2026 NEO-MINIMALIST)
   ================================================ */
.hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; margin: 30px 0 50px; align-items: start; }

.modern-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 556px; max-height: 556px; box-shadow: var(--shadow-md); background: #000; }
.modern-slider .carousel-item { height: 100%; min-height: 556px; max-height: 556px; position: relative; }
.modern-slider .slider-img { width: 100%; height: 100%; min-height: 556px; max-height: 556px; object-fit: cover; }
.slider-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.7) 100%); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; }
.slider-title { font-family: var(--font-head); font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }

.top-side-section { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); display: flex; flex-direction: column; max-height: calc(100px * 5 + 50px + 2px); }
.top-side-header { background: linear-gradient(135deg, var(--primary) 0%, #d32f2f 100%); color: #fff; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.top-side-header .header-left { display: flex; align-items: center; gap: 12px; }
.top-side-header i { font-size: 20px; }
.top-side-header h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.top-side-header .view-all { color: #fff; font-size: 11px; font-weight: 600; text-decoration: none; opacity: 0.9; transition: opacity 0.2s; white-space: nowrap; }
.top-side-header .view-all:hover { opacity: 1; color: #fff; text-decoration: underline; }
.top-side-news { display: flex; flex-direction: column; gap: 0; flex: 1; }
.top-side-card { display: flex; gap: 16px; padding: 16px; border-bottom: 1px solid var(--border-light); text-decoration: none; align-items: center; transition: 0.3s; min-height: 100px; }
.top-side-card:last-child { border-bottom: none; }
.top-side-card:hover { background: var(--primary-soft); }
.top-side-card:hover .top-side-title { color: var(--primary); }
.top-side-card:hover .top-side-img { transform: scale(1.05); }
.top-side-img { width: 100px; height: 70px; border-radius: 8px; object-fit: cover; flex-shrink: 0; transition: 0.3s; }
.top-side-title { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 5px; transition: 0.3s; }
.section-title-wrap { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-left: 6px solid var(--primary); padding-left: 20px; }
.section-title { font-family: var(--font-head); font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--secondary); }
.view-all { font-weight: 700; font-size: 13px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; border: 1.5px solid var(--primary); padding: 8px 18px; border-radius: 30px; }
.view-all:hover { background: var(--primary); color: #fff !important; }

.modern-news-card { background: var(--card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 30px; border: 1px solid var(--border-light); transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.modern-news-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.modern-card-img { height: 220px; overflow: hidden; }
.modern-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.modern-news-card:hover .modern-card-img img { transform: scale(1.05); }
.modern-card-body { padding: 25px; }
.modern-card-title { font-size: 19px; font-weight: 700; line-height: 1.4; color: var(--text-dark); margin-bottom: 15px; height: 2.8em; overflow: hidden; }

/* ================================================
   NEWS DETAIL (2026 ELITE)
   ================================================ */
/* (Detail styles are in responsive section below) */

/* Sidebar Premium */
.modern-sidebar-box { background: #fff; padding: 25px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); margin-bottom: 30px; }
.sidebar-title { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--secondary); border-bottom: 3px solid var(--primary-soft); padding-bottom: 12px; margin-bottom: 20px; text-transform: uppercase; }

.sidebar-latest-list { display: flex; flex-direction: column; }
.sidebar-news-item { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid #f1f5f9; text-decoration: none; align-items: flex-start; }
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-num { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--primary-soft); line-height: 1; }
.sidebar-news-content h5 { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 4px; }
.sidebar-news-item:hover .sidebar-news-content h5 { color: var(--primary); }

/* Sıradaki Haberler - Modern Kartlar */
.next-news-grid { display: flex; flex-direction: column; gap: 12px; }
.next-news-card {
    display: flex;
    gap: 12px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-decoration: none;
}
.next-news-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(186, 26, 26, 0.15);
}
.next-news-card:hover .next-news-img { transform: scale(1.1); }
.next-news-card:hover .next-news-title { color: var(--primary); }
.next-news-img-wrap {
    width: 100px;
    height: 75px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}
.next-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.next-news-content {
    padding: 8px 8px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.next-news-category {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.next-news-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.next-news-meta {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.next-news-meta i { font-size: 10px; }

/* Gündem Kategoriler - Modern Etiketler */
.category-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.category-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--bg-body) 0%, #fff 100%);
    border: 1px solid var(--border-light);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}
.category-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 26, 26, 0.25);
}
.bg-soft-primary { background-color: var(--primary-soft); color: var(--primary); }

/* ================================================
   ADVERTISEMENT STYLES
   ================================================ */
.ad-container, .adsense-container {
    margin: 20px auto;
    text-align: center;
    overflow: hidden;
}

.ad-container .ad-wrapper,
.adsense-container ins {
    display: inline-block;
    max-width: 100%;
}

.ad-header {
    margin: 0;
    padding: 15px 0;
    background: var(--bg-body);
}

.ad-footer {
    margin: 0;
    padding: 20px 0;
    background: var(--bg-body);
    border-top: 1px solid var(--border-light);
}

.ad-sidebar-top,
.ad-sidebar-bottom {
    margin: 0 0 20px 0;
}

.ad-in-article {
    margin: 30px auto;
    padding: 20px;
    background: #f8fafc;
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.ad-container .ad-wrapper iframe,
.ad-container .ad-wrapper ins,
.ad-container .ad-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Responsive ads */
@media (max-width: 768px) {
    .ad-container,
    .adsense-container {
        margin: 15px auto;
    }
    
    .ad-sidebar-top,
    .ad-sidebar-bottom {
        margin: 15px 0;
    }
    
    .ad-in-article {
        margin: 20px auto;
        padding: 15px;
    }
}

/* Adsense specific */
.adsbygoogle {
    background-color: transparent;
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-md);
}

/* Comments Responsive */
.comments-modern {
    margin-top: 80px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.comments-list-modern {
    margin-top: 30px;
}
.comment-card {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}
.comment-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.comment-body {
    flex: 1;
}
.comment-body h5 {
    font-weight: 800;
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 5px;
}
.comment-body .date {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.comment-body p {
    color: var(--text-dark);
    line-height: 1.6;
}
.comment-verified {
    color: var(--primary);
    font-size: 14px;
}


@media (max-width: 991px) {
    .hero-grid { grid-template-columns: 1fr; }
    .modern-slider { min-height: 400px; }
    .modern-slider .carousel-item { min-height: 400px; }
    .modern-slider .slider-img { min-height: 400px; }
}

/* ================================================
   FOOTER (PREMIUM 2026 - RESPONSIVE)
   ================================================ */
.site-footer-premium {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 0;
    margin-top: 80px;
}
.footer-desc { font-size: 14px; line-height: 1.8; margin-top: 20px; color: #94a3b8; }
.footer-title {
    font-family: var(--font-head); color: #fff; font-size: 16px; font-weight: 700;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-links-list { list-style: none; padding: 0; }
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list li a { font-size: 13px; transition: 0.3s; color: #94a3b8; }
.footer-links-list li a:hover { color: var(--primary); padding-left: 5px; }

.footer-social-premium { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-premium a {
    width: 36px; height: 36px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff !important; transition: 0.3s;
}
.footer-social-premium a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-newsletter { display: flex; background: rgba(255,255,255,0.05); padding: 5px; border-radius: 30px; margin-top: 15px; }
.footer-newsletter input {
    background: none; border: none; padding: 10px 15px; color: #fff;
    outline: none; width: 100%; font-size: 13px;
}
.footer-newsletter button {
    background: var(--primary); color: #fff; border: none;
    width: 38px; height: 38px; border-radius: 50%; transition: 0.3s; flex-shrink: 0;
}
.footer-newsletter button:hover { transform: scale(1.1); }

.footer-bottom-premium {
    margin-top: 60px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 12px; color: #64748b;
}

@media (max-width: 992px) {
    .site-footer-premium { padding: 60px 0 0; }
    .footer-bottom-premium { margin-top: 40px; }
}

/* ================================================
   NEWS DETAIL - RESPONSIVE 2026
   ================================================ */
.news-detail-page {
    background: #fff;
    min-height: 100vh;
}

/* Detail Header - Responsive */
.detail-header {
    padding: 40px 0 30px;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 40px;
    text-align: center;
}
.detail-header .container {
    max-width: 900px !important;
}
.detail-category {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.detail-category:hover {
    background: var(--primary);
    color: #fff;
}
.detail-title {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: 25px;
    max-width: 100%;
}
.detail-summary {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    border-left: 4px solid var(--primary);
    padding-left: 25px;
    margin: 30px auto;
    max-width: 750px;
    text-align: left;
}
.detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
    flex-wrap: wrap;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.meta-item i {
    color: var(--primary);
    font-size: 14px;
}
.meta-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    padding: 2px;
    object-fit: cover;
}

/* Content Area - Responsive */
.news-detail-page .row {
    margin: 0;
}
.news-detail-page .col-lg-7 {
    padding: 0 20px;
}
.news-detail-page .col-lg-4 {
    padding: 0 20px;
}

/* Share Sidebar - Desktop */
.share-side-bar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}
.share-btn-round {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.share-btn-round:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Main Image - Responsive */
.detail-main-img {
    width: 100%;
    max-width: 850px;
    border-radius: var(--radius-lg);
    margin: 0 auto 40px;
    display: block;
    box-shadow: var(--shadow-md);
}

/* Content - Responsive */
.detail-content {
    font-size: 18px;
    line-height: 1.85;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    max-width: 850px;
    margin: 0 auto;
}
.detail-content p {
    margin-bottom: 25px;
}

/* Author Card - Responsive */
.author-card-modern {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-top: 60px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 25px;
    box-shadow: var(--shadow-sm);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.author-img-lg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8fafc;
    box-shadow: 0 0 0 3px var(--primary-soft);
    flex-shrink: 0;
}
.author-info h4 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

/* Comments - Responsive */
.comments-modern {
    margin-top: 80px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.comment-form-modern {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}
.comment-input {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    outline: none;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}
.comment-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-soft);
}
.btn-premium {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(186, 26, 26, 0.25);
}

.comment-card {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}
.comment-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.comment-body h5 {
    font-weight: 800;
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 5px;
}
.comment-body .date {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* Sidebar - Responsive */
.news-detail-page .col-lg-4 {
    margin-top: 0;
}

/* ================================================
   MOBILE RESPONSIVE (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {
    /* Container full width on mobile */
    .news-detail-page .container {
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* Header */
    .detail-header {
        padding: 25px 0 20px;
        margin-bottom: 25px;
    }
    .detail-title {
        font-size: 28px;
        line-height: 1.2;
        padding: 0 10px;
    }
    .detail-summary {
        font-size: 16px;
        padding-left: 18px;
        margin: 20px auto;
    }
    .detail-meta {
        gap: 15px;
        font-size: 12px;
        padding: 20px 10px 0;
    }
    .meta-item {
        gap: 6px;
    }
    .meta-item i {
        font-size: 12px;
    }
    .meta-author-img {
        width: 35px;
        height: 35px;
    }
    
    /* Hide desktop share bar on mobile */
    .share-side-bar {
        display: none !important;
    }
    
    /* Content */
    .news-detail-page .col-lg-7 {
        padding: 0 15px;
    }
    .detail-main-img {
        border-radius: 12px;
        margin-bottom: 25px;
    }
    .detail-content {
        font-size: 16px;
        line-height: 1.8;
    }
    .detail-content p {
        margin-bottom: 20px;
        text-align: justify;
    }
    
    /* Author Card */
    .author-card-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
        margin-top: 40px;
        border-radius: 16px;
    }
    .author-img-lg {
        width: 80px;
        height: 80px;
    }
    .author-info h4 {
        font-size: 20px;
    }
    .author-info p {
        font-size: 14px;
    }
    
    /* Comments */
    .comments-modern {
        margin-top: 50px;
    }
    .comment-form-modern {
        padding: 25px 20px;
        border-radius: 16px;
    }
    .comment-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .comment-input {
        font-size: 15px;
        padding: 14px 18px;
    }
    .comment-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .comment-body h5 {
        font-size: 15px;
    }
    
    /* Sidebar */
    .news-detail-page .col-lg-4 {
        margin-top: 30px;
        padding: 0 15px;
    }
    .modern-sidebar-box {
        padding: 20px;
        border-radius: 16px;
    }
    .sidebar-title {
        font-size: 16px;
    }
    
    /* Next News Cards */
    .next-news-grid {
        gap: 10px;
    }
    .next-news-card {
        padding: 0;
    }
    .next-news-img-wrap {
        width: 85px;
        height: 65px;
    }
    .next-news-title {
        font-size: 12px;
    }
    .next-news-category {
        font-size: 9px;
    }
    
    /* Category Tags */
    .category-tags {
        gap: 6px;
    }
    .category-tag {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Mobile Share Bar - Fixed Bottom */
.mobile-share-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-share-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        background: #fff;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
        z-index: 1000;
        border-top: 1px solid var(--border-light);
    }
    .mobile-share-bar .share-btn-round {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    /* Add bottom padding to content when mobile share bar is visible */
    .news-detail-page {
        padding-bottom: 80px;
    }
}

/* ================================================
   EXTRA SMALL SCREENS (max-width: 480px)
   ================================================ */
@media (max-width: 480px) {
    .detail-title {
        font-size: 24px;
    }
    .detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    .author-card-modern {
        padding: 20px 15px;
    }
    .btn-premium {
        width: 100%;
        justify-content: center;
    }
    .mobile-share-bar {
        padding: 10px 15px;
        gap: 10px;
    }
    .mobile-share-bar .share-btn-round {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* ================================================
   HEADER & FOOTER MOBILE (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {
    /* Header */
    .header-top {
        display: none !important;
    }
    
    .header-middle {
        padding: 12px 0;
    }
    
    .header-main-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .logo-box {
        font-size: 28px;
        text-align: center;
        order: 1;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 0;
    }
    
    .header-search {
        order: 2;
        width: 100%;
        max-width: 300px;
        margin-top: 10px;
    }
    
    .main-nav-diyadin {
        display: none;
    }
    
    /* Mobile Nav */
    .mobile-nav-overlay.active {
        display: block;
    }
    
    /* Footer */
    .site-footer-premium {
        padding: 40px 0 0;
        margin-top: 50px;
    }
    
    .site-footer-premium .row > div {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-desc {
        font-size: 13px;
    }
    
    .footer-links-list li {
        margin-bottom: 8px;
    }
    
    .footer-links-list li a {
        font-size: 13px;
    }
    
    .footer-social-premium {
        justify-content: center;
    }
    
    .footer-newsletter {
        max-width: 300px;
        margin: 15px auto 0;
    }
    
    .footer-bottom-premium {
        margin-top: 30px;
        padding: 20px 0;
        text-align: center;
    }
    
    .footer-bottom-premium .row {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom-premium img {
        display: none;
    }
}

/* ================================================
   HEADER & FOOTER EXTRA SMALL (max-width: 480px)
   ================================================ */
@media (max-width: 480px) {
    .logo-box {
        font-size: 24px;
    }
    
    .header-search {
        max-width: 100%;
    }
    
    .site-footer-premium {
        padding: 30px 0 0;
    }
}