:root {
  --ink: #142033;
  --ink-2: #25364f;
  --paper: #fbf8f2;
  --surface: #ffffff;
  --surface-2: #f2eee6;
  --line: #ded6c8;
  --gold: #c7942f;
  --gold-2: #e2b14f;
  --teal: #147985;
  --red: #b73228;
  --orange: #d47a2a;
  --text: #30343b;
  --muted: #68707d;
  --faint: #98a0ab;
  --shadow: 0 18px 48px rgba(20, 32, 51, 0.12);
  --radius: 8px;
  --content: 1180px;
  --font-sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-underline-offset: 0.18em; }
a:hover { color: var(--ink); }
strong { color: var(--ink); }
.flat-icon {
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  color: var(--gold);
  vertical-align: -0.25em;
  flex: 0 0 auto;
}
.issue-icon .flat-icon,
.co-icon .flat-icon,
.adv-icon .flat-icon,
.rl-icon .flat-icon,
.rt-org-icon .flat-icon,
.mc-icon .flat-icon,
.ec-icon .flat-icon,
.aud-icon .flat-icon,
.cat-icon .flat-icon,
.ql-item-icon .flat-icon,
.country-flag .flat-icon,
.region-flag .flat-icon {
  width: 1.45em;
  height: 1.45em;
}
.hero strong,
.page-hero strong,
.page-header strong,
.about-hero strong,
.featured-article strong,
.about-card strong,
.resources-teaser strong,
.global-note strong,
.contact-box strong,
.cta-box strong,
.callout-box strong,
.hearing-card strong,
.key-quote-card strong,
.stat-callout strong,
.stat-grid strong,
.pay-gap-bars strong,
.site-footer strong {
  color: #fff;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--ink);
  border: 2px solid var(--gold);
}
.skip-link:focus { top: 12px; }

.urgent-banner {
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  text-align: center;
}
.urgent-banner a {
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  font-size: 13px;
}
.urgent-banner a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(20, 32, 51, 0.98);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  max-width: 1480px;
  margin: 0 auto;
  min-height: 68px;
  padding: 0 clamp(16px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 180px;
}
.brand img { width: auto; height: 44px; }
.brand-fallback {
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-group {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
}
.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  padding: 0 10px;
  background: transparent;
  color: rgba(255,255,255,0.76);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-trigger:hover,
.nav-group:focus-within .nav-trigger,
.nav-group:hover .nav-trigger {
  color: #fff;
  background: rgba(255,255,255,0.09);
}
.nav-help {
  margin-left: 6px;
  background: var(--red);
  color: #fff;
}
.nav-help:hover { background: #cf4438; color: #fff; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}
.dropdown a span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 450;
}
.dropdown a:hover { background: var(--surface-2); color: var(--ink); }

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 25px;
}
.mobile-toggle .flat-icon {
  width: 22px;
  height: 22px;
  color: currentColor;
}
.mobile-menu {
  display: none;
  background: #101a2a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .mob-help {
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: clamp(430px, 62vw, 660px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,32,51,0.92), rgba(20,32,51,0.68) 48%, rgba(20,32,51,0.28));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  width: 100%;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 88px) clamp(20px, 5vw, 54px);
}
.hero-eyebrow,
.section-label,
.article-tag,
.page-tag,
.issue-tag,
.org-scope,
.pc-region,
.co-icon,
.sc-label,
.qj-label,
.filter-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1,
.page-hero h1,
.page-header h1,
.about-hero h1,
.page-wrap > h1,
.article-wrap article > h1,
h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(31px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.hero h1,
.page-hero h1,
.page-header h1,
.about-hero h1 { color: #fff; }
.hero h1 em,
.page-hero h1 em,
.page-header h1 em,
.article-wrap article > h1 em { color: var(--gold); font-style: italic; }
.hero-desc,
.page-desc,
.page-hero p,
.page-header p,
.about-hero p,
.article-intro {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.76);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}
.article-intro { color: var(--muted); font-size: 19px; }
.hero-byline,
.byline,
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.article-wrap .article-meta,
.page-wrap .article-meta,
main .article-meta {
  color: var(--muted);
}
.article-wrap .article-meta strong,
.page-wrap .article-meta strong,
main .article-meta strong {
  color: var(--ink);
}
.hero-avatar,
.byline-avatar,
.avatar,
.about-card-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 800;
}
.hero-byline-text .name,
.byline-text .name { color: #fff; font-weight: 750; }
.hero-byline-text .role,
.byline-text .meta { color: rgba(255,255,255,0.58); font-size: 12px; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  background: var(--gold);
  border-bottom: 1px solid rgba(20,32,51,0.18);
}
.stats-bar .stat-item {
  min-width: 0;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid rgba(20,32,51,0.16);
}
.stats-bar .stat-item:last-child { border-right: 0; }
.stat-num,
.sc-num,
.sb-num,
.stat-box-num {
  display: block;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1;
}
.stats-bar .stat-num {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
}
.stat-label,
.stat-source,
.stat-box-label,
.stat-box-source,
.sb-label,
.sb-source {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.stats-bar .stat-label {
  color: rgba(20,32,51,0.76);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

main,
.page-wrap,
.article-wrap {
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 54px);
}
.content-grid,
.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.article-wrap { max-width: 1220px; }
.article-wrap article { min-width: 0; }
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 92px;
}

.page-hero,
.page-header,
.about-hero {
  background:
    linear-gradient(120deg, rgba(20,32,51,0.98), rgba(37,54,79,0.92)),
    var(--ink);
  border-bottom: 3px solid var(--gold);
  padding: clamp(46px, 7vw, 88px) clamp(20px, 5vw, 54px);
}
.page-hero > *,
.page-header > *,
.about-hero > * {
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.about-hero .avatar { width: 120px; height: 120px; font-size: 46px; }
.about-hero .role {
  display: block;
  color: rgba(255,255,255,0.66);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 18px;
  color: var(--faint);
  font-size: 13px;
}
.page-hero .breadcrumb,
.page-header .breadcrumb,
.about-hero .breadcrumb { color: rgba(255,255,255,0.52); }
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--gold); }
.hero-notice,
.disclaimer {
  max-width: 780px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(183,50,40,0.18);
}
.hero-notice p { color: rgba(255,255,255,0.78); margin: 6px 0 0; }
.disclaimer {
  max-width: none;
  margin: 0 0 28px;
  border-color: var(--line);
  border-left: 4px solid var(--gold);
  background: var(--surface);
}
.disclaimer h3 { margin-top: 0; }

.section-header { margin-bottom: 22px; }
.ql-header {
  padding: 14px 18px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.ql-header h4 { margin: 0; color: var(--ink); }
.region-title,
.cat-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 800;
}
.section-title,
h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}
h3 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
}
p { margin: 0 0 18px; }
ul, ol { margin: 0 0 22px 24px; padding: 0; }
li { margin-bottom: 8px; }

.featured-article,
.about-card,
.quick-links,
.advertise-box,
.sidebar-card,
.sb-card,
.country-card,
.org-card,
.partner-card,
.milestone-card,
.co-card,
.opt-card,
.aud-card,
.fact-card,
.fact-item,
.evidence-card,
.book-card,
.pillar-card,
.type-item,
.resources-box,
.hearing-card,
.testimony-box,
.testimony-block,
.timeline-card,
.key-quote-card,
.callout-box,
.cta-box,
.contact-box,
.guidelines,
.legal-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(20,32,51,0.04);
}
.featured-article {
  display: block;
  background: var(--ink);
  color: #fff;
  padding: clamp(24px, 4vw, 36px);
  text-decoration: none;
  border: 0;
}
.featured-article:hover { transform: translateY(-2px); color: #fff; box-shadow: var(--shadow); }
.fa-meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 12px; color: rgba(255,255,255,0.55); font-size: 12px; }
.fa-title { color: #fff; margin-bottom: 12px; }
.fa-excerpt,
.fa-opinion { color: rgba(255,255,255,0.74); }
.fa-opinion {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  font-style: italic;
}
.fa-link,
.issue-link,
.ql-item-title,
.opt-cta,
.rt-btn,
.adv-btn,
.contact-box a,
.pc-link,
.org-link,
.cta-link,
.resource-link {
  font-weight: 800;
}
.article-list { display: grid; gap: 0; }
.article-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.article-item:first-child { border-top: 1px solid var(--line); }
.article-item:hover .ai-title { color: var(--teal); }
.ai-num {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: italic;
}
.ai-tag { color: var(--teal); font-size: 11px; text-transform: uppercase; letter-spacing: 0; font-weight: 800; }
.ai-title { margin: 4px 0 4px; font-size: 20px; }
.ai-excerpt { color: var(--muted); margin: 0; }

.issues-section,
.resources-teaser,
.faq-section,
.region-section { margin-top: clamp(42px, 6vw, 72px); }
.issues-grid,
.partner-grid,
.org-grid,
.country-grid,
.milestones-grid,
.evidence-grid,
.contact-options,
.options-grid,
.audience-grid,
.four-pillars,
.types-grid,
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.issue-card,
.partner-card,
.org-card,
.milestone-card,
.co-card,
.opt-card,
.aud-card,
.fact-card,
.fact-item,
.evidence-card,
.pillar-card,
.type-item,
.focus-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 22px;
  color: inherit;
  text-decoration: none;
}
.issue-card:hover,
.partner-card:hover,
.org-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.issue-icon,
.co-icon,
.adv-icon,
.rl-icon,
.rt-org-icon,
.country-flag { font-size: 24px; line-height: 1; }
.issue-title,
.org-name,
.pc-name,
.co-title,
.opt-name,
.aud-title,
.fact-stat,
.fact-num,
.ec-title,
.mc-title,
.tl-title,
.rl-title,
.pillar-name,
.type-item h4,
.milestone-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}
.issue-desc,
.org-desc,
.pc-desc,
.co-desc,
.opt-card p,
.aud-desc,
.fact-desc,
.fact-context,
.ec-desc,
.mc-desc,
.tl-desc,
.hd-val,
.pillar-card p,
.type-item p,
.milestone-desc {
  color: var(--muted);
  margin: 0;
}

.resources-teaser,
.global-note,
.contact-box,
.cta-box,
.callout-box,
.hearing-card,
.key-quote-card,
.stat-callout,
.stat-grid,
.pay-gap-bars {
  background: var(--ink);
  color: #fff;
  border: 0;
}
.global-note,
.contact-box,
.cta-box,
.callout-box,
.hearing-card,
.key-quote-card {
  padding: clamp(24px, 5vw, 40px);
}
.resources-teaser { padding: clamp(28px, 5vw, 52px); border-radius: var(--radius); }
.rt-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr); gap: 32px; align-items: center; }
.rt-title,
.global-note h2,
.contact-box h3,
.cta-box h3,
.callout-box h3,
.key-quote-card h3,
.hearing-card h2 { color: #fff; }
.rt-desc,
.global-note p,
.contact-box p,
.cta-box p,
.callout-box p { color: rgba(255,255,255,0.72); }
.rt-orgs { display: grid; gap: 10px; }
.rt-org {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  text-decoration: none;
}
.rt-org-desc { color: rgba(255,255,255,0.58); font-size: 13px; }
.rt-btn,
.contact-box a {
  display: inline-flex;
  width: fit-content;
  padding: 11px 18px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
}

.about-card,
.advertise-box,
.sidebar-card,
.sb-card,
.quick-links { padding: 22px; }
.about-card {
  background: var(--ink);
  color: #fff;
  border: 0;
}
.about-card h3 { color: #fff; margin-bottom: 0; }
.about-card p { color: rgba(255,255,255,0.72); }
.about-card a { color: var(--gold-2); text-decoration: none; }
.quick-links { padding: 0; overflow: hidden; }
.ql-list { display: grid; }
.ql-item,
.sidebar-link,
.sb-link,
.resource-link,
.cta-link {
  display: block;
  padding: 13px 16px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.ql-item:last-child,
.sidebar-link:last-child,
.sb-link:last-child,
.resource-link:last-child,
.cta-link:last-child { border-bottom: 0; }
.ql-item-sub,
.rl-desc,
.sl-text,
.sb-label { color: var(--muted); font-size: 13px; }
.sidebar-header {
  margin: -22px -22px 16px;
  padding: 13px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}
.sidebar-body { display: grid; }
.ad-unit {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--faint);
  background: rgba(255,255,255,0.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.ad-unit:empty::before { content: "Advertisement"; }
.ad-label { color: var(--faint); text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: 0; margin-bottom: 6px; }

.stat-grid,
.stats-row,
.stat-callout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  margin: 28px 0;
}
.stat-grid .stat-item,
.stats-row .sr-item,
.stat-callout .stat-item,
.stat-box,
.sb-stat {
  text-align: center;
}
.stats-row {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding: 0;
  margin: 0;
  background: var(--gold);
  border-radius: 0;
}
.stats-row .sr-item {
  padding: 18px 14px;
  border-right: 1px solid rgba(20,32,51,0.14);
}
.stats-row .sr-num {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
}
.stats-row .sr-label {
  color: rgba(20,32,51,0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.stat-grid .stat-label,
.stat-callout .stat-label,
.stat-grid .stat-source,
.stat-callout .stat-source,
.stat-box-label,
.stat-box-source {
  color: rgba(255,255,255,0.68);
}
.stat-source,
.stat-box-source,
.sb-source { color: rgba(255,255,255,0.45); font-size: 11px; }
.stat-callout .sc-text { color: rgba(255,255,255,0.78); }

.article-body,
.article-content,
.legal-body {
  color: var(--text);
}
.article-body h2,
.article-content h2,
.legal-body h2 {
  padding-top: 22px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}
.article-body p,
.article-content p,
.legal-body p { font-size: 17px; line-height: 1.82; }
.article-body a,
.article-content a,
.page-wrap a { font-weight: 650; }
.pull-quote,
.testimony-box {
  margin: 30px 0;
  padding: 22px 24px;
  background: #fff8e8;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p,
.tb-quote,
.kq-text {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  line-height: 1.45;
}
.key-quote-card .kq-text { color: #fff; }
.pull-quote cite,
.tb-cite,
.kq-cite { color: var(--muted); font-size: 13px; }
.key-quote-card .kq-cite { color: rgba(255,255,255,0.58); }
.timeline {
  display: grid;
  gap: 16px;
  margin: 24px 0 30px;
}
.timeline-item,
.tl-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.timeline-year,
.tl-year {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 800;
}
.timeline-content,
.tl-body {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.timeline-content h4 { margin: 0 0 6px; color: var(--ink); }
.timeline-content p,
.tl-desc { margin: 0; color: var(--muted); }
.tl-left {
  display: grid;
  grid-template-columns: 1fr 12px;
  gap: 10px;
  align-items: start;
}
.tl-dot {
  width: 12px;
  height: 12px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.tl-tag,
.updated,
.org-focus,
.pc-focus,
.tb-label,
.kq-label,
.hd-label,
.rl-num {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.facts-list {
  display: grid;
  gap: 14px;
}
.section-break {
  margin-top: 22px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
}
.fact-item {
  display: grid;
  grid-template-columns: 54px minmax(0,1fr);
  gap: 16px;
  padding: 18px;
}
.fact-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 20px;
}
.fact-context { font-size: 14px; }
.hearing-detail {
  display: grid;
  gap: 10px;
}
.hd-row {
  display: grid;
  grid-template-columns: 110px minmax(0,1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hd-val { color: #fff; text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 650; }
.testimony-block {
  margin: 30px 0;
  padding: 24px;
}
.evidence-card,
.book-card {
  padding: 22px;
}
.ec-icon,
.mc-icon,
.aud-icon,
.cat-icon { font-size: 26px; }
.key-fact {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.key-fact:last-child { border-bottom: 0; }
.key-fact-num {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 800;
}
.key-fact-label { color: var(--muted); font-size: 13px; }
.sb-card-header {
  margin: -22px -22px 16px;
  padding: 13px 18px;
  background: var(--ink);
}
.sb-card-header h4 { color: #fff; margin: 0; }
.sb-card-body { display: grid; }
.pay-gap-bars {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  margin: 24px 0 30px;
}
.gap-row {
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: center;
}
.gap-label,
.gap-val {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 750;
}
.gap-val { text-align: right; }
.gap-bar-wrap {
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
}
.gap-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.gap-note {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  text-align: center;
}

.country-card { overflow: hidden; padding: 0; }
.country-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
}
.country-name { color: #fff; font-family: var(--font-serif); font-size: 18px; font-weight: 800; }
.number-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.number-row:last-child { border-bottom: 0; }
.number-icon,
.legend-dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.legend .legend-dot { background: var(--ink); }
.legend .legend-item:nth-child(1) .legend-dot { background: var(--red); }
.legend .legend-item:nth-child(2) .legend-dot { background: var(--teal); }
.legend .legend-item:nth-child(3) .legend-dot { background: var(--ink); }
.legend .legend-item:nth-child(4) .legend-dot { background: var(--orange); }
.icon-emergency { background: var(--red); }
.icon-dv { background: var(--teal); }
.icon-sa { background: var(--ink); }
.icon-other { background: var(--orange); }
.number-label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0; font-weight: 800; }
.number-val { color: var(--ink); font-size: 17px; font-weight: 800; }
.number-val a { color: var(--ink); text-decoration: none; }
.number-note { color: var(--muted); font-size: 13px; }
.quick-jump,
.filter-bar {
  position: sticky;
  top: 71px;
  z-index: 300;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  padding: 12px clamp(20px, 5vw, 54px);
  overflow-x: auto;
}
.quick-jump-inner {
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}
.qj-link,
.filter-btn,
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}
.qj-link:hover,
.filter-btn:hover,
.filter-btn.active,
.page-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 24px;
}
.legend-item { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; }

.form-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  margin-top: 28px;
}
.form-group { display: grid; gap: 6px; margin-bottom: 16px; }
label { color: var(--ink); font-weight: 750; }
input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
button,
.submit-btn {
  border: 0;
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
button:hover,
.submit-btn:hover { background: var(--ink-2); }

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.pagination-info { color: var(--muted); }
.pagination-links { display: flex; gap: 8px; }
.page-btn.disabled { opacity: 0.45; pointer-events: none; }

.site-footer {
  margin-top: 64px;
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  border-top: 3px solid var(--gold);
}
.footer-grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 46px clamp(20px, 5vw, 54px);
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(130px, 1fr));
  gap: 30px;
}
.footer-logo {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 800;
}
.footer-logo span { color: var(--gold); }
.footer-col h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 13px;
  margin: 7px 0;
}
.footer-col a:hover { color: var(--gold); }
.footer-help { color: #fff !important; font-weight: 800; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
}
.footer-bottom-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 54px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.42);
  font-size: 12px;
}
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: inherit; text-decoration: none; }

/* Page-specific rebuilt content helpers */
.page-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.intro,
.outro,
.page-hero-sub {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}
.page-hero .page-hero-sub,
.page-header .page-hero-sub { color: rgba(255,255,255,0.76); }
.workplace-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.workplace-stats-grid > div {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.72);
  text-align: center;
}
.workplace-stats-grid > div > div:first-child {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
.stats-panel {
  display: grid;
  gap: 12px;
}
.stats-panel .stat-box {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.faq-section {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 2px solid var(--line);
}
.faq-list { display: grid; }
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.faq-q {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 800;
}
.faq-a { color: var(--text); margin: 8px 0 0; }
.cat-section { margin-bottom: 42px; }
.cat-header,
.region-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.opt-header {
  padding: 20px 22px;
  background: var(--ink);
}
.opt-header .opt-name,
.opt-header .opt-price { color: #fff; }
.opt-body { padding: 22px; }
.opt-price {
  margin-top: 6px;
  color: var(--gold);
  font-weight: 800;
}
.form-note { color: var(--muted); font-size: 13px; margin-top: 14px; }
.about-card-role,
.rt-label,
.updated {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.adv-title { margin: 0 0 8px; }
.adv-text { color: var(--muted); }
.sl-icon { color: var(--gold); margin-right: 6px; }
.breadcrumb-sep { color: inherit; }
.country-body { display: block; }
.number-info { min-width: 0; }
.ql-item-icon { color: var(--gold); margin-right: 8px; }
.fa-tag,
.fa-date { color: rgba(255,255,255,0.66); }
.pay-gap-bars {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  margin: 24px 0 30px;
}
.gap-row {
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: center;
}
.gap-label,
.gap-val {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 750;
}
.gap-val { text-align: right; }
.gap-bar-wrap {
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
}
.gap-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.gap-note {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .content-grid,
  .article-wrap,
  .rt-inner { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .header-inner { min-height: 62px; }
  .brand img { height: 36px; }
  .hero h1,
  .page-hero h1,
  .page-header h1,
  .about-hero h1,
  .page-wrap > h1,
  .article-wrap article > h1,
  h1 { font-size: clamp(30px, 8vw, 42px); line-height: 1.1; }
  .hero-desc,
  .page-desc,
  .page-hero p,
  .page-header p,
  .about-hero p,
  .article-intro { font-size: 18px; line-height: 1.6; }
  main,
  .page-wrap,
  .article-wrap { padding: 34px 20px; }
  .hero-content,
  .page-hero,
  .page-header,
  .about-hero { padding-left: 20px; padding-right: 20px; }
  .page-header-inner,
  .about-hero-inner,
  .timeline-item,
  .tl-item,
  .hd-row,
  .gap-row { grid-template-columns: 1fr; }
  .timeline-item,
  .tl-item,
  .hd-row,
  .gap-row { gap: 8px; }
  .gap-val { text-align: left; }
  .stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-bar .stat-item { padding: 16px 10px; }
  .stats-bar .stat-num { font-size: clamp(24px, 7.5vw, 30px); }
  .stats-bar .stat-label { font-size: 11px; line-height: 1.25; }
  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .article-item { grid-template-columns: 34px minmax(0,1fr); }
  .fact-item { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
  .mobile-menu { max-height: calc(100dvh - 65px); overflow: auto; }
  .quick-jump,
  .filter-bar { top: 65px; padding-left: 20px; padding-right: 20px; }
}
