/* NewsPro SEO Magazine — Main Stylesheet */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --np-primary:   #c0392b;
    --np-accent:    #e67e22;
    --np-dark:      #1a1a2e;
    --np-navy:      #2c3e50;
    --np-text:      #2d2d2d;
    --np-muted:     #6c757d;
    --np-light:     #f8f9fa;
    --np-border:    #e9ecef;
    --np-card-bg:   #ffffff;
    --np-bg:        #f5f5f5;
    --np-header-h:  64px;
    --np-radius:    8px;
    --np-shadow:    0 2px 12px rgba(0,0,0,0.08);
    --np-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --np-font:      system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    --np-transition: 0.2s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--np-font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--np-text);
    background: var(--np-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--np-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ── Skip link ────────────────────────────────────── */
.skip-link { position: absolute; top: -999px; left: -999px; background: var(--np-primary); color: #fff; padding: 8px 16px; border-radius: 0 0 4px 0; z-index: 9999; }
.skip-link:focus { top: 0; left: 0; }

/* ── Container ────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ──────────────────────────────────────── */
.btn-home {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 28px;
    background: var(--np-primary);
    color: #fff;
    border-radius: var(--np-radius);
    font-weight: 600;
    transition: background var(--np-transition);
}
.btn-home:hover { background: #a93226; text-decoration: none; }

/* ── Site Header ──────────────────────────────────── */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--np-border);
    position: relative;
    z-index: 100;
}
.site-header.is-sticky { position: sticky; top: 0; box-shadow: var(--np-shadow); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--np-header-h);
    gap: 20px;
}

/* Branding */
.site-branding { flex-shrink: 0; }
.site-branding .custom-logo { height: 48px; width: auto; }
.site-text-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--np-primary);
    letter-spacing: -0.5px;
}
.site-text-logo:hover { text-decoration: none; }
.site-tagline { font-size: .75rem; color: var(--np-muted); margin-top: 2px; }

/* Nav */
.header-controls { display: flex; align-items: center; gap: 24px; flex: 1; justify-content: flex-end; }
.main-navigation { display: none; }
@media (min-width: 1024px) { .main-navigation { display: block; } }

.main-navigation ul { display: flex; align-items: center; gap: 4px; }
.main-navigation ul li a {
    display: block;
    padding: 6px 12px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--np-navy);
    border-radius: 4px;
    transition: background var(--np-transition), color var(--np-transition);
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a { background: var(--np-light); color: var(--np-primary); text-decoration: none; }

/* Header icons */
.header-icons { display: flex; align-items: center; gap: 4px; }
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    color: var(--np-navy);
    transition: background var(--np-transition);
}
.icon-btn:hover { background: var(--np-light); }

/* Hamburger */
.hamburger { flex-direction: column; gap: 5px; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.ham-bar { display: block; width: 20px; height: 2px; background: var(--np-navy); border-radius: 2px; transition: transform .2s; }

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.search-overlay[hidden] { display: none; }
.search-overlay__inner { position: relative; width: 100%; max-width: 640px; padding: 0 20px; }
.search-overlay__inner .search-form input[type="search"] {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: var(--np-radius);
    outline: none;
}
.search-overlay__close {
    position: absolute;
    top: -60px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
}

/* Mobile menu */
.mobile-menu-panel {
    position: fixed;
    top: var(--np-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 150;
    overflow-y: auto;
    padding: 20px;
    box-shadow: var(--np-shadow-lg);
}
.mobile-menu-panel[hidden] { display: none; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list li a { display: block; padding: 12px 16px; font-size: 1rem; font-weight: 600; color: var(--np-navy); border-radius: 6px; }
.mobile-nav-list li a:hover { background: var(--np-light); color: var(--np-primary); }

/* ── Breaking news ticker ─────────────────────────── */
.breaking-ticker {
    background: var(--np-primary);
    color: #fff;
    font-size: .85rem;
    overflow: hidden;
}
.breaking-ticker__inner { display: flex; align-items: center; height: 36px; gap: 16px; }
.breaking-ticker__label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 0 12px 0 0;
    border-right: 1px solid rgba(255,255,255,.4);
}
.ticker-track { flex: 1; overflow: hidden; height: 36px; display: flex; align-items: center; }
.ticker-list { display: flex; gap: 0; white-space: nowrap; animation: ticker-scroll 30s linear infinite; }
.breaking-ticker:hover .ticker-list { animation-play-state: paused; }
.ticker-item { padding: 0 40px; }
.ticker-item a { color: #fff; font-weight: 500; }
.ticker-item a:hover { text-decoration: underline; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Ad slots ─────────────────────────────────────── */
.newspro-ad { text-align: center; margin: 20px 0; clear: both; }
.newspro-mobile-sticky-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    text-align: center;
    background: rgba(255,255,255,.95);
    padding: 8px;
    box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}

/* ── Hero Section ─────────────────────────────────── */
.hero-section { padding: 28px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 2fr 1fr; } }

.hero-lead { position: relative; border-radius: var(--np-radius); overflow: hidden; background: #000; }
.hero-lead img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .85; transition: opacity .3s; }
.hero-lead:hover img { opacity: .75; }
.hero-lead__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
    color: #fff;
}
.hero-lead__title { font-size: 1.4rem; font-weight: 700; line-height: 1.3; margin: 8px 0 8px; }
.hero-lead__title a { color: #fff; }
.hero-lead__title a:hover { text-decoration: underline; }
.hero-meta { font-size: .8rem; opacity: .9; }
.hero-img-link { display: block; }

.hero-side { display: flex; flex-direction: column; gap: 12px; }
.hero-side-item {
    display: flex;
    gap: 12px;
    background: var(--np-card-bg);
    border-radius: var(--np-radius);
    overflow: hidden;
    box-shadow: var(--np-shadow);
    padding: 12px;
    align-items: flex-start;
}
.hero-side-thumb { flex-shrink: 0; width: 100px; border-radius: 4px; overflow: hidden; }
.hero-side-thumb img { width: 100px; height: 70px; object-fit: cover; }
.hero-side-body { flex: 1; }
.hero-side-title { font-size: .9rem; font-weight: 700; line-height: 1.4; margin: 4px 0; }
.hero-side-title a { color: var(--np-text); }
.hero-side-title a:hover { color: var(--np-primary); text-decoration: none; }

/* ── Section headers ──────────────────────────────── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--np-border); }
.section-title { font-size: 1.2rem; font-weight: 800; color: var(--np-navy); position: relative; }
.section-title::before { content: ''; position: absolute; left: -16px; top: 50%; transform: translateY(-50%); width: 4px; height: 22px; background: var(--np-primary); border-radius: 2px; }
.section-title--trending::before { background: var(--np-accent); }
.section-title--editors::before { background: var(--np-navy); }
.section-link { font-size: .8rem; font-weight: 600; color: var(--np-primary); }
.section-block { margin: 32px 0; padding-left: 16px; }

/* ── Card grid ────────────────────────────────────── */
.card-grid { display: grid; gap: 20px; }
.card-grid--2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* ── News card ────────────────────────────────────── */
.news-card {
    background: var(--np-card-bg);
    border-radius: var(--np-radius);
    overflow: hidden;
    box-shadow: var(--np-shadow);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--np-shadow-lg); }

.card-thumb { display: block; position: relative; overflow: hidden; }
.card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .3s; }
.news-card:hover .card-thumb img { transform: scale(1.04); }
.card-thumb--no-img { min-height: 140px; background: var(--np-light); }

.cat-badge {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    background: var(--np-primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-radius: 20px;
    z-index: 1;
    text-decoration: none;
}
.cat-badge:hover { background: var(--np-accent); text-decoration: none; }

.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-title { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.card-title a { color: var(--np-text); }
.card-title a:hover { color: var(--np-primary); text-decoration: none; }
.card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .78rem; color: var(--np-muted); }
.card-sep { opacity: .5; }
.card-author a { color: var(--np-muted); font-weight: 600; }
.card-author a:hover { color: var(--np-primary); }
.card-excerpt { font-size: .875rem; color: var(--np-muted); line-height: 1.6; flex: 1; }
.card-date { font-size: .78rem; color: var(--np-muted); }

/* ── Home layout ──────────────────────────────────── */
.home-content-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 28px 0; }
@media (min-width: 1024px) { .home-content-wrap { grid-template-columns: 1fr 300px; } }
.home-main { min-width: 0; }

/* ── Single post layout ───────────────────────────── */
.single-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 28px 0; }
@media (min-width: 1024px) { .single-wrap { grid-template-columns: 1fr 300px; } }
.single-main { min-width: 0; }

/* ── Breadcrumbs ──────────────────────────────────── */
.newspro-breadcrumbs { margin-bottom: 16px; }
.bc-list { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .82rem; color: var(--np-muted); }
.bc-item { display: flex; align-items: center; gap: 6px; }
.bc-item a { color: var(--np-muted); }
.bc-item a:hover { color: var(--np-primary); }
.bc-current { color: var(--np-text); font-weight: 600; }
.bc-sep { opacity: .4; }

/* ── Entry header ─────────────────────────────────── */
.entry-header { margin-bottom: 24px; }
.entry-title { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 800; line-height: 1.25; color: var(--np-navy); margin: 12px 0 16px; }
.entry-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: .85rem; color: var(--np-muted); margin-bottom: 16px; }
.entry-meta svg { vertical-align: middle; margin-right: 4px; }
.entry-author a, .entry-date time, .updated { color: var(--np-muted); }
.updated-label { margin-left: 8px; font-weight: 600; font-size: .78rem; background: #fff3cd; color: #856404; padding: 2px 8px; border-radius: 20px; }

.entry-featured-image { margin: 0 0 24px; border-radius: var(--np-radius); overflow: hidden; }
.entry-featured-image img { width: 100%; max-height: 500px; object-fit: cover; }

/* ── Entry content ────────────────────────────────── */
.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--np-text);
}
.entry-content h1 { font-size: 1.8rem; font-weight: 800; margin: 28px 0 16px; color: var(--np-navy); }
.entry-content h2 { font-size: 1.4rem; font-weight: 700; margin: 28px 0 14px; color: var(--np-navy); padding-left: 12px; border-left: 4px solid var(--np-primary); }
.entry-content h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 12px; color: var(--np-navy); }
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote { border-left: 4px solid var(--np-primary); padding: 16px 20px; margin: 24px 0; background: var(--np-light); border-radius: 0 var(--np-radius) var(--np-radius) 0; font-style: italic; }
.entry-content img { border-radius: 6px; margin: 16px 0; }
.entry-content a { color: var(--np-primary); text-decoration: underline; }
.entry-content strong { font-weight: 700; }

/* Single tags */
.single-tags { margin: 24px 0; font-size: .9rem; color: var(--np-muted); }
.single-tags a { display: inline-block; padding: 4px 12px; background: var(--np-light); border-radius: 20px; margin: 4px; color: var(--np-muted); font-size: .8rem; transition: background var(--np-transition); }
.single-tags a:hover { background: var(--np-primary); color: #fff; text-decoration: none; }
.tags-label { font-weight: 700; color: var(--np-text); margin-right: 8px; }

/* ── Social share ─────────────────────────────────── */
.social-share { margin: 20px 0; }
.social-share__label { font-size: .85rem; font-weight: 700; color: var(--np-muted); margin-right: 12px; }
.social-share__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: filter .2s;
}
.share-btn:hover { filter: brightness(.88); text-decoration: none; }
.share-btn--facebook  { background: #1877f2; color: #fff; }
.share-btn--whatsapp  { background: #25d366; color: #fff; }
.share-btn--twitter   { background: #000;    color: #fff; }
.share-btn--telegram  { background: #0088cc; color: #fff; }
.share-btn--copy      { background: var(--np-light); color: var(--np-text); border: 1px solid var(--np-border); }

/* ── Author box ───────────────────────────────────── */
.author-box {
    display: flex;
    gap: 20px;
    background: var(--np-light);
    border-radius: var(--np-radius);
    padding: 24px;
    margin: 32px 0;
    align-items: flex-start;
    border: 1px solid var(--np-border);
}
.author-avatar img { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; }
.author-label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--np-muted); font-weight: 700; margin-bottom: 4px; }
.author-name { display: block; font-size: 1.1rem; font-weight: 700; color: var(--np-navy); margin-bottom: 8px; }
.author-bio { font-size: .9rem; color: var(--np-muted); margin-bottom: 8px; line-height: 1.6; }
.author-more { font-size: .85rem; font-weight: 600; color: var(--np-primary); }

/* ── Post navigation ──────────────────────────────── */
.post-navigation { margin: 32px 0; padding: 24px 0; border-top: 1px solid var(--np-border); border-bottom: 1px solid var(--np-border); }
.nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nav-previous, .nav-next { display: flex; flex-direction: column; gap: 4px; }
.nav-next { text-align: right; }
.nav-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--np-muted); }
.nav-title { font-size: .9rem; font-weight: 600; color: var(--np-navy); }
.nav-links a:hover .nav-title { color: var(--np-primary); text-decoration: none; }

/* ── Related posts ────────────────────────────────── */
.related-posts { margin: 40px 0; }
.related-posts__title { font-size: 1.2rem; font-weight: 800; color: var(--np-navy); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--np-border); }

/* ── Sidebar ──────────────────────────────────────── */
.sidebar { min-width: 0; }
.widget { background: var(--np-card-bg); border-radius: var(--np-radius); padding: 20px; margin-bottom: 24px; box-shadow: var(--np-shadow); }
.widget-title { font-size: 1rem; font-weight: 800; color: var(--np-navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--np-border); }

.sidebar-post-list { display: flex; flex-direction: column; gap: 14px; }
.sidebar-post-item { display: flex; gap: 10px; align-items: flex-start; }
.sidebar-thumb { flex-shrink: 0; width: 80px; border-radius: 4px; overflow: hidden; }
.sidebar-thumb img { width: 80px; height: 56px; object-fit: cover; }
.sidebar-post-title { font-size: .875rem; font-weight: 600; color: var(--np-text); display: block; line-height: 1.4; margin-bottom: 4px; }
.sidebar-post-title:hover { color: var(--np-primary); text-decoration: none; }
.sidebar-post-date { font-size: .75rem; color: var(--np-muted); }

/* widget_categories */
.widget_categories ul, .widget_tag_cloud { font-size: .9rem; }
.widget_categories li { padding: 6px 0; border-bottom: 1px solid var(--np-border); display: flex; justify-content: space-between; }
.widget_categories li:last-child { border-bottom: none; }
.widget_categories a { color: var(--np-text); }
.widget_categories a:hover { color: var(--np-primary); text-decoration: none; }
.widget_tag_cloud a { display: inline-block; padding: 4px 10px; background: var(--np-light); border-radius: 20px; margin: 3px; color: var(--np-muted); font-size: .78rem; }
.widget_tag_cloud a:hover { background: var(--np-primary); color: #fff; text-decoration: none; }

/* ── Archive / Category ───────────────────────────── */
.archive-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 28px 0; }
@media (min-width: 1024px) { .archive-wrap { grid-template-columns: 1fr 300px; } }
.archive-header { margin-bottom: 24px; }
.archive-title { font-size: 1.6rem; font-weight: 800; color: var(--np-navy); }
.archive-description { color: var(--np-muted); margin-top: 8px; }

.category-header { background: var(--np-primary); color: #fff; border-radius: var(--np-radius); padding: 28px; margin-bottom: 24px; }
.category-title { font-size: 1.8rem; font-weight: 800; }
.cat-description { opacity: .85; margin-top: 8px; }
.cat-count { display: inline-block; margin-top: 8px; font-size: .8rem; background: rgba(255,255,255,.2); padding: 4px 12px; border-radius: 20px; }

.category-featured { display: grid; grid-template-columns: 1fr; gap: 20px; background: var(--np-card-bg); border-radius: var(--np-radius); overflow: hidden; margin-bottom: 28px; box-shadow: var(--np-shadow); }
@media (min-width: 640px) { .category-featured { grid-template-columns: 1fr 1fr; } }
.cat-feat-img img { width: 100%; height: 250px; object-fit: cover; }
.cat-feat-body { padding: 24px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.cat-feat-title { font-size: 1.2rem; font-weight: 700; }
.cat-feat-title a { color: var(--np-navy); }
.cat-feat-title a:hover { color: var(--np-primary); }
.cat-feat-meta { font-size: .82rem; color: var(--np-muted); display: flex; gap: 12px; }
.cat-feat-excerpt { font-size: .9rem; color: var(--np-muted); line-height: 1.6; }

/* ── Search ───────────────────────────────────────── */
.search-header { margin-bottom: 28px; }
.search-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.search-title span { color: var(--np-primary); }
.search-count { font-size: .85rem; color: var(--np-muted); margin-top: 12px; }
.no-results-box { text-align: center; padding: 60px 20px; }
.no-results-box h2 { font-size: 1.5rem; margin-bottom: 12px; }
.no-results { color: var(--np-muted); }

/* ── Search form ──────────────────────────────────── */
.search-form { display: flex; gap: 0; }
.search-form input[type="search"] {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--np-border);
    border-right: none;
    border-radius: var(--np-radius) 0 0 var(--np-radius);
    font-size: .9rem;
    outline: none;
}
.search-form input[type="search"]:focus { border-color: var(--np-primary); }
.search-form input[type="submit"] {
    padding: 10px 20px;
    background: var(--np-primary);
    color: #fff;
    border: none;
    border-radius: 0 var(--np-radius) var(--np-radius) 0;
    cursor: pointer;
    font-weight: 600;
}

/* ── 404 ──────────────────────────────────────────── */
.error-404__code { display: block; font-size: 7rem; font-weight: 900; color: var(--np-primary); line-height: 1; }
.error-404__title { font-size: 2rem; font-weight: 700; margin: 16px 0; }
.error-404__msg { color: var(--np-muted); margin-bottom: 24px; }

/* ── Newsletter section ───────────────────────────── */
.newsletter-section { background: var(--np-navy); color: #fff; padding: 60px 0; text-align: center; margin-top: 40px; }
.newsletter-inner h2 { font-size: 1.8rem; font-weight: 700; }
.newsletter-inner p { opacity: .8; margin: 12px 0 24px; }

/* ── Footer ───────────────────────────────────────── */
.site-footer { background: var(--np-dark); color: #aaa; margin-top: 60px; }
.footer-widgets { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding: 60px 0 40px; }
.footer-col .custom-logo { filter: brightness(0) invert(1); opacity: .8; height: 40px; }
.footer-col .site-text-logo { color: #fff; }
.footer-about { font-size: .875rem; color: #888; margin: 12px 0; line-height: 1.7; }
.footer-widget-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-cat-list { display: flex; flex-direction: column; gap: 8px; }
.footer-cat-list a { color: #888; font-size: .875rem; }
.footer-cat-list a:hover { color: #fff; text-decoration: none; }
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { color: #888; font-size: .875rem; }
.footer-nav-list a:hover { color: #fff; text-decoration: none; }

.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; transition: background var(--np-transition); }
.social-icon:hover { background: var(--np-primary); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.copyright { font-size: .82rem; color: #666; }
.footer-bottom .social-links { margin-top: 0; }
.footer-bottom .social-icon { width: 28px; height: 28px; }

/* ── Back to top ──────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--np-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--np-shadow-lg);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s, transform .3s;
    z-index: 90;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #a93226; }

/* ── Pagination ───────────────────────────────────── */
.newspro-pagination { margin-top: 40px; }
.newspro-pagination ul { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.newspro-pagination li a,
.newspro-pagination li span {
    display: block;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 600;
    border: 1px solid var(--np-border);
    color: var(--np-text);
    background: var(--np-card-bg);
}
.newspro-pagination li a:hover { background: var(--np-primary); color: #fff; border-color: var(--np-primary); text-decoration: none; }
.newspro-pagination .current { background: var(--np-primary); color: #fff; border-color: var(--np-primary); }

/* ── Comments ─────────────────────────────────────── */
.comments-area { margin-top: 40px; border-top: 2px solid var(--np-border); padding-top: 32px; }
.comments-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.comment-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.comment-body { background: var(--np-light); border-radius: var(--np-radius); padding: 20px; }
.comment-author { font-weight: 700; }
.comment-metadata { font-size: .8rem; color: var(--np-muted); margin: 4px 0; }
.comment-content p { margin-bottom: 0; }
.comments-closed { color: var(--np-muted); font-style: italic; }

/* ── Post status badges ───────────────────────────── */
.post-date { font-size: .78rem; color: var(--np-muted); display: block; }
.post-author-link { color: var(--np-muted); font-weight: 600; }
.post-author-link:hover { color: var(--np-primary); text-decoration: none; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 767px) {
    .hero-lead__title { font-size: 1.1rem; }
    .hero-side-thumb { width: 80px; }
    .hero-side-thumb img { width: 80px; height: 56px; }
    .hero-side-title { font-size: .82rem; }
    .entry-title { font-size: 1.4rem; }
    .footer-widgets { gap: 28px; }
    .nav-links { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; }
    .footer-bottom__inner { flex-direction: column; text-align: center; }
}

@media (min-width: 768px) {
    .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
