/* ============================================
   أخبار الكويت - Main Stylesheet
   ============================================ */

:root {
    --primary: #0a3d62;
    --primary-dark: #062a4a;
    --accent: #e74c3c;
    --accent-dark: #c0392b;
    --gold: #f39c12;
    --green: #27ae60;
    --bg: #f0f2f5;
    --white: #ffffff;
    --text: #1a1a2e;
    --text-light: #555;
    --text-muted: #888;
    --border: #e0e4ea;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --font: 'Noto Kufi Arabic', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font);
    direction: rtl;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 2px solid var(--gold);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-right { display: flex; align-items: center; gap: 10px; }
.top-bar .separator { opacity: 0.4; }
.top-bar-left { display: flex; gap: 12px; }
.social-link {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
}
.social-link:hover { color: var(--gold); }

/* ---- HEADER ---- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: var(--shadow);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-title-link { display: block; }
.site-name .name-main {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.header-ad-space {
    flex: 1;
    max-width: 728px;
    height: 50px;
    background: var(--bg);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    border-radius: var(--radius);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.search-toggle, .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--primary);
    border-radius: var(--radius);
    transition: background 0.2s;
}
.search-toggle:hover, .menu-toggle:hover { background: var(--bg); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; }
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---- NAV ---- */
.main-nav {
    background: var(--primary);
    position: sticky;
    top: 73px;
    z-index: 100;
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: 0;
}
.nav-logo-small {
    display: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    white-space: nowrap;
}
.nav-menu {
    display: flex;
    flex: 1;
}
.nav-menu li a {
    display: block;
    color: rgba(255,255,255,0.9);
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    left: 50%;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s;
}
.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after { right: 0; left: 0; }
.nav-menu li a:hover,
.nav-menu li.current-menu-item a { color: var(--white); }

/* Breaking News in Nav */
.nav-breaking {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
    max-width: 420px;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 12px;
    margin-left: 0;
}
.breaking-label {
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.breaking-ticker {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    mask-image: linear-gradient(to left, transparent, black 30px);
    animation: ticker 25s linear infinite;
}
.breaking-ticker a { color: inherit; }
@keyframes ticker {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ---- SEARCH OVERLAY ---- */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,61,98,0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 100%; max-width: 600px; padding: 20px; position: relative; }
.search-close {
    position: absolute;
    top: -40px;
    left: 0;
    color: white;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
}
.search-overlay-inner form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.search-overlay-inner input {
    flex: 1;
    padding: 16px 20px;
    font-family: var(--font);
    font-size: 18px;
    border: none;
    outline: none;
}
.search-overlay-inner button {
    padding: 16px 28px;
    background: var(--accent);
    color: white;
    border: none;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.search-overlay-inner button:hover { background: var(--accent-dark); }

/* ---- HERO SECTION ---- */
.hero-section { padding: 24px 0 0; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.hero-main { grid-row: 1; }
.hero-sidebar {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 4px;
}
.hero-card {
    display: block;
    position: relative;
    overflow: hidden;
}
.hero-card-large { min-height: 300px; }
.hero-card-small { min-height: 100px; }
.hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s;
}
.hero-card:hover .hero-img { transform: scale(1.04); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}
.hero-card-small .hero-overlay { padding: 12px; }
.hero-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.hero-cat a {
    background: var(--accent);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}
.hero-time { font-size: 12px; opacity: 0.8; }
.hero-title { font-size: 22px; font-weight: 800; line-height: 1.4; margin-bottom: 8px; }
.hero-excerpt { font-size: 14px; opacity: 0.9; line-height: 1.5; }
.hero-title-small { font-size: 14px; font-weight: 700; line-height: 1.4; margin-top: 4px; }
.hero-card-small .hero-cat a { font-size: 11px; padding: 2px 7px; }

/* ---- CONTENT SECTION ---- */
.content-section { padding: 28px 0 40px; }
.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 10px;
}
.section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cat-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
}
.view-all {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
}
.view-all:hover { color: var(--accent-dark); }

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img { display: block; overflow: hidden; }
.news-card-img img { width: 100%; height: auto; object-fit: contain; transition: transform 0.3s; }
.news-card:hover .news-card-img img { transform: scale(1.02); }
.news-card-body { padding: 14px; }
.news-card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.news-cat a {
    background: var(--primary);
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}
.news-time { font-size: 11px; color: var(--text-muted); }
.news-card-title { font-size: 15px; font-weight: 700; line-height: 1.5; margin-bottom: 8px; }
.news-card-title a:hover { color: var(--accent); }
.news-card-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}

/* Category Sections */
.category-section { margin-bottom: 36px; }
.cat-posts-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cat-post-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}
.cat-post-main:hover img { transform: scale(1.03); }
.cat-post-body { padding: 16px; }
.cat-post-body h3 { font-size: 17px; font-weight: 800; line-height: 1.4; margin-bottom: 8px; }
.cat-post-body h3 a:hover { color: var(--accent); }
.cat-post-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.post-date { font-size: 12px; color: var(--text-muted); margin-top: 8px; display: block; }
.cat-posts-list { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.cat-post-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.cat-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.cat-post-thumb { width: 80px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.cat-post-thumb img { width: 100%; height: auto; object-fit: contain; }
.cat-post-info h4 { font-size: 14px; font-weight: 700; line-height: 1.4; }
.cat-post-info h4 a:hover { color: var(--accent); }
.cat-post-info span { font-size: 11px; color: var(--text-muted); }

/* ---- SIDEBAR ---- */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.widget-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
}
.most-read-list { display: flex; flex-direction: column; gap: 12px; }
.most-read-item { display: flex; align-items: flex-start; gap: 12px; }
.read-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.most-read-item:nth-child(1) .read-num { background: var(--gold); }
.most-read-item:nth-child(2) .read-num { background: var(--text-light); }
.most-read-item:nth-child(3) .read-num { background: #cd7f32; }
.read-info a { font-size: 14px; font-weight: 600; line-height: 1.4; display: block; margin-bottom: 3px; }
.read-info a:hover { color: var(--accent); }
.read-info span { font-size: 11px; color: var(--text-muted); }
.ad-placeholder {
    aspect-ratio: 300/250;
    background: var(--bg);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
}
.categories-list { display: flex; flex-direction: column; gap: 6px; }
.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.categories-list li a:hover { background: var(--primary); color: white; }
.cat-count {
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
}
.categories-list li a:hover .cat-count { background: rgba(255,255,255,0.2); color: white; }

/* ---- SINGLE POST ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--accent); }
.single-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}
.single-cats { margin-bottom: 14px; }
.single-cats a {
    background: var(--accent);
    color: white;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 6px;
}
.single-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 16px;
}
.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 13px;
}
.meta-item { display: flex; align-items: center; gap: 6px; }
.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.share-label { font-size: 14px; font-weight: 600; color: var(--text-light); }
.share-btn {
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: opacity 0.2s;
    color: white;
}
.share-btn:hover { opacity: 0.85; }
.share-twitter { background: #000; }
.share-facebook { background: #1877f2; }
.share-whatsapp { background: #25d366; }
.share-telegram { background: #0088cc; }
.single-featured-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}
.single-featured-img img { width: 100%; height: auto; object-fit: contain; }
.single-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
}
.single-content p { margin-bottom: 18px; }
.single-content h2, .single-content h3 { font-weight: 800; margin: 24px 0 12px; color: var(--primary); }
.single-content img { border-radius: var(--radius); margin: 16px 0; }
.single-content blockquote {
    border-right: 4px solid var(--accent);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}
.single-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.single-tags span { font-size: 14px; font-weight: 700; color: var(--text-light); }
.tag-item {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.2s;
}
.tag-item:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Related Posts */
.related-posts { margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.related-img { display: block; overflow: hidden; }
.related-img img { width: 100%; height: auto; object-fit: contain; transition: transform 0.3s; }
.related-card:hover .related-img img { transform: scale(1.02); }
.related-body { padding: 12px; }
.related-date { font-size: 11px; color: var(--text-muted); }
.related-body h4 { font-size: 14px; font-weight: 700; line-height: 1.4; margin-top: 5px; }
.related-body h4 a:hover { color: var(--accent); }

/* ---- ARCHIVE / CATEGORY ---- */
.archive-header {
    background: var(--primary);
    color: white;
    padding: 28px 0;
    margin-bottom: 28px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.archive-title { font-size: 26px; font-weight: 900; }
.archive-desc { font-size: 15px; opacity: 0.85; margin-top: 8px; }

/* ---- PAGINATION ---- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.pagination .prev, .pagination .next { width: auto; padding: 0 16px; }

/* ---- FOOTER ---- */
.site-footer { margin-top: 40px; background: var(--primary-dark); }
.footer-widgets { padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 32px; }
.footer-logo { font-size: 22px; font-weight: 900; color: var(--gold); margin-bottom: 14px; }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 14px; font-weight: 700;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--primary-dark); }
.footer-title { font-size: 15px; font-weight: 800; color: var(--gold); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-menu { display: flex; flex-direction: column; gap: 8px; }
.footer-menu a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-menu a:hover { color: var(--gold); }
.footer-recent { display: flex; flex-direction: column; gap: 10px; }
.footer-recent li a { display: flex; gap: 10px; align-items: flex-start; }
.footer-recent li a img { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.footer-recent li a span { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; transition: color 0.2s; }
.footer-recent li a:hover span { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-newsletter { margin-top: 20px; }
.footer-newsletter h5 { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.newsletter-form { display: flex; border-radius: var(--radius); overflow: hidden; }
.newsletter-form input {
    flex: 1; padding: 10px 12px;
    border: none; outline: none;
    font-family: var(--font); font-size: 13px;
    background: rgba(255,255,255,0.1);
    color: white;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
    padding: 10px 16px; background: var(--gold);
    border: none; font-family: var(--font);
    font-size: 13px; font-weight: 700;
    color: var(--primary-dark); cursor: pointer;
}
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-credit a { color: var(--gold); }

/* ---- 404 ---- */
.not-found { text-align: center; padding: 80px 20px; }
.not-found-code { font-size: 120px; font-weight: 900; color: var(--primary); line-height: 1; }
.not-found h1 { font-size: 28px; margin: 16px 0 8px; }
.not-found p { color: var(--text-light); margin-bottom: 28px; }
.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s;
}
.btn-home:hover { background: var(--accent); }

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: white;
    border: none; border-radius: 50%;
    font-size: 18px; cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
    z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-card-large { height: 380px; }
    .hero-card-small { height: 92px; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .content-grid { grid-template-columns: 1fr 260px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .header-ad-space { display: none; }
    .main-nav { top: 64px; }
    .site-name .name-main { font-size: 22px; }
    .menu-toggle { display: flex; }
    .nav-inner { flex-wrap: wrap; }
    .nav-logo-small { display: block; }
    .nav-menu { display: none; flex-direction: column; width: 100%; }
    .nav-menu.open { display: flex; }
    .nav-menu li a { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-breaking { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card-large { height: 300px; }
    .hero-sidebar { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
    .hero-card-small { height: 140px; }
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .cat-posts-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .single-title { font-size: 22px; }
    .single-article { padding: 20px; }
}

@media (max-width: 480px) {
    .hero-sidebar { grid-template-columns: 1fr; }
    .sidebar { grid-template-columns: 1fr; }
    .share-buttons { gap: 6px; }
    .share-btn { padding: 6px 12px; }
    .single-meta { gap: 12px; }
}
