@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,600&display=swap');

:root {
    --bg: #eef2f6;
    --surface: #ffffff;
    --surface-soft: #f6f8fb;
    --surface-dark: #0f1722;
    --surface-dark-soft: #162131;
    --text: #0f1722;
    --muted: #64748b;
    --line: rgba(15, 23, 34, 0.10);
    --line-strong: rgba(15, 23, 34, 0.16);
    --accent: #0f5bd8;
    --accent-soft: #dce8ff;
    --success: #0f9d77;
    --warning: #c56d12;
    --danger: #c0392b;
    --shadow: 0 20px 60px rgba(15, 23, 34, 0.08);
    --radius: 28px;
    --radius-sm: 18px;
    --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(15, 91, 216, 0.10), transparent 24%),
        linear-gradient(180deg, #f6f8fb 0%, #eef2f6 100%);
    color: var(--text);
    line-height: 1.68;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.shell { width: min(calc(100% - 2rem), var(--shell)); margin: 0 auto; }
.narrow-shell { width: min(calc(100% - 2rem), 860px); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 248, 251, 0.84);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.nav-bar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
}
.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f1722, #0f5bd8);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.03em;
}
.brand-copy { min-width: 0; }
.brand-copy strong {
    display: block;
    font-size: 1rem;
}
.brand-copy small {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    color: var(--muted);
    font-size: 0.96rem;
}
.main-nav a:hover,
.nav-link:hover,
.text-link:hover,
.footer-links a:hover,
.list-card h3 a:hover,
.story-card h3 a:hover,
.news-row h2 a:hover,
.news-item h3 a:hover {
    color: var(--accent);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.nav-link {
    color: var(--muted);
    font-weight: 600;
}
.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    border: 0;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    cursor: pointer;
}
.nav-cta,
.button-primary {
    background: var(--surface-dark);
    color: #fff;
    box-shadow: var(--shadow);
}
.button-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line-strong);
}
.button-ghost {
    background: rgba(255,255,255,0.7);
    color: var(--text);
    border: 1px solid var(--line);
}
.button:hover,
.nav-cta:hover { transform: translateY(-1px); }

.hero {
    padding: 3.8rem 0 1.8rem;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1.6rem;
    align-items: stretch;
}
.hero-copy,
.hero-panel,
.lead-story,
.story-card,
.news-item,
.news-row,
.list-card,
.sector-card,
.newsletter-box,
.article-body,
.aside-card,
.page-body,
.analytics-card,
.metric-card,
.login-card,
.notice,
.feed-card,
.form-panel {
    background: rgba(255,255,255,0.86);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-copy {
    border-radius: 32px;
    padding: clamp(1.6rem, 3vw, 2.6rem);
}
.hero-copy h1,
.page-hero h1,
.article-hero h1,
.section-head h2,
.newsletter-box h2,
.login-card h1,
.admin-bar h1 {
    font-family: Newsreader, Georgia, serif;
    letter-spacing: -0.035em;
}
.hero-copy h1,
.page-hero h1,
.article-hero h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.94;
    margin: 0 0 1rem;
}
.hero-copy p,
.page-hero p,
.lead {
    font-size: 1.06rem;
    color: var(--muted);
    max-width: 65ch;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 0.36rem 0.72rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.pill,
.source-tag {
    display: inline-flex;
    padding: .28rem .56rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    background: rgba(15, 23, 34, 0.06);
    color: var(--text);
}
.source-tag {
    background: rgba(15, 91, 216, 0.1);
    color: var(--accent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.5rem;
}
.hero-panel {
    border-radius: 32px;
    padding: 1.4rem;
    background:
        radial-gradient(circle at top right, rgba(15, 91, 216, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(15, 23, 34, 0.98), rgba(22, 33, 49, 0.96));
    color: #fff;
    border-color: rgba(255,255,255,0.07);
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1rem;
}
.hero-stat span {
    color: rgba(255,255,255,0.72);
    font-size: .88rem;
}
.hero-stat strong {
    font-size: 1.35rem;
    line-height: 1.2;
}
.hero-card-stack {
    display: grid;
    gap: 0.9rem;
}
.mini-card {
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 1rem 1.1rem;
}
.mini-card span {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: .84rem;
    margin-bottom: .35rem;
}
.mini-card strong {
    font-size: 1rem;
    line-height: 1.4;
}

.section { padding: 1.5rem 0 3.6rem; }
.section-soft {
    background: rgba(255,255,255,0.52);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.section-head h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
}
.text-link {
    color: var(--muted);
    font-weight: 700;
}

.lead-story {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 1.1rem;
    border-radius: var(--radius);
    padding: 1.3rem;
}
.lead-story-copy h3 {
    margin: .8rem 0 .7rem;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.06;
}
.lead-story-copy p {
    color: var(--muted);
    margin: 0;
}
.lead-story-panel {
    border-radius: 22px;
    background: var(--surface-soft);
    padding: 1.1rem 1.2rem;
}
.lead-story-panel strong {
    display: block;
    margin-bottom: .8rem;
}
.lead-story-panel ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.sector-grid,
.story-grid,
.list-grid {
    display: grid;
    gap: 1rem;
}
.sector-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.sector-card,
.story-card,
.list-card,
.news-row,
.news-item {
    border-radius: 24px;
    padding: 1.1rem 1.15rem;
}
.sector-card strong {
    display: block;
    font-size: 1.04rem;
    margin-bottom: .45rem;
}
.sector-card p,
.story-card p,
.list-card p,
.news-row p,
.news-item p {
    color: var(--muted);
    margin: 0;
}
.story-card h3,
.list-card h3,
.news-item h3,
.news-row h2 {
    margin: .75rem 0 .55rem;
    line-height: 1.12;
}
.story-card h3 { font-size: 1.35rem; }
.list-card h3,
.news-item h3 { font-size: 1.24rem; }
.news-row h2 { font-size: 1.38rem; }

.dual-section {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1.2rem;
}
.news-stack,
.news-list {
    display: grid;
    gap: .9rem;
}
.news-item-top,
.news-row-meta,
.meta-row,
.article-meta,
.list-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    color: var(--muted);
    font-size: .9rem;
}
.list-card,
.news-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .8rem;
}
.news-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1rem;
}
.news-row-meta {
    align-items: start;
    flex-direction: column;
    gap: .55rem;
}
.news-row-body { min-width: 0; }
.news-empty {
    text-align: left;
}

.newsletter-box {
    border-radius: 30px;
    padding: 1.4rem 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}
.newsletter-box h2 {
    margin: .2rem 0 .7rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}
.newsletter-box p {
    margin: 0;
    color: var(--muted);
    max-width: 72ch;
}

.page-hero,
.article-hero {
    padding: 3rem 0 1rem;
}
.page-hero h1,
.article-hero h1 {
    margin-bottom: 1rem;
}
.article-shell {
    width: min(calc(100% - 2rem), 980px);
    margin: 0 auto;
}
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.2rem;
    align-items: start;
}
.article-body,
.page-body {
    border-radius: var(--radius);
    padding: clamp(1.2rem, 2vw, 1.7rem);
}
.article-body p,
.page-body p,
.article-body li,
.page-body li {
    color: #1f2937;
}
.article-body h2,
.article-body h3,
.page-body h2,
.page-body h3 {
    font-family: Newsreader, Georgia, serif;
    line-height: 1.06;
    margin: 1.6rem 0 .6rem;
}
.article-body h2,
.page-body h2 { font-size: 2rem; }
.article-body h3,
.page-body h3 { font-size: 1.48rem; }
.article-body a,
.page-body a {
    color: var(--accent);
    text-decoration: underline;
}
.article-body blockquote {
    margin: 1.2rem 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--accent);
    background: var(--surface-soft);
    border-radius: 0 18px 18px 0;
}
.article-aside {
    position: sticky;
    top: 96px;
}
.aside-card {
    border-radius: 22px;
    padding: 1rem 1.1rem;
}
.aside-card strong {
    display: block;
    margin-bottom: .7rem;
}
.aside-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
}
.external-note {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    margin-bottom: 1.1rem;
}

.site-footer {
    padding: 2rem 0 3.2rem;
    background: #fff;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1rem;
}
.footer-grid h3,
.footer-grid h4 {
    margin: 0 0 .7rem;
}
.footer-grid p {
    margin: 0;
    color: var(--muted);
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li + li { margin-top: .45rem; }

/* Admin */
.login-wrap,
.admin-shell {
    width: min(calc(100% - 2rem), 1320px);
    margin: 0 auto;
}
.login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 0;
}
.login-card {
    width: min(100%, 520px);
    border-radius: 30px;
    padding: 1.5rem;
}
.login-card p {
    color: var(--muted);
}

.admin-shell {
    padding: 1.2rem 0 2rem;
}
.admin-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
}
.admin-bar h1 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.96;
}
.toolbar {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}
.admin-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1rem;
}
.admin-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: .6rem;
    box-shadow: var(--shadow);
}
.admin-sidebar a {
    display: block;
    padding: .78rem .9rem;
    border-radius: 16px;
    color: var(--muted);
    font-weight: 700;
}
.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: var(--surface-dark);
    color: #fff;
}
.admin-panel {
    min-width: 0;
}
.notice {
    border-radius: 18px;
    padding: .9rem 1rem;
    margin-bottom: 1rem;
}
.notice-success { border-color: rgba(15,157,119,.18); background: rgba(15,157,119,.08); color: #0b7b5d; }
.notice-error { border-color: rgba(192,57,43,.18); background: rgba(192,57,43,.08); color: #a13024; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}
.metric-card {
    border-radius: 24px;
    padding: 1rem 1.1rem;
}
.metric-card span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: .45rem;
}
.metric-card strong {
    font-size: 2rem;
    line-height: 1;
}

.analytics-grid {
    display: grid;
    gap: 1rem;
}
.analytics-card,
.feed-card,
.form-panel {
    border-radius: 26px;
    padding: 1rem 1.1rem;
}
.analytics-card h2,
.feed-card h2,
.form-panel h2 {
    margin: 0 0 .75rem;
    font-size: 1.2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}
.form-field {
    display: grid;
    gap: .35rem;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-size: .9rem;
    font-weight: 700;
    color: #334155;
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
    padding: .8rem .9rem;
}
.form-field textarea {
    min-height: 180px;
    resize: vertical;
}
.form-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}
.checkbox-row {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.table-wrap { overflow: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}
th, td {
    text-align: left;
    padding: .8rem .7rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
th {
    color: #334155;
    font-size: .9rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: .2rem .55rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    background: rgba(15, 23, 34, 0.08);
    color: var(--text);
}
.badge.published { background: rgba(15,157,119,.10); color: #0b7b5d; }
.badge.warning { background: rgba(197,109,18,.11); color: #9a5710; }

.feed-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1rem;
}
.feed-card small {
    display: block;
    color: var(--muted);
}
.muted {
    color: var(--muted);
}

code {
    background: rgba(15,23,34,0.08);
    padding: .16rem .42rem;
    border-radius: 8px;
}

@media (max-width: 1100px) {
    .main-nav { display: none; }
    .hero-grid,
    .dual-section,
    .lead-story,
    .article-layout,
    .feed-layout,
    .footer-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }
    .sector-grid,
    .story-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .article-aside,
    .admin-sidebar {
        position: static;
    }
    .news-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .nav-bar,
    .nav-actions,
    .section-head,
    .newsletter-box,
    .admin-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .sector-grid,
    .story-grid,
    .list-grid,
    .stats-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    .hero-copy,
    .hero-panel,
    .lead-story,
    .story-card,
    .news-item,
    .news-row,
    .list-card,
    .sector-card,
    .newsletter-box,
    .article-body,
    .aside-card,
    .page-body,
    .analytics-card,
    .metric-card,
    .login-card,
    .feed-card,
    .form-panel {
        border-radius: 22px;
    }
    .hero {
        padding-top: 2rem;
    }
    .hero-copy h1,
    .page-hero h1,
    .article-hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.5rem);
    }
}

/* --- 2026 refresh: strakker, vlakker, nieuwsgerichter --- */
:root {
    --bg: #f4f6f8;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --surface-dark: #101722;
    --surface-dark-soft: #172131;
    --text: #111827;
    --muted: #5f6b7a;
    --line: rgba(17, 24, 39, 0.08);
    --line-strong: rgba(17, 24, 39, 0.14);
    --accent: #0f4fbf;
    --accent-soft: #e7eefc;
    --shadow: 0 8px 24px rgba(15, 23, 34, 0.04);
    --radius: 14px;
    --radius-sm: 10px;
}

body {
    background: linear-gradient(180deg, #f6f7f9 0%, #f3f5f7 100%);
    color: var(--text);
}

.site-header {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
}

.nav-bar {
    min-height: 72px;
    gap: 1.2rem;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #111827;
    font-size: .9rem;
}

.main-nav {
    gap: 1rem;
    font-size: .95rem;
}

.main-nav a,
.admin-sidebar a {
    position: relative;
}

.main-nav a::after,
.admin-sidebar a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: transparent;
}

.main-nav a:hover::after,
.admin-sidebar a.active::after {
    background: var(--accent);
}

.nav-tools {
    gap: .75rem;
}

.site-search {
    display: flex;
    align-items: center;
    min-width: min(360px, 34vw);
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    overflow: hidden;
}

.site-search input,
.search-page-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: .8rem .9rem;
    background: transparent;
    outline: none;
}

.site-search button,
.search-page-form button {
    border: 0;
    background: transparent;
    color: var(--text);
    font-weight: 700;
    padding: .8rem .95rem;
    cursor: pointer;
}

.nav-cta,
.button {
    border-radius: 10px;
    box-shadow: none;
}

.button-secondary,
.button-ghost {
    background: #fff;
}

.hero-copy,
.hero-panel,
.lead-story,
.story-card,
.news-item,
.news-row,
.list-card,
.sector-card,
.newsletter-box,
.article-body,
.aside-card,
.page-body,
.analytics-card,
.metric-card,
.login-card,
.notice,
.feed-card,
.form-panel {
    border-radius: 12px;
    box-shadow: none;
    background: rgba(255,255,255,0.96);
}

.news-hero {
    padding: 2.5rem 0 1.2rem;
}

.news-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
    gap: 1.25rem;
    align-items: start;
}

.news-lead-wrap .section-head h1 {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(2.4rem, 4.4vw, 4.35rem);
    letter-spacing: -0.045em;
    line-height: .96;
    margin: 0 0 .9rem;
}

.compact-head {
    margin-bottom: .9rem;
}

.compact-head h2 {
    font-family: Inter, system-ui, sans-serif;
    letter-spacing: -0.03em;
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    line-height: 1;
}

.lead-story-news {
    grid-template-columns: 1fr;
    padding: 1.25rem;
}

.lead-story-news h2 {
    margin: .6rem 0 .7rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.02;
}

.headline-column {
    border-top: 2px solid var(--text);
    padding-top: .7rem;
}

.column-label {
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .35rem;
}

.headline-item {
    padding: .8rem 0 .95rem;
    border-bottom: 1px solid var(--line);
}

.headline-item:last-child {
    border-bottom: 0;
}

.headline-item h3 {
    margin: .35rem 0 0;
    font-size: 1.05rem;
    line-height: 1.18;
}

.section-tight {
    padding: 1rem 0 2rem;
}

.news-ribbon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .8rem;
    font-size: .95rem;
}

.news-ribbon strong {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}

.news-ribbon span {
    padding: .25rem 0;
    color: var(--text);
}

.news-list-home,
.search-results-list {
    gap: 0;
}

.news-row {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 1.2rem;
    padding: 1rem 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.news-row:first-child {
    border-top: 1px solid var(--line);
}

.news-row-body h2,
.news-row-body h3,
.list-card h3,
.story-card h3,
.article-body h2,
.page-body h2 {
    font-family: Inter, system-ui, sans-serif;
    letter-spacing: -0.028em;
}

.news-row-body h2 {
    font-size: clamp(1.28rem, 2vw, 1.72rem);
    margin: 0 0 .45rem;
}

.news-row p,
.search-summary,
.admin-subnote {
    color: var(--muted);
}

.secondary-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
}

.compact-list-grid {
    grid-template-columns: 1fr;
    gap: .9rem;
}

.compact-card {
    padding: 1rem 1rem .9rem;
}

.compact-card h3 {
    font-size: 1.18rem;
    margin: .55rem 0 .45rem;
}

.sector-grid-flat {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flat-card {
    padding: 1rem;
}

.page-hero,
.article-hero,
.page-hero-news {
    padding: 2.2rem 0 .7rem;
}

.page-hero h1,
.article-hero h1 {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: .98;
    letter-spacing: -0.04em;
}

.search-page-form {
    display: flex;
    gap: .75rem;
    margin-top: 1rem;
}

.search-page-form input {
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: #fff;
}

.search-page-form .button {
    white-space: nowrap;
}

.search-row .news-row-meta {
    gap: .45rem;
}

.article-body,
.page-body {
    border: 1px solid var(--line);
}

.article-body h2,
.page-body h2 {
    font-size: 1.55rem;
    margin-top: 1.8rem;
}

.article-body p,
.page-body p,
.article-body li,
.page-body li {
    color: #263243;
}

.notice {
    border-left: 3px solid var(--accent);
}

.metric-card strong,
.analytics-card h2,
.feed-card h2,
.form-panel h2,
.admin-bar h1,
.login-card h1 {
    font-family: Inter, system-ui, sans-serif;
    letter-spacing: -0.03em;
}

.admin-top-tools {
    align-items: center;
}

.admin-search {
    min-width: 280px;
}

.admin-sidebar a {
    border-radius: 8px;
}

.admin-sidebar a.active {
    background: #fff;
    color: var(--text);
}

.table-wrap table {
    border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
    border-bottom: 1px solid var(--line);
}

.badge {
    border-radius: 999px;
}

@media (max-width: 1080px) {
    .news-hero-grid,
    .secondary-grid,
    .dual-section,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .nav-bar {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: .8rem 0;
    }

    .nav-tools,
    .admin-top-tools {
        width: 100%;
        justify-content: space-between;
    }

    .site-search,
    .admin-search {
        min-width: 0;
        flex: 1;
    }
}

@media (max-width: 760px) {
    .news-row {
        grid-template-columns: 1fr;
        gap: .55rem;
    }

    .headline-column {
        border-top: 1px solid var(--line-strong);
    }

    .search-page-form,
    .nav-tools,
    .admin-top-tools,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sector-grid-flat,
    .list-grid,
    .story-grid,
    .sector-grid {
        grid-template-columns: 1fr;
    }

    .site-search {
        width: 100%;
    }
}
