/* ============================================================
   OpportunitiesPulse — Design tokens
   ============================================================ */
:root {
  --teal-900: #0F4C5C;
  --teal-800: #12586A;
  --teal-050: #E7F1F1;
  --mint-500: #2A9D8F;
  --mint-100: #DCF0EC;
  --gold-500: #E9C46A;
  --gold-700: #B98A2E;
  --coral-500: #E4694B;
  --ink-900: #122A2E;
  --ink-600: #445A5D;
  --ink-400: #7B8E90;
  --paper: #F7FAF9;
  --paper-raised: #FFFFFF;
  --line: #DCE6E4;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15,76,92,0.06), 0 1px 1px rgba(15,76,92,0.04);
  --shadow-md: 0 8px 24px rgba(15,76,92,0.10);
  --container: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--teal-900); font-weight: 700; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mint-500);
  font-weight: 600;
}

/* ============================================================
   Top utility bar
   ============================================================ */
.utility-bar {
  background: var(--teal-900);
  color: #DCEDEB;
  font-size: 13px;
}
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; height: 36px; }
.utility-bar .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; margin-left: 4px;
  border-radius: 50%; opacity: 0.85; transition: opacity 0.15s, background 0.15s;
}
.utility-bar .social a:hover { opacity: 1; background: rgba(255,255,255,0.12); }
.utility-bar .social svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================================================
   Header / nav
   ============================================================ */
header.site-header {
  background: var(--paper-raised);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 34px; height: 34px; }
.brand-text { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--teal-900); letter-spacing: -0.01em; }
.brand-text span { color: var(--mint-500); }

nav.main-nav { display: flex; align-items: center; gap: 2px; }
nav.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  background: none; border: none; color: var(--ink-900);
  font-size: 14px; font-weight: 600; padding: 10px 10px; border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-item > a:hover, .nav-item > button:hover { background: var(--mint-100); color: var(--teal-900); }
.nav-item .chev { width: 9px; height: 9px; margin-top: 1px; }
.dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 6px;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); min-width: 250px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--ink-600); }
.dropdown a:hover { background: var(--mint-100); color: var(--teal-900); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper-raised);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.15s, background 0.15s;
}
.icon-btn:hover { background: var(--mint-100); border-color: var(--mint-500); }
.icon-btn svg { width: 17px; height: 17px; stroke: var(--teal-900); fill: none; }
.btn-signin {
  background: var(--teal-900); color: white; font-size: 14px; font-weight: 600;
  padding: 10px 18px; border-radius: 999px; border: none; transition: background 0.15s, transform 0.15s;
}
.btn-signin:hover { background: var(--mint-500); transform: translateY(-1px); }
.menu-toggle { display: none; }

/* ============================================================
   Trending ticker
   ============================================================ */
.ticker {
  background: var(--teal-050); border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap; height: 42px; display: flex; align-items: center;
}
.ticker .label {
  flex-shrink: 0; background: var(--gold-500); color: var(--teal-900); font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 16px; height: 100%; display: flex; align-items: center;
}
.ticker-track { display: flex; gap: 40px; padding-left: 24px; animation: scroll-left 34s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a { font-size: 13.5px; color: var(--teal-900); font-weight: 600; }
.ticker-track a::before { content: "●"; color: var(--mint-500); font-size: 7px; margin-right: 8px; vertical-align: middle; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 56px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 44px; line-height: 1.12; letter-spacing: -0.015em; margin: 14px 0 16px; }
.hero h1 .accent { color: var(--mint-500); }
.hero p.lede { font-size: 17px; color: var(--ink-600); max-width: 46ch; margin-bottom: 28px; }

.search-panel {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 8px; display: flex; gap: 8px; box-shadow: var(--shadow-md);
}
.search-panel input {
  flex: 1; border: none; background: none; padding: 12px 14px; font-size: 15px; font-family: inherit; color: var(--ink-900);
}
.search-panel input:focus { outline: none; }
.search-panel select {
  border: none; background: var(--paper); border-radius: var(--radius-sm); padding: 0 12px; font-size: 14px;
  font-family: inherit; color: var(--ink-600);
}
.search-panel button {
  background: var(--teal-900); color: white; border: none; border-radius: var(--radius-md);
  padding: 0 22px; font-weight: 700; font-size: 14.5px; transition: background 0.15s;
}
.search-panel button:hover { background: var(--mint-500); }

.hero-tags { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.hero-tags a { font-size: 13px; color: var(--ink-600); border: 1px solid var(--line); padding: 6px 13px; border-radius: 999px; transition: all 0.15s; }
.hero-tags a:hover { border-color: var(--mint-500); color: var(--teal-900); background: var(--mint-100); }

/* Pulse stat cards */
.pulse-stack { display: flex; flex-direction: column; gap: 14px; }
.pulse-card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px 22px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pulse-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pulse-dot {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid currentColor;
  opacity: 0.35; animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(1.35); opacity: 0; } }
.pulse-dot.mint { background: var(--mint-100); color: var(--mint-500); }
.pulse-dot.gold { background: #FBF1DC; color: var(--gold-700); }
.pulse-dot.teal { background: var(--teal-050); color: var(--teal-900); }
.pulse-dot svg { width: 20px; height: 20px; stroke: currentColor; fill: none; z-index: 1; }
.pulse-num { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--teal-900); line-height: 1; }
.pulse-label { font-size: 13px; color: var(--ink-400); margin-top: 3px; }

/* ============================================================
   Section headers
   ============================================================ */
.section { padding: 44px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; gap: 20px; }
.section-head h2 { font-size: 27px; letter-spacing: -0.01em; }
.section-head .view-all { font-size: 14px; font-weight: 700; color: var(--mint-500); white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.section-head .view-all:hover { color: var(--teal-900); }
.section-head .view-all svg { width: 13px; height: 13px; }

/* ============================================================
   Opportunity cards
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column; transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--mint-500); }
.card-thumb {
  aspect-ratio: 16/10; position: relative; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 30px; color: rgba(255,255,255,0.92);
}
.card-thumb .glyph { width: 34px; height: 34px; stroke: white; fill: none; opacity: 0.9; }
.card-thumb .cat-tag {
  position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.92); color: var(--teal-900);
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.thumb-teal { background: linear-gradient(135deg, #0F4C5C, #1a7183); }
.thumb-mint { background: linear-gradient(135deg, #2A9D8F, #1f7a6f); }
.thumb-gold { background: linear-gradient(135deg, #E9C46A, #c99a3a); }
.thumb-coral{ background: linear-gradient(135deg, #E4694B, #b84a30); }

.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 16.5px; line-height: 1.35; font-weight: 700; }
.card-body h3 a:hover { color: var(--mint-500); }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; font-size: 12.5px; color: var(--ink-400); font-family: var(--font-mono); }
.card-meta .loc { display: flex; align-items: center; gap: 5px; }
.card-meta svg { width: 12px; height: 12px; stroke: var(--ink-400); fill: none; }

/* Deadline pulse badge — the signature element */
.pulse-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; font-family: var(--font-mono); }
.pulse-badge .dot { width: 8px; height: 8px; border-radius: 50%; position: relative; flex-shrink: 0; }
.pulse-badge .dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid currentColor;
  opacity: 0.5; animation: pulse-ring 1.8s ease-out infinite;
}
.pulse-badge.open .dot { background: var(--mint-500); color: var(--mint-500); }
.pulse-badge.open { color: var(--mint-500); }
.pulse-badge.soon .dot { background: var(--gold-700); color: var(--gold-700); }
.pulse-badge.soon { color: var(--gold-700); }
.pulse-badge.urgent .dot { background: var(--coral-500); color: var(--coral-500); }
.pulse-badge.urgent { color: var(--coral-500); }

/* ============================================================
   Category rail (horizontal scroll)
   ============================================================ */
.rail-section { background: var(--teal-050); }
.rail { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.rail .card { min-width: 240px; max-width: 240px; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--mint-500); border-radius: 999px; }

/* ============================================================
   Main + sidebar layout
   ============================================================ */
.layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 96px; }
.side-box {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px;
}
.side-box h4 { font-size: 15px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.side-box h4::before { content: ""; width: 4px; height: 16px; background: var(--gold-500); border-radius: 2px; }
.side-list { display: flex; flex-direction: column; gap: 12px; }
.side-list li { display: flex; gap: 10px; }
.side-list .num { font-family: var(--font-mono); font-size: 12px; color: var(--mint-500); font-weight: 700; flex-shrink: 0; width: 18px; padding-top: 1px; }
.side-list a { font-size: 13.5px; font-weight: 600; line-height: 1.4; color: var(--ink-900); }
.side-list a:hover { color: var(--mint-500); }

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-list a { font-size: 12.5px; background: var(--mint-100); color: var(--teal-900); padding: 6px 12px; border-radius: 999px; font-weight: 600; }
.chip-list a:hover { background: var(--mint-500); color: white; }

.newsletter-box { background: var(--teal-900); color: white; }
.newsletter-box h4 { color: white; }
.newsletter-box h4::before { background: var(--gold-500); }
.newsletter-box p { font-size: 13px; color: #CFE4E1; }
.newsletter-box form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-box input { padding: 11px 12px; border-radius: var(--radius-sm); border: none; font-size: 13.5px; font-family: inherit; }
.newsletter-box button { background: var(--gold-500); color: var(--teal-900); border: none; font-weight: 700; padding: 11px; border-radius: var(--radius-sm); font-size: 13.5px; transition: background 0.15s; }
.newsletter-box button:hover { background: white; }
.newsletter-box .fine { font-size: 11.5px; color: #9DBFBB; margin-top: 4px; }

/* ============================================================
   Footer
   ============================================================ */
footer.site-footer { background: var(--teal-900); color: #CFE4E1; margin-top: 40px; }
.footer-top { padding: 56px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-text { color: white; }
.footer-brand .brand-text span { color: var(--gold-500); }
.footer-tagline { font-size: 13.5px; color: #9DBFBB; margin: 12px 0 18px; max-width: 34ch; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #235865; display: flex; align-items: center; justify-content: center; transition: background 0.15s, border-color 0.15s; }
.footer-social a:hover { background: var(--mint-500); border-color: var(--mint-500); }
.footer-social svg { width: 14px; height: 14px; fill: #CFE4E1; }
.footer-col h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: #CFE4E1; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid #1E5462; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: #7FA7A2; flex-wrap: wrap; gap: 10px; }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  nav.main-nav, .header-actions .btn-signin { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .hero h1 { font-size: 32px; }
  .search-panel { flex-wrap: wrap; }
  .search-panel select { width: 100%; padding: 10px 12px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Added: article pages, listing pages, notices, mobile nav
   ============================================================ */
.site-notice { padding: 12px 0; text-align: center; font-size: 14px; font-weight: 600; }
.site-notice.notice-ok  { background: var(--mint-100); color: var(--teal-900); border-bottom: 1px solid var(--line); }
.site-notice.notice-err { background: #FBE3DD; color: #9C3B22; border-bottom: 1px solid var(--line); }

.mobile-nav { background: var(--paper-raised); border-bottom: 1px solid var(--line); }
.mobile-nav .container { display: flex; flex-direction: column; padding: 8px 24px 16px; }
.mobile-nav a { padding: 11px 0; font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--line); color: var(--ink-900); }
.mobile-nav a.sub { font-size: 13.5px; font-weight: 500; color: var(--ink-600); padding-left: 14px; }
.mobile-nav a:last-child { border-bottom: none; }
.nav-item.is-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

/* Article / opportunity detail */
.article-hero { background: linear-gradient(135deg, #0F4C5C, #1a7183); padding: 40px 0 60px; color: white; }
.article-hero .breadcrumb { color: #BFE0DC; font-size: 13px; margin-bottom: 14px; }
.article-hero .breadcrumb a { color: #BFE0DC; }
.article-hero .breadcrumb a:hover { color: white; }
.article-hero h1 { color: white; font-size: 34px; max-width: 42ch; line-height: 1.18; margin-top: 8px; }
.article-eyebrow { color: var(--gold-500); }
.article-hero .meta-row { display: flex; gap: 22px; margin-top: 20px; flex-wrap: wrap; font-size: 13.5px; color: #CFE4E1; align-items: center; }
.article-badge { color: #9FE0D4 !important; }
.article-badge .dot { background: #9FE0D4 !important; color: #9FE0D4 !important; }

.fact-panel {
  background: var(--paper-raised); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  margin-top: -34px; padding: 24px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 2;
}
.fact-item .k { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-400); }
.fact-item .v { font-weight: 700; color: var(--teal-900); margin-top: 4px; font-size: 15px; }

.article-body { max-width: 760px; }
.article-lede { font-size: 18px; color: var(--ink-600); font-weight: 500; margin-bottom: 8px; }
.article-body h2 { font-size: 21px; margin: 34px 0 12px; }
.article-body h3 { font-size: 17px; margin: 24px 0 10px; }
.article-body p, .article-body li { color: var(--ink-600); font-size: 15.5px; }
.article-body ul { padding-left: 20px; list-style: disc; margin-bottom: 1em; }
.article-body ol { padding-left: 20px; list-style: decimal; margin-bottom: 1em; }
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--ink-900); }

.cta-box { background: var(--teal-050); border-radius: var(--radius-md); padding: 22px 24px; margin: 30px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cta-box strong { color: var(--teal-900); font-family: var(--font-display); }
.cta-note { font-size: 13.5px; color: var(--ink-400); }
.cta-box a.apply-btn { background: var(--teal-900); color: white; padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14.5px; white-space: nowrap; }
.cta-box a.apply-btn:hover { background: var(--mint-500); }

/* Listing / generic page head */
.page-head { padding: 40px 0 8px; }
.breadcrumb { font-size: 13px; color: var(--ink-400); margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--mint-500); }
.page-head h1 { font-size: 32px; }
.page-head .lede { color: var(--ink-600); margin-top: 10px; font-size: 16px; }
.post-title { font-size: 32px; max-width: 40ch; }
.post-meta { font-size: 13px; color: var(--ink-400); margin-top: 10px; font-family: var(--font-mono); }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 30px; }
.chip-filter { background: var(--paper-raised); border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--ink-600); }
.chip-filter.active, .chip-filter:hover { background: var(--teal-900); border-color: var(--teal-900); color: white; }

.pagination { display: flex; justify-content: center; gap: 8px; margin: 44px 0 20px; flex-wrap: wrap; }
.pagination a { min-width: 38px; height: 38px; padding: 0 10px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; background: var(--paper-raised); }
.pagination a.active, .pagination a:hover { background: var(--teal-900); border-color: var(--teal-900); color: white; }

.card-excerpt { font-size: 13.5px; color: var(--ink-400); margin: 0; line-height: 1.5; }

.search-panel-inline { max-width: 760px; margin-top: 20px; box-shadow: var(--shadow-sm); }

.empty-note { background: var(--paper-raised); border: 1px dashed var(--line); border-radius: var(--radius-md); padding: 28px; color: var(--ink-600); }

.notfound { padding: 70px 0 30px; }
.notfound-title { font-size: 34px; margin: 12px 0 12px; }
.notfound .apply-btn { display: inline-block; background: var(--teal-900); color: white; padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14.5px; }

.footer-newsletter { background: #0C3E4B; border-radius: var(--radius-lg); padding: 28px 32px; display: grid; grid-template-columns: 1fr auto; gap: 12px 40px; align-items: center; margin-bottom: 28px; }
.footer-newsletter h4 { color: white; font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.footer-newsletter p { font-size: 13px; color: #9DBFBB; margin: 0; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input { padding: 11px 14px; border-radius: var(--radius-sm); border: none; font-size: 13.5px; font-family: inherit; min-width: 240px; }
.footer-newsletter button { background: var(--gold-500); color: var(--teal-900); border: none; font-weight: 700; padding: 11px 22px; border-radius: var(--radius-sm); font-size: 13.5px; white-space: nowrap; }
.footer-newsletter button:hover { background: white; }
.footer-newsletter .fine { grid-column: 1 / -1; font-size: 11.5px; color: #7FA7A2; }

@media (max-width: 980px) {
  .fact-panel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .article-hero h1 { font-size: 26px; }
  .fact-panel { grid-template-columns: 1fr; padding: 18px 20px; margin-top: -24px; }
  .footer-newsletter { grid-template-columns: 1fr; padding: 22px; }
  .footer-newsletter form { flex-direction: column; }
  .footer-newsletter input { min-width: 0; width: 100%; }
  .notfound-title { font-size: 26px; }
}
