/* ============================================================
   ANC LIBERATION ARCHIVE — v11 CLEAN
   System fonts only. No external dependencies.
   All layout via flex. One canonical class per element.
============================================================ */

:root {
  --bg:       #FFFFFF;
  --surface:  #F5F5F5;
  --border:   #E0E0E0;
  --text:     #1A1A1A;
  --muted:    #6B6B6B;
  --light:    #9B9B9B;
  --green:    #1B5E20;
  --green2:   #2E7D32;
  --gold:     #C8860A;
  --gold-bg:  #FFF8E1;
  --dark:     #111111;
  --white:    #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NOTICE BAR ───────────────────────────────────────── */
#notice {
  background: #000;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
  padding: 9px 0;
}
.notice-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.notice-wrap a { color: #FFB300; text-decoration: underline; }
#notice-close {
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 18px; line-height: 1; cursor: pointer; padding: 0 4px; flex-shrink: 0;
}
#notice-close:hover { color: white; }

/* ── HEADER ───────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}
.hdr {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  height: 62px; display: flex !important; align-items: center; gap: 20px;
  flex-direction: row !important;
}
.logo { display: flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none; }
.logo img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-text strong { font-size: 15px; font-weight: 700; color: #C8860A; line-height: 1.2; }
.logo-text span { font-size: 10px; color: var(--muted); letter-spacing: .05em; }
.hdr-search {
  display: flex; align-items: center;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 6px; overflow: hidden; transition: border-color .2s;
}
.hdr-search:focus-within { border-color: var(--green2); }
.hdr-search input {
  background: transparent; border: none; outline: none;
  padding: 8px 12px; font-size: 13px; color: var(--text); width: 200px;
}
.hdr-search input::placeholder { color: var(--light); }
.hdr-search button { background: none; border: none; padding: 8px 10px; color: var(--muted); cursor: pointer; }
.hdr-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn {
  font-size: 12px; font-weight: 600; padding: 7px 16px; border-radius: 5px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .2s; white-space: nowrap; letter-spacing: .02em;
}
.btn-outline { border-color: var(--border); color: var(--muted); background: none; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-green  { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green2); }
.ham { display: none; background: none; border: none; font-size: 20px; color: var(--text); cursor: pointer; padding: 4px; }

/* ── NAV ──────────────────────────────────────────────── */
.main-nav { background: var(--green); }
.nav-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 4px;
  padding: 11px 14px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.88);
  transition: all .2s; white-space: nowrap; border-bottom: 2px solid transparent;
}
.nav-item > a:hover, .nav-item:hover > a {
  color: #FFB300; background: rgba(0,0,0,.15); border-bottom-color: #FFB300;
}
.nav-item > a i { font-size: 9px; opacity: .6; }

/* Dropdowns */
.drop, .megadrop {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-top: 2px solid var(--gold); border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: all .2s; z-index: 800;
}
.nav-item:hover .drop, .nav-item:hover .megadrop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.drop { min-width: 200px; }
.drop a {
  display: block; padding: 10px 16px;
  font-size: 13px; color: var(--muted);
  border-bottom: 1px solid var(--border); transition: all .2s;
}
.drop a:last-child { border-bottom: none; }
.drop a:hover { color: var(--green); background: var(--surface); padding-left: 20px; }

/* Year sub-menus inside Documents dropdown */
.drop .sub-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); padding: 10px 16px 4px; display: block;
  border-top: 1px solid var(--border); margin-top: 2px;
}
.drop .sub-label:first-child { border-top: none; margin-top: 0; }
.drop .sub-year {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px; font-size: 12.5px; color: var(--muted);
  border-bottom: none; transition: all .2s; gap: 8px;
}
.drop .sub-year:hover { color: var(--green); background: var(--surface); padding-left: 20px; }
.drop .sub-year .ycount {
  font-size: 10px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 1px 7px; color: var(--light); flex-shrink: 0;
}

/* Mega dropdown */
.megadrop { display: grid; grid-template-columns: repeat(3,1fr) 130px; min-width: 560px; }
.mc { padding: 16px 14px; border-right: 1px solid var(--border); }
.mc:last-child { border-right: none; padding: 0; overflow: hidden; border-radius: 0 0 6px 0; }
.mc:last-child img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.mc h6 {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.mc ul { list-style: none; }
.mc ul li { margin-bottom: 2px; }
.mc ul li a { font-size: 12.5px; color: var(--muted); display: block; padding: 2px 0; transition: all .2s; }
.mc ul li a:hover { color: var(--green); padding-left: 4px; }

/* ── MOBILE MENU ──────────────────────────────────────── */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: var(--green); overflow-y: auto; padding: 16px 20px;
}
.mob-menu.open { display: block; }
.mob-close {
  display: block; margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,.7); font-size: 26px; cursor: pointer; margin-bottom: 14px;
}
.mob-menu a {
  display: block; font-size: 15px; color: rgba(255,255,255,.9);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); transition: color .2s;
}
.mob-menu a:hover { color: #FFB300; }
.mob-sect {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin: 16px 0 4px;
}

/* ── BREADCRUMB / PAGE TOP ────────────────────────────── */
.page-top { background: var(--surface); border-bottom: 1px solid var(--border); padding: 14px 0; }
.pt-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.pt-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
}
.pt-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--green); }
.pt-inner h1 {
  font-size: clamp(20px, 3.5vw, 32px); font-weight: 700; color: var(--text);
  line-height: 1.2; margin-bottom: 8px; letter-spacing: -.01em;
}
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; font-size: 12px; color: var(--light); }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .bsep { font-size: 9px; }
.breadcrumb .bcur { color: var(--text); }

/* ── PAGE LAYOUT — FLEXBOX ────────────────────────────── */
.page-outer { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.page-cols {
  display: flex;
  flex-direction: row;
  gap: 36px;
  padding: 32px 0 60px;
  align-items: flex-start;
}
.page-main { flex: 1 1 0%; min-width: 0; }
.page-side { width: 260px; flex: 0 0 260px; }

/* ── ARCHIVE NOTICE ───────────────────────────────────── */
.arc-note {
  display: flex; align-items: flex-start; gap: 9px;
  background: var(--gold-bg); border: 1px solid #FFD54F;
  border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0;
  padding: 10px 13px; margin-bottom: 24px;
  font-size: 12.5px; color: var(--muted);
}
.arc-note i { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.arc-note a { color: var(--green2); text-decoration: underline; }

/* ── DOC META TABLE ───────────────────────────────────── */
.doc-meta {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 12px 16px; margin-bottom: 22px;
}
.dm-r { display: grid; grid-template-columns: 86px 1fr; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--border); }
.dm-r:last-child { border-bottom: none; }
.dm-k { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding-top: 1px; }
.dm-v { font-size: 13px; color: var(--text); }

/* ── PROSE ────────────────────────────────────────────── */
.prose { font-size: 15.5px; line-height: 1.8; color: var(--text); }
.prose h1 { font-size: 24px; font-weight: 700; margin-bottom: .5em; color: var(--green); }
.prose h2 { font-size: 19px; font-weight: 700; margin: 1.6em 0 .5em; padding-bottom: 7px; border-bottom: 1px solid var(--border); color: var(--text); }
.prose h3 { font-size: 16px; font-weight: 600; margin: 1.3em 0 .4em; }
.prose p { margin-bottom: 1.1em; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--green2); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--gold); }
.prose strong { font-weight: 600; }
.prose ul, .prose ol { margin: .6em 0 1.1em 1.3em; }
.prose li { margin-bottom: .35em; }
.prose blockquote { border-left: 3px solid var(--gold); margin: 1.4em 0; padding: 10px 16px; background: var(--gold-bg); font-style: italic; color: var(--muted); border-radius: 0 4px 4px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.3em 0; font-size: 13.5px; }
.prose th { background: var(--green); color: var(--white); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 8px 12px; text-align: left; }
.prose td { padding: 9px 12px; border-bottom: 1px solid var(--border); color: var(--muted); }
.prose tr:nth-child(even) td { background: var(--surface); }
.prose img { max-width: 100%; border-radius: 5px; margin: 1.3em 0; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 1.6em 0; }

/* ── DOC LIST ─────────────────────────────────────────── */
.dlist-count { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.dlist { }
.drow {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.drow:first-child { border-top: 1px solid var(--border); }
.drow:hover { background: var(--surface); margin: 0 -12px; padding-left: 12px; padding-right: 12px; border-radius: 4px; }
.drow > div { flex: 1; min-width: 0; }
.dtag {
  font-size: 11px; font-weight: 600; color: var(--green); background: #E8F5E9;
  border: 1px solid #A5D6A7; padding: 2px 8px; border-radius: 3px;
  white-space: nowrap; flex-shrink: 0; margin-top: 2px;
  min-width: 96px; text-align: center; font-variant-numeric: tabular-nums;
}
.dlink { font-size: 14px; color: var(--text); line-height: 1.5; transition: color .2s; display: block; }
.dlink:hover { color: var(--green); }
.dsub { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* ── YEAR FILTER ──────────────────────────────────────── */
.filter-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 14px 16px; margin-bottom: 20px;
}
.fbox-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; margin-bottom: 12px;
}
.fbox-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.fbox-count { font-size: 12px; color: var(--muted); }
.fbox-count strong { color: var(--green2); font-weight: 600; }
.fsearch {
  display: flex; align-items: center; background: var(--white);
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: border-color .2s;
}
.fsearch:focus-within { border-color: var(--green2); }
.fsearch input { background: transparent; border: none; outline: none; padding: 6px 10px; font-size: 13px; color: var(--text); width: 150px; }
.fsearch input::placeholder { color: var(--light); }
.fsearch i { padding-right: 9px; color: var(--light); font-size: 12px; }
.fpills { display: flex; flex-wrap: wrap; gap: 5px; }
.fpill {
  font-size: 12px; font-weight: 500; padding: 4px 11px; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--white); color: var(--muted);
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.fpill:hover { border-color: var(--green); color: var(--green); }
.fpill.fp-on { background: var(--green); border-color: var(--green); color: var(--white); }
.fpill.fp-all { background: var(--green); border-color: var(--green); color: var(--white); font-weight: 600; }
.fpill.fp-all:hover { background: var(--green2); }
.fn { font-size: 10px; margin-left: 3px; opacity: .7; }
.decade-div { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 16px 0 5px; display: flex; align-items: center; gap: 8px; }
.decade-div::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.fempty { text-align: center; padding: 32px 16px; display: none; }
.fempty i { font-size: 22px; color: var(--border); margin-bottom: 8px; display: block; }
.fempty h3 { font-size: 16px; font-weight: 600; color: var(--muted); margin-bottom: 5px; }
.fempty p { font-size: 13px; color: var(--light); }

/* ── SIDEBAR ──────────────────────────────────────────── */
.side-note {
  background: var(--gold-bg); border: 1px solid #FFD54F;
  border-radius: 6px; padding: 13px 14px; margin-bottom: 16px;
}
.side-note p { font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0; }
.side-note strong { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.side-note a { color: var(--green2); text-decoration: underline; }
.widget { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 14px; }
.whead { background: var(--green); padding: 9px 14px; font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.wbody { padding: 10px 14px; }
.qlinks { list-style: none; }
.qlinks li { margin-bottom: 1px; }
.qlinks li a { display: flex; align-items: center; gap: 7px; padding: 7px 8px; font-size: 13px; color: var(--muted); border-radius: 4px; transition: all .2s; }
.qlinks li a i { font-size: 8px; color: var(--gold); }
.qlinks li a:hover { background: var(--surface); color: var(--green); }
.ally { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; padding: 2px 0; }
.ally img { height: 26px; width: auto; filter: grayscale(15%); opacity: .85; transition: all .2s; }
.ally img:hover { filter: grayscale(0%); opacity: 1; }

/* ── HOMEPAGE ─────────────────────────────────────────── */
.hero {
  background: #111111; padding: 68px 0 56px; position: relative; overflow: hidden;
}
.hero::after {
  content: '1912–2017';
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  font-size: clamp(80px, 13vw, 160px); font-weight: 700; color: rgba(255,255,255,.06);
  line-height: 1; pointer-events: none; letter-spacing: -.02em;
}
.hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.hero-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #FFB300; margin-bottom: 14px; display: flex; align-items: center; gap: 9px;
}
.hero-tag::before { content: ''; width: 24px; height: 1px; background: #FFB300; }
.hero h1 {
  font-size: clamp(28px, 5vw, 58px); font-weight: 800; color: var(--white);
  line-height: 1.08; letter-spacing: -.02em; margin-bottom: 18px; max-width: 680px;
}
.hero h1 em { color: #FFB300; font-style: normal; }
.hero p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 460px; line-height: 1.7; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.h-btn-p {
  display: inline-flex; align-items: center; gap: 7px;
  background: #FFB300; color: var(--green); font-size: 13px; font-weight: 700;
  letter-spacing: .04em; padding: 11px 22px; border-radius: 5px; transition: background .2s;
}
.h-btn-p:hover { background: #FFF3CD; }
.h-btn-s {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85);
  font-size: 13px; font-weight: 600; letter-spacing: .04em; padding: 11px 22px;
  border-radius: 5px; transition: all .2s;
}
.h-btn-s:hover { border-color: rgba(255,255,255,.7); color: var(--white); }
.stats-row { display: flex; gap: 36px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); flex-wrap: wrap; }
.stat strong { display: block; font-size: 30px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat span { font-size: 11.5px; color: rgba(255,255,255,.55); font-weight: 500; letter-spacing: .04em; }

/* Home body */
.home-body { max-width: 1240px; margin: 0 auto; padding: 40px 20px 68px; display: flex; flex-direction: row; gap: 40px; align-items: flex-start; }
.hb-main { flex: 1 1 0%; min-width: 0; }
.hb-side { flex: 0 0 280px; width: 280px; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 10px; border-bottom: 2px solid var(--green); margin-bottom: 18px; }
.sec-head h2 { font-size: 17px; font-weight: 700; color: var(--text); }
.sec-head a { font-size: 12px; color: var(--green2); text-decoration: underline; transition: color .2s; }
.sec-head a:hover { color: var(--gold); }
.press-list { list-style: none; }
.press-item { padding: 12px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 72px 1fr; gap: 12px; }
.press-item:last-child { border-bottom: none; }
.press-tag { font-size: 10px; font-weight: 700; color: var(--green); background: #E8F5E9; border: 1px solid #A5D6A7; padding: 2px 6px; border-radius: 3px; white-space: nowrap; display: inline-block; margin-top: 2px; text-align: center; }
.press-title a { font-size: 14px; color: var(--text); line-height: 1.5; transition: color .2s; }
.press-title a:hover { color: var(--green); }
.press-type { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.theme-list { list-style: none; }
.theme-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 5px; transition: background .2s; }
.theme-item:hover { background: var(--surface); }
.theme-item a { font-size: 14px; color: var(--text); font-weight: 500; transition: color .2s; flex: 1; }
.theme-item a:hover { color: var(--green); }
.theme-count { font-size: 11px; color: var(--muted); background: var(--surface); border: 1px solid var(--border); padding: 1px 8px; border-radius: 10px; }

/* Home sidebar */
.hs-disc { background: var(--gold-bg); border: 1px solid #FFD54F; border-radius: 6px; padding: 13px 14px; margin-bottom: 14px; }
.hs-disc p { font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0; }
.hs-disc strong { display: block; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.hs-disc a { color: var(--green2); }
.side-w { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 14px; }
.sw-h { background: var(--green); padding: 9px 14px; font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.sw-b { padding: 10px 14px; }
.side-ql { list-style: none; }
.side-ql li { margin-bottom: 1px; }
.side-ql li a { display: flex; align-items: center; gap: 7px; padding: 7px 8px; font-size: 13px; color: var(--muted); border-radius: 4px; transition: all .2s; }
.side-ql li a i { font-size: 8px; color: var(--gold); }
.side-ql li a:hover { background: var(--surface); color: var(--green); }
.side-ally { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.side-ally img { height: 26px; width: auto; filter: grayscale(15%); opacity: .85; transition: all .2s; }
.side-ally img:hover { filter: grayscale(0%); opacity: 1; }
.vid-box { position: relative; aspect-ratio: 16/9; border-radius: 5px; overflow: hidden; margin-bottom: 8px; }
.vid-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer { background: #1A1A1A; color: rgba(255,255,255,.5); margin-top: 20px; }
.ft-top { background: var(--green); padding: 10px 0; text-align: center; font-size: 12px; color: rgba(255,255,255,.8); }
.ft-top strong { color: #FFB300; }
.ft-top a { color: rgba(255,255,255,.8); text-decoration: underline; }
.ft-grid { max-width: 1240px; margin: 0 auto; padding: 40px 20px 28px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 32px; }
.ft-brand img { height: 48px; filter: none; margin-bottom: 12px; }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 14px; }
.ft-social { display: flex; gap: 7px; }
.ft-social a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,.4); transition: all .2s; }
.ft-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.ft-col h6 { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #FFB300; margin-bottom: 12px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 7px; }
.ft-col li a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; }
.ft-col li a:hover { color: rgba(255,255,255,.8); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.08); max-width: 1240px; margin: 0 auto; padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: rgba(255,255,255,.22); flex-wrap: wrap; gap: 6px; }
.ft-bottom a { color: rgba(255,255,255,.22); transition: color .2s; }
.ft-bottom a:hover { color: rgba(255,255,255,.6); }


/* ══════════════════════════════════════════════════════════
   COMPATIBILITY ALIASES
   Old class names from earlier page versions → current styles
   ══════════════════════════════════════════════════════════ */

/* Notice / disclaimer */
.disclaimer-bar { background: var(--green); color: rgba(255,255,255,.9); font-size: 12.5px; padding: 9px 0; }
.d-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.d-text { display: flex; align-items: center; gap: 8px; }
.d-icon { color: #FFB300; }
.d-text a { color: #FFB300; text-decoration: underline; }
.d-close { background: none; border: none; color: rgba(255,255,255,.5); font-size: 18px; cursor: pointer; }

/* Nav compat */
.mega { display: grid; grid-template-columns: repeat(3,1fr) 140px; min-width: 560px; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--gold); border-radius: 0 0 6px 6px; box-shadow: 0 8px 28px rgba(0,0,0,.12); opacity: 0; visibility: hidden; transform: translateY(4px); transition: all .2s; z-index: 800; }
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col { padding: 16px 14px; border-right: 1px solid var(--border); }
.mega-col:last-child { border-right: none; padding: 0; overflow: hidden; }
.mega-col:last-child img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.mega-col h5, .mega-col h6 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.mega-col ul { list-style: none; }
.mega-col ul li a { font-size: 12.5px; color: var(--muted); display: block; padding: 2px 0; transition: all .2s; }
.mega-col ul li a:hover { color: var(--green); padding-left: 4px; }

.nav-drop { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 200px; border: 1px solid var(--border); border-top: 2px solid var(--gold); border-radius: 0 0 6px 6px; box-shadow: 0 8px 28px rgba(0,0,0,.12); opacity: 0; visibility: hidden; transform: translateY(4px); transition: all .2s; z-index: 800; }
.nav-item:hover .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a { display: block; padding: 10px 16px; font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--border); transition: all .2s; }
.nav-drop a:last-child { border-bottom: none; }
.nav-drop a:hover { color: var(--green); background: var(--surface); padding-left: 20px; }

.mob-section { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 16px 0 4px; }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 1000; background: var(--green); overflow-y: auto; padding: 16px 20px; }
.mobile-menu.open { display: block; }
.mobile-menu-close { display: block; margin-left: auto; background: none; border: none; color: rgba(255,255,255,.7); font-size: 26px; cursor: pointer; margin-bottom: 14px; }
.mobile-menu a { display: block; font-size: 15px; color: rgba(255,255,255,.9); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); transition: color .2s; }
.mobile-menu a:hover { color: #FFB300; }

/* Page hero compat */
.page-hero { background: #111111; padding: 44px 0 36px; position: relative; overflow: hidden; border-bottom: 2px solid var(--gold); }
.page-hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.hero-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #FFB300; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: #FFB300; }
.page-hero h1 { font-size: clamp(22px,3.5vw,36px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.breadcrumb .sep { font-size: 9px; opacity: .4; }
.breadcrumb .current { color: var(--text); }
.page-wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* Layout compat */
.page-layout, .content-grid, .two-col, .inner-layout { display: flex; flex-direction: row; gap: 36px; padding: 32px 0 60px; align-items: flex-start; }
.page-main, .content-main, .col-main, .inner-main { flex: 1 1 0%; min-width: 0; }
.content-sidebar, .col-aside, .inner-sidebar { width: 260px; flex: 0 0 260px; }
.page-outer { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* Archive notice compat */
.archive-notice, .disclaimer-banner, .doc-banner { display: flex; align-items: flex-start; gap: 9px; background: var(--gold-bg); border: 1px solid #FFD54F; border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; padding: 10px 13px; margin-bottom: 24px; font-size: 12.5px; color: var(--muted); }
.archive-notice i, .disclaimer-banner i, .doc-banner i { color: var(--gold); flex-shrink: 0; }
.archive-notice a, .disclaimer-banner a { color: var(--green2); text-decoration: underline; }

/* Doc meta compat */
.doc-meta-block { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 12px 16px; margin-bottom: 22px; }
.dmb-row, .doc-meta-row { display: grid; grid-template-columns: 86px 1fr; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--border); }
.dmb-row:last-child, .doc-meta-row:last-child { border-bottom: none; }
.dmb-label, .doc-meta-label { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.dmb-value, .doc-meta-val { font-size: 13px; color: var(--text); }

/* Sidebar compat */
.widget-disclaimer, .w-disc { background: var(--gold-bg); border: 1px solid #FFD54F; border-radius: 6px; padding: 13px 14px; margin-bottom: 16px; }
.widget-disclaimer p, .w-disc p { font-size: 12px; color: var(--muted); line-height: 1.6; margin: 0; }
.widget-disclaimer strong, .w-disc strong { display: block; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.widget-disclaimer a, .w-disc a { color: var(--green2); text-decoration: underline; }
.widget-head, .widget-hd { background: var(--green); padding: 9px 14px; font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.widget-body, .widget-bd { padding: 10px 14px; }
.widget-links, .ql-list { list-style: none; }
.widget-links li a, .ql-list li a { display: flex; align-items: center; gap: 7px; padding: 7px 8px; font-size: 13px; color: var(--muted); border-radius: 4px; transition: all .2s; }
.widget-links li a i, .ql-list li a i { font-size: 8px; color: var(--gold); }
.widget-links li a:hover, .ql-list li a:hover { background: var(--surface); color: var(--green); }
.widget-logos, .ally-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.widget-logos img, .ally-logos img { height: 26px; width: auto; filter: grayscale(15%); opacity: .85; transition: all .2s; }
.widget-logos img:hover, .ally-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* Footer compat */
.footer-disc { background: var(--green); padding: 10px 0; text-align: center; font-size: 12px; color: rgba(255,255,255,.8); }
.footer-disc strong { color: #FFB300; }
.footer-disc a { color: rgba(255,255,255,.8); text-decoration: underline; }
.footer-grid { max-width: 1240px; margin: 0 auto; padding: 40px 20px 28px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand img { height: 48px; margin-bottom: 12px; filter: none; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 14px; }
.footer-social { display: flex; gap: 7px; }
.footer-social a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,.4); transition: all .2s; }
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-col h5, .footer-col h6 { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #FFB300; margin-bottom: 12px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-col li a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); max-width: 1240px; margin: 0 auto; padding: 12px 20px; display: flex; justify-content: space-between; font-size: 11.5px; color: rgba(255,255,255,.22); flex-wrap: wrap; gap: 6px; }
.footer-bottom a { color: rgba(255,255,255,.22); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* Doc list compat */
.doc-list { }
.doc-row { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.doc-row:first-child { border-top: 1px solid var(--border); }
.doc-row > div { flex: 1; min-width: 0; }
.doc-date-tag { font-size: 11px; font-weight: 600; color: var(--green); background: #E8F5E9; border: 1px solid #A5D6A7; padding: 2px 8px; border-radius: 3px; white-space: nowrap; flex-shrink: 0; margin-top: 2px; min-width: 96px; text-align: center; }
.doc-title-link { font-size: 14px; color: var(--text); line-height: 1.5; transition: color .2s; display: block; }
.doc-title-link:hover { color: var(--green); }
.doc-sub { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.doc-count, .dlist-count { font-size: 12px; color: var(--muted); margin-bottom: 16px; display: block; }

/* Filter compat */
.filter-bar, .filter-box { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 14px 16px; margin-bottom: 20px; }
.filter-bar-top, .fbox-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.filter-title, .fbox-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.filter-count, .fbox-count { font-size: 12px; color: var(--muted); }
.filter-count strong, .fbox-count strong { color: var(--green2); font-weight: 600; }
.filter-search, .fsearch { display: flex; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.filter-search input, .fsearch input { background: transparent; border: none; outline: none; padding: 6px 10px; font-size: 13px; color: var(--text); width: 150px; }
.filter-search i, .fsearch i { padding-right: 9px; color: var(--light); font-size: 12px; }
.year-pills, .fpills { display: flex; flex-wrap: wrap; gap: 5px; }
.year-pill, .fpill, .pill { font-size: 12px; font-weight: 500; padding: 4px 11px; border-radius: 20px; border: 1.5px solid var(--border); background: var(--white); color: var(--muted); cursor: pointer; transition: all .2s; }
.year-pill:hover, .fpill:hover { border-color: var(--green); color: var(--green); }
.year-pill.active, .fpill.fp-on, .pill.fp-on { background: var(--green); border-color: var(--green); color: var(--white); }
.year-pill.all-pill, .fpill.fp-all { background: var(--green); border-color: var(--green); color: var(--white); font-weight: 600; }
.pill-count, .fn { font-size: 10px; margin-left: 3px; opacity: .7; }
.decade-group-label, .decade-div, .decade-divider { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 16px 0 5px; display: flex; align-items: center; gap: 8px; }
.decade-group-label::after, .decade-div::after, .decade-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.filter-empty, .fempty { text-align: center; padding: 32px 16px; display: none; }
.filter-empty i, .fempty i { font-size: 22px; color: var(--border); margin-bottom: 8px; display: block; }
.filter-empty h3, .fempty h3 { font-size: 16px; font-weight: 600; color: var(--muted); margin-bottom: 5px; }

/* Misc compat */
.sep { font-size: 9px; opacity: .4; }
.video-wrap, .vid-wrap { position: relative; aspect-ratio: 16/9; border-radius: 5px; overflow: hidden; margin-bottom: 8px; }
.video-wrap iframe, .vid-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.tag { display: inline-block; font-size: 10px; font-weight: 600; padding: 1px 7px; border-radius: 3px; background: var(--surface); color: var(--muted); border: 1px solid var(--border); }
.tag-2012 { background: #E8F5E9; color: var(--green); border-color: #A5D6A7; }
.tag-2017 { background: #E3F2FD; color: #1565C0; border-color: #90CAF9; }
.gold-rule { height: 3px; background: linear-gradient(to right, var(--green), #FFB300, var(--green)); }
.sample-notice { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 20px; margin: 20px 0; text-align: center; }
.cac-body { display: flex; flex-direction: column; gap: 3px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(190px,1fr)); gap: 10px; margin-top: 18px; }

/* ── CONTACT PAGE ─────────────────────────────────────── */
.contact-address-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 12px; margin: 16px 0 28px; }
.contact-address-card { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; }
.cac-icon { width: 34px; height: 34px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFB300; font-size: 13px; flex-shrink: 0; }
.cac-body { display: flex; flex-direction: column; gap: 3px; }
.cac-body strong { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 3px; }
.cac-body span { font-size: 13px; color: var(--muted); line-height: 1.6; }

.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-top: 3px solid var(--green); border-radius: 0 0 8px 8px; padding: 26px; margin-top: 8px; }
.contact-form-wrap form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: flex; flex-direction: column; gap: 18px; }
.cf-row-2 { flex-direction: row; gap: 18px; }
.cf-row-2 .cf-field { flex: 1; }
.cf-actions { flex-direction: row; gap: 12px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.cf-req { color: var(--gold); }
.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 5px; padding: 10px 13px; width: 100%;
  transition: border-color .2s, box-shadow .2s; outline: none;
  appearance: none; -webkit-appearance: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--green2);
  box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}
.cf-field textarea { resize: vertical; min-height: 150px; line-height: 1.7; }
.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 36px; cursor: pointer;
}
.cf-error { font-size: 12px; color: #C62828; min-height: 15px; display: block; }
.cf-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  font-family: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 12px 28px; border: none; border-radius: 5px;
  cursor: pointer; transition: background .2s;
}
.cf-submit:hover:not(:disabled) { background: var(--green2); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; }
.cf-feedback {
  padding: 13px 16px; border-radius: 5px;
  font-size: 13px; display: flex; align-items: flex-start; gap: 9px;
}
.cf-success { background: rgba(46,125,50,.08); border: 1px solid rgba(46,125,50,.25); color: var(--green); }
.cf-error-box { background: #FDF2F2; border: 1px solid #FFCDD2; color: #C62828; }
.cf-btn-text { }
.cf-btn-spinner { }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .home-body { flex-direction: column; }
  .hb-side { width: 100%; flex: none; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1/-1; }
}

@media (max-width: 480px) {

  /* Padding reduction */
  .page-outer, .hdr, .nav-wrap, .nav-inner,
  .notice-wrap, .home-body, .ft-grid, .ft-bottom,
  .hero-inner, .hh-inner, .pt-inner, .page-hero-inner { 
    padding-left: 14px; padding-right: 14px; 
  }

  /* Rows */
  .press-item, .stmt-item { grid-template-columns: 1fr; gap: 4px; }
  .drow, .doc-row { flex-direction: column; gap: 4px; }
  .drow .dtag, .doc-row .doc-date-tag { min-width: auto; text-align: left; }

  /* Footer */
  .ft-grid, .footer-grid { padding: 28px 14px 20px; gap: 16px; }

  /* Stats */
  .stats-row, .hh-stats { gap: 16px; }
  .stat strong { font-size: 24px; }

  /* Contact form */
  .contact-form-wrap, .cf-wrap { padding: 16px; }

}


/* ── Header compat aliases (desktop) ── */
.header-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  height: 62px; display: flex; align-items: center; gap: 20px;
  flex-direction: row;
}
.header-brand { display: flex; align-items: center; gap: 10px; margin-right: auto; flex-shrink: 0; }
.header-brand img { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-size: 15px; font-weight: 700; color: #C8860A; line-height: 1.2; }
.brand-text span { font-size: 10px; color: var(--muted); letter-spacing: .05em; }
.header-center { flex: 1; max-width: 320px; display: flex; justify-content: center; }
.header-search { 
  display: flex; align-items: center; 
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 6px; overflow: hidden;
}
.header-search input { 
  background: transparent; border: none; outline: none;
  padding: 8px 12px; font-size: 13px; width: 200px; color: var(--text);
}
.header-search button { background: none; border: none; padding: 8px 10px; cursor: pointer; color: var(--muted); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-sm { font-size: 12px; font-weight: 600; padding: 7px 16px; border-radius: 5px; border: 1.5px solid transparent; cursor: pointer; transition: all .2s; }
.btn-ghost { border-color: var(--border); color: var(--muted); background: none; }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-solid { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-solid:hover { background: var(--green2); }

/* Responsive aliases */
@media (max-width: 768px) {

  /* ── Page layout collapses to single column ── */
  .page-cols,
  .page-layout, .content-grid, .two-col, .inner-layout { 
    flex-direction: column; gap: 24px; padding: 24px 0 40px; 
  }
  .page-side,
  .content-sidebar, .col-aside, .inner-sidebar { 
    width: 100%; flex: none; 
  }

  /* ── Header: hide search + brand text, show hamburger ── */
  .main-nav .nav-wrap,
  .main-nav .nav-inner { display: none; }

  .ham { display: block; }

  /* New header classes */
  .logo-text { display: none; }
  .hdr-search { display: none; }
  .hdr { gap: 12px; height: 56px; }

  /* Old header classes (compat) */
  .brand-text { display: none; }
  .header-center { display: none; }
  .header-search { display: none; }
  .header-wrap { 
    height: 56px !important; gap: 12px !important; padding: 0 16px !important;
  }
  .header-brand img { height: 38px; }
  .header-actions { gap: 6px; }
  .header-actions .btn-sm { padding: 6px 12px; font-size: 11px; }

  /* Logo always visible */
  .logo img { height: 38px; }
  .logo { flex-shrink: 0; }

  /* Contact form */
  .cf-row-2 { flex-direction: column; }

  /* Footer */
  .ft-grid, .footer-grid { 
    grid-template-columns: 1fr; gap: 20px; 
  }
  .ft-brand, .footer-brand { grid-column: auto; }

  /* Home */
  .home-body { flex-direction: column; gap: 28px; }
  .hb-side { width: 100%; flex: none; }

  /* Hero */
  .hero { padding: 44px 0 36px; }
  .hero::after { font-size: 80px; right: -10px; }
  .hero h1 { font-size: 28px; }
  .stats-row { gap: 20px; }

  /* Address grid */
  .contact-address-grid, .addr-grid { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { padding: 32px 0 26px; }
  .page-hero h1, .pt-inner h1 { font-size: 24px; }

}
/* Final missing aliases */
.cac-body { display: flex; flex-direction: column; gap: 3px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(190px,1fr)); gap: 10px; margin-top: 18px; }
.db-icon { font-size: 22px; color: var(--gold); margin-bottom: 8px; }
.disclaimer-box { background: var(--gold-bg); border: 2px solid #FFD54F; border-radius: 8px; padding: 22px 26px; margin: 28px 0; }
.field-item { } /* Drupal class from archive — harmless passthrough */
.gold-rule { height: 3px; background: linear-gradient(to right, var(--green), #FFB300, var(--green)); }
.green { color: var(--green); } /* archive content color class */
