@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0d2347;
  --navy-mid: #1a3a6b;
  --accent: #1c5ba0;
  --accent-light: #2e7dd1;
  --bg: #f2f4f7;
  --bg-card: #ffffff;
  --bg-dark: #0a1a30;
  --text-primary: #12192b;
  --text-secondary: #4a5568;
  --text-muted: #8696a8;
  --border: #d6dde8;
  --border-light: #eaeff5;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-light); }
ul { list-style: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  letter-spacing: .04em;
  padding: .4rem 0;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.65); }
.topbar a:hover { color: #fff; }
.topbar-date { font-size: .72rem; }
.topbar-links { display: flex; gap: 1.2rem; }

/* ── HEADER ── */
.site-header {
  background: var(--bg-card);
  border-bottom: 2px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(13,35,71,.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-tagline {
  font-size: .68rem;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .1rem;
}

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .2rem; }
.nav-list a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: .45rem .7rem;
  border-radius: 4px;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-list a:hover, .nav-list a.active {
  background: var(--bg);
  color: var(--navy);
}
.nav-list .nav-cta {
  background: var(--navy);
  color: #fff;
  margin-left: .4rem;
  padding: .45rem .9rem;
}
.nav-list .nav-cta:hover { background: var(--navy-mid); color: #fff; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: .3rem;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform .3s;
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .burger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding: .8rem 1.5rem 1.2rem;
  }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-list a { width: 100%; padding: .65rem .5rem; font-size: .9rem; }
}

/* ── HERO ── */
.hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 0;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.hero-main-link { text-decoration: none; }
.hero-category {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
  display: block;
}
.hero-title {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.hero-excerpt {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hero-meta { display: flex; gap: 1.2rem; align-items: center; font-size: .78rem; color: var(--text-muted); }
.hero-meta .author { font-weight: 500; color: var(--text-secondary); }
.hero-image-wrap {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
.hero-side-item { display: flex; gap: 1rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border-light); text-decoration: none; }
.hero-side-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-side-img { width: 80px; height: 60px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: var(--bg); }
.hero-side-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-side-cat { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.hero-side-title { font-family: var(--serif); font-size: .92rem; font-weight: 600; color: var(--text-primary); line-height: 1.35; margin-top: .2rem; }

.hero-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: .6rem 0;
}
.hero-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.strip-tag {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: .25rem .65rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.strip-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.page-section { padding: 3rem 0; }
.page-section + .page-section { padding-top: 0; }

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--navy);
}
.section-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.section-link { font-size: .78rem; font-weight: 500; color: var(--accent); }

/* ── CARD GRID ── */
.card-grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: 0 6px 24px rgba(13,35,71,.1); transform: translateY(-2px); }
.card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.card:hover .card-img img { transform: scale(1.03); }
.card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.card-cat { font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.card-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text-primary); line-height: 1.35; margin-bottom: .6rem; }
.card-excerpt { font-size: .82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: .9rem; flex: 1; }
.card-meta { display: flex; gap: .8rem; font-size: .72rem; color: var(--text-muted); margin-top: auto; }
.card-meta .author { font-weight: 500; color: var(--text-secondary); }

/* ── LIST ARTICLE ── */
.article-list { display: flex; flex-direction: column; gap: 1.2rem; }
.article-list-item { display: flex; gap: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border-light); text-decoration: none; }
.article-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.ali-img { width: 120px; height: 85px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: var(--bg); }
.ali-img img { width: 100%; height: 100%; object-fit: cover; }
.ali-cat { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.ali-title { font-family: var(--serif); font-size: .97rem; font-weight: 600; color: var(--text-primary); line-height: 1.35; margin: .3rem 0 .5rem; }
.ali-meta { font-size: .7rem; color: var(--text-muted); }

/* ── SIDEBAR ── */
.two-col { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 6px; padding: 1.2rem; }
.widget-title { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--border); padding-bottom: .6rem; margin-bottom: 1rem; }
.widget-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.widget-tag { font-size: .72rem; padding: .25rem .65rem; background: var(--bg); border: 1px solid var(--border); border-radius: 30px; color: var(--text-secondary); text-decoration: none; transition: background .2s, color .2s; }
.widget-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 2rem 0;
  color: #fff;
}
.stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: #fff; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; margin-top: .2rem; }

/* ── FEATURED OPINION ── */
.opinion-block {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem;
  color: #fff;
}
.opinion-block .section-title { color: #fff; }
.opinion-pull {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  border-left: 3px solid var(--accent-light);
  padding-left: 1.2rem;
  margin: 1.2rem 0;
  color: rgba(255,255,255,.9);
}
.opinion-author { font-size: .82rem; color: rgba(255,255,255,.6); }
.opinion-author strong { color: rgba(255,255,255,.85); }

/* ── NEWSLETTER INLINE ── */
.newsletter-inline {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.newsletter-inline h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: .5rem; }
.newsletter-inline p { font-size: .88rem; color: var(--text-secondary); margin-bottom: 1.2rem; }
.nl-form { display: flex; gap: .6rem; max-width: 420px; margin: 0 auto; }
.nl-form input {
  flex: 1;
  padding: .6rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}
.nl-form input:focus { border-color: var(--accent); }
.nl-form button {
  padding: .6rem 1.2rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.nl-form button:hover { background: var(--navy-mid); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .6rem 1.4rem;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: .4rem .9rem; font-size: .78rem; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-light); border-color: var(--accent-light); color: #fff; }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: .4rem; padding: 2rem 0; }
.page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--bg-card);
  transition: background .15s, color .15s, border-color .15s;
}
.page-btn:hover, .page-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── ARTICLE PAGE ── */
.article-hero { background: var(--bg-card); padding: 2rem 0 0; border-bottom: 1px solid var(--border); }
.article-hero-inner { max-width: 800px; margin: 0 auto; padding: 0 1.5rem 2rem; }
.article-hero-cat { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.article-hero-title { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; color: var(--navy); line-height: 1.25; letter-spacing: -.02em; margin-bottom: 1rem; }
.article-hero-lead { font-family: var(--serif); font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.article-byline { display: flex; align-items: center; gap: 1rem; font-size: .8rem; color: var(--text-muted); padding: 1rem 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.byline-name { font-weight: 600; color: var(--text-secondary); }
.article-main-img { width: 100%; aspect-ratio: 16/8; overflow: hidden; border-radius: 6px; margin: 1.5rem 0; background: var(--bg); }
.article-main-img img { width: 100%; height: 100%; object-fit: cover; }
.img-caption { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: .5rem; }

.article-body { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem; }
.article-body p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.8; color: var(--text-primary); margin-bottom: 1.4rem; }
.article-body h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 2rem 0 1rem; }
.article-body h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: 1.5rem 0 .8rem; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.8rem 0;
  padding: .8rem 0 .8rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
}
.article-body ul li { font-family: var(--serif); font-size: 1.05rem; line-height: 1.7; color: var(--text-primary); padding-left: 1.2rem; position: relative; margin-bottom: .6rem; list-style: disc; list-style-position: inside; }

/* ── TAGS ── */
.article-tags { display: flex; gap: .5rem; flex-wrap: wrap; padding: 1.5rem 0; border-top: 1px solid var(--border-light); }
.tag { font-size: .72rem; padding: .25rem .65rem; background: var(--bg); border: 1px solid var(--border); border-radius: 30px; color: var(--text-secondary); text-decoration: none; }
.tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── AUTHOR BOX ── */
.author-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.author-avatar { width: 68px; height: 68px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--border); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: .95rem; color: var(--navy); margin-bottom: .3rem; }
.author-role { font-size: .75rem; color: var(--accent); margin-bottom: .5rem; }
.author-bio { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── CATEGORY HEADER ── */
.cat-header { background: var(--navy); padding: 2.5rem 0; margin-bottom: 2rem; }
.cat-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.cat-breadcrumb { font-size: .72rem; color: rgba(255,255,255,.5); margin-bottom: .6rem; }
.cat-breadcrumb a { color: rgba(255,255,255,.5); }
.cat-breadcrumb a:hover { color: #fff; }
.cat-name { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: #fff; }
.cat-desc { font-size: .9rem; color: rgba(255,255,255,.65); margin-top: .5rem; max-width: 600px; }

/* ── ABOUT ── */
.about-hero { padding: 3rem 0; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-text h1 { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.about-text p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.2rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 6px; padding: 1.2rem; text-align: center; }
.team-photo { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin: 0 auto .8rem; background: var(--bg); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.team-role { font-size: .75rem; color: var(--accent); margin-top: .2rem; }
.team-desc { font-size: .78rem; color: var(--text-secondary); line-height: 1.5; margin-top: .5rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: .4rem; letter-spacing: .02em; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--text-primary);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: 6px; padding: 1rem 1.2rem; font-size: .88rem; color: #2e7d32; margin-top: 1rem; }
.form-success.show { display: block; }

.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-item { display: flex; gap: .9rem; align-items: flex-start; }
.info-icon { width: 36px; height: 36px; background: var(--bg); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.info-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.info-value { font-size: .9rem; color: var(--text-primary); margin-top: .15rem; }
.info-value a { color: var(--text-primary); }

/* ── POLICY PAGE ── */
.policy-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 1.5rem; }
.policy-wrap h1 { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.policy-date { font-size: .8rem; color: var(--text-muted); margin-bottom: 2rem; }
.policy-wrap h2 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .8rem; }
.policy-wrap p { font-family: var(--serif); font-size: .98rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.1rem; }
.policy-wrap ul { margin: .8rem 0 1.1rem 1.5rem; }
.policy-wrap ul li { font-family: var(--serif); font-size: .98rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: .5rem; list-style: disc; }
.policy-wrap a { color: var(--accent); }

/* ── SEARCH ── */
.search-bar { display: flex; gap: .8rem; margin-bottom: 2rem; }
.search-input {
  flex: 1;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--accent); }
.search-btn {
  padding: .75rem 1.5rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.search-btn:hover { background: var(--navy-mid); }
.search-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.filter-btn { font-size: .78rem; padding: .35rem .8rem; border: 1.5px solid var(--border); border-radius: 30px; background: var(--bg-card); color: var(--text-secondary); cursor: pointer; transition: all .15s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--navy); background: var(--navy); color: #fff; }

/* ── NEWSLETTER PAGE ── */
.nl-hero { background: var(--navy); padding: 4rem 0; text-align: center; }
.nl-hero h1 { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: .8rem; }
.nl-hero p { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto; }
.nl-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 3rem 0; }
.nl-benefit { text-align: center; padding: 1.5rem; background: var(--bg-card); border-radius: 6px; border: 1px solid var(--border-light); }
.nl-benefit-icon { font-size: 1.6rem; margin-bottom: .8rem; }
.nl-benefit h3 { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.nl-benefit p { font-size: .82rem; color: var(--text-secondary); line-height: 1.5; }

/* ── ARCHIVE ── */
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.archive-month { margin-bottom: 2.5rem; }
.archive-month-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); padding-bottom: .5rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }

/* ── DATA TABLE ── */
.data-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.data-table th { background: var(--navy); color: #fff; padding: .75rem 1rem; text-align: left; font-weight: 600; font-size: .78rem; letter-spacing: .04em; }
.data-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
.data-table tr:hover td { background: var(--bg); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 3rem 0 0; margin-top: 4rem; }
.footer-grid { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem 2.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-logo-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.footer-tagline { font-size: .75rem; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.55); }
.footer-col h4 { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .8rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul a { font-size: .82rem; color: rgba(255,255,255,.6); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 1.1rem 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 1.2rem; }
.footer-bottom-links a { font-size: .75rem; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ── TICKER ── */
.breaking-ticker { background: var(--accent); padding: .4rem 0; overflow: hidden; }
.ticker-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; gap: 1.2rem; align-items: center; }
.ticker-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; white-space: nowrap; background: rgba(0,0,0,.2); padding: .2rem .6rem; border-radius: 2px; }
.ticker-scroll { overflow: hidden; }
.ticker-track { display: flex; gap: 2.5rem; animation: ticker 35s linear infinite; white-space: nowrap; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { font-size: .78rem; color: rgba(255,255,255,.9); }
.ticker-item a { color: rgba(255,255,255,.9); }
.ticker-item a:hover { color: #fff; }
.ticker-sep { color: rgba(255,255,255,.4); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── POLICY PAGES ── */
.policy-main { background: var(--bg); padding: 3rem 0 5rem; }
.policy-wrap { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.policy-breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--text-muted); margin-bottom: 2rem; }
.policy-breadcrumb a { color: var(--accent); }
.policy-breadcrumb span { color: var(--text-muted); }
.policy-header { border-bottom: 2px solid var(--border); padding-bottom: 2rem; margin-bottom: 2.5rem; }
.policy-header h1 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: .75rem; }
.policy-meta { font-size: .78rem; color: var(--text-muted); background: var(--surface); padding: .5rem .8rem; border-radius: 4px; display: inline-block; margin-bottom: 1rem; }
.policy-intro { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); border-left: 3px solid var(--accent); padding-left: 1.2rem; margin: 0; }
.policy-body { display: flex; flex-direction: column; gap: 0; }
.policy-section { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.policy-section:last-child { border-bottom: none; }
.policy-section h2 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; padding-bottom: .4rem; border-bottom: 1px solid var(--border); }
.policy-section h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text-primary); margin: 1.2rem 0 .6rem; }
.policy-section p { font-size: .92rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: .8rem; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul, .policy-section ol { padding-left: 1.4rem; margin-bottom: .8rem; }
.policy-section ul li, .policy-section ol li { font-size: .92rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: .4rem; }
.policy-section a { color: var(--accent); text-decoration: underline; }
.policy-section strong { color: var(--text-primary); font-weight: 600; }
.policy-table-wrap { overflow-x: auto; margin: 1rem 0; }
.policy-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.policy-table th { background: var(--navy); color: #fff; text-align: left; padding: .6rem .9rem; font-weight: 600; font-family: var(--font-head); }
.policy-table td { padding: .6rem .9rem; border-bottom: 1px solid var(--border); color: var(--text-secondary); vertical-align: top; line-height: 1.55; }
.policy-table tbody tr:nth-child(even) { background: var(--surface); }
.policy-table tbody tr:hover { background: rgba(26, 54, 93, .04); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .hero-title { font-size: 1.9rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-benefits { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4, .archive-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.55rem; }
  .cat-name { font-size: 1.5rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .nl-benefits { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
}

/* auto-aliases R13 */
:root {
  --font-head: 'Playfair Display', Georgia, serif;
  --surface: #ffffff;
}
