/* Vetor — Forest Research Editorial
   Palette: deep forest green / copper / warm off-white / dark green-gray */

:root {
  --forest: #1f3a2e;
  --forest-deep: #16281f;
  --copper: #b06a2c;
  --copper-soft: #c4894d;
  --off-white: #f3f1ea;
  --paper: #faf8f2;
  --green-gray: #1a2620;
  --ink: #243029;
  --ink-soft: #4a5851;
  --rule: #d9d3c4;
  --rule-soft: #e7e1d3;
  --serif: "Georgia", "Iowan Old Style", "Charter", "Source Serif Pro", serif;
  --sans: "Helvetica Neue", "Arial", system-ui, sans-serif;
  --mono: "SF Mono", "Menlo", "Consolas", monospace;
}

[data-theme="dark"] {
  --forest: #2c4a3b;
  --forest-deep: #0f1a14;
  --copper: #c4894d;
  --copper-soft: #d29a5f;
  --off-white: #1a2620;
  --paper: #141d17;
  --green-gray: #0d1410;
  --ink: #e8e4d6;
  --ink-soft: #b3b0a4;
  --rule: #2d3a32;
  --rule-soft: #232f27;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

a { color: var(--copper); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.1);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--forest);
  line-height: 1;
}

.brand-mark .dot { color: var(--copper); }

.brand-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: none;
}
@media (min-width: 640px) { .brand-tag { display: inline; } }

.nav-primary {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-primary a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.nav-primary a:hover { color: var(--copper); text-decoration: none; }

.utility {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  background: none;
  border: 1px solid var(--rule);
  color: var(--ink);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: border-color .15s, color .15s;
}
.icon-btn:hover { border-color: var(--copper); color: var(--copper); }

.menu-toggle { display: none; }

/* ---------- Category bar ---------- */
.catbar {
  border-bottom: 1px solid var(--rule);
  background: var(--off-white);
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.catbar .wrap {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.catbar a { color: var(--ink-soft); white-space: nowrap; }
.catbar a.active { color: var(--copper); font-weight: 600; }

/* ---------- Lead / Hero ---------- */
.lead {
  padding: 52px 0 40px;
  border-bottom: 1px solid var(--rule);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
}

@media (max-width: 880px) {
  .lead-grid { grid-template-columns: 1fr; gap: 28px; }
}

.lead-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  font-weight: 600;
}

.lead h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
  color: var(--forest);
}

.lead .dek {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 22px;
}

.byline {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
}
.byline strong { color: var(--ink); font-weight: 600; }

.lead-art {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.lead-art img, .lead-art svg { display: block; width: 100%; height: auto; }

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 56px 0 26px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--forest);
}
.section-head h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
  letter-spacing: -0.2px;
}
.section-head a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--copper);
}

/* ---------- Columns / cards ---------- */
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 880px) { .cols-3 { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 880px) { .cols-2 { grid-template-columns: 1fr; gap: 28px; } }

.card {
  display: flex;
  flex-direction: column;
}
.card .thumb {
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--paper);
}
.card .thumb img, .card .thumb svg { width: 100%; display: block; }
.card .cat {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 8px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.22;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--copper); text-decoration: none; }
.card p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  line-height: 1.5;
}
.card .meta {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: auto;
}

/* ---------- Featured (analysis) ---------- */
.featured {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 44px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px;
}
@media (max-width: 880px) {
  .featured { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
}
.featured .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 12px;
}
.featured h2 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.18;
  margin: 0 0 16px;
  color: var(--forest);
  font-weight: 700;
}
.featured p { color: var(--ink-soft); font-size: 17px; }

/* ---------- Article layout ---------- */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 0 32px;
}

.article-head {
  max-width: 680px;
  margin: 40px auto 0;
}
.article-head .cat {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}
.article-head h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: var(--forest);
  margin: 12px 0 16px;
  font-weight: 700;
}
.article-head .dek {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 22px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-soft);
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--rule);
  flex-shrink: 0;
}
.avatar img, .avatar svg { width: 100%; height: 100%; display: block; }
.article-meta strong { color: var(--ink); font-weight: 600; }

.article-body p { margin: 0 0 22px; font-size: 18.5px; line-height: 1.7; }
.article-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--forest);
  margin: 36px 0 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--forest);
  margin: 28px 0 10px;
}
.article-body blockquote {
  margin: 28px 0;
  padding: 8px 0 8px 24px;
  border-left: 3px solid var(--copper);
  font-style: italic;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }

.article-body .pull-num {
  font-family: var(--serif);
  background: var(--paper);
  border-top: 2px solid var(--copper);
  border-bottom: 1px solid var(--rule);
  padding: 22px 26px;
  margin: 32px 0;
}
.pull-num .fig {
  font-size: 38px;
  font-weight: 700;
  color: var(--forest);
  display: block;
  line-height: 1.1;
}
.pull-num .cap {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  display: block;
}

.disclaimer {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--forest);
  padding: 20px 24px;
  border-radius: 3px;
  margin: 40px 0 8px;
  font-size: 15px;
  color: var(--ink-soft);
}
.disclaimer strong { color: var(--forest); font-family: var(--sans); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 6px; }

.tags {
  margin: 28px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
}
.tags a {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 20px;
  margin: 0 6px 6px 0;
  color: var(--ink-soft);
}
.tags a:hover { border-color: var(--copper); color: var(--copper); text-decoration: none; }

/* ---------- Related ---------- */
.related {
  max-width: 680px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 2px solid var(--forest);
}
.related h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 18px;
  font-weight: 600;
}
.related .rel-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.related .rel-item:last-child { border-bottom: none; }
.related .rel-item a { color: var(--ink); font-weight: 600; font-size: 18px; }
.related .rel-item a:hover { color: var(--copper); text-decoration: none; }
.related .rel-item .m { font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Static page body ---------- */
.page-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 0;
}
.page-body h1 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--forest);
  margin: 0 0 8px;
  letter-spacing: -0.4px;
  font-weight: 700;
}
.page-body .page-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
  font-weight: 600;
}
.page-body p, .page-body li { font-size: 18px; line-height: 1.7; }
.page-body h2 {
  font-family: var(--serif);
  color: var(--forest);
  font-size: 24px;
  margin: 34px 0 12px;
  font-weight: 700;
}
.page-body ul { padding-left: 22px; }
.page-body li { margin-bottom: 8px; }

/* ---------- Articles listing ---------- */
.listing-filter {
  font-family: var(--sans);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 36px;
}
.listing-filter button {
  background: none;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.listing-filter button:hover { border-color: var(--copper); color: var(--copper); }
.listing-filter button.active { background: var(--forest); color: var(--off-white); border-color: var(--forest); }

.list-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.list-row .thumb {
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  background: var(--paper);
}
.list-row .thumb img, .list-row .thumb svg { width: 100%; display: block; }
.list-row .cat {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}
.list-row h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 6px 0 8px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.list-row h3 a { color: var(--ink); }
.list-row h3 a:hover { color: var(--copper); text-decoration: none; }
.list-row p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 8px; }
.list-row .date {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  white-space: nowrap;
}
@media (max-width: 680px) {
  .list-row { grid-template-columns: 90px 1fr; }
  .list-row .date { grid-column: 2; }
  .list-row h3 { font-size: 18px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-gray);
  color: #c9c4b4;
  padding: 56px 0 28px;
  margin-top: 72px;
}
.site-footer a { color: #c9c4b4; }
.site-footer a:hover { color: var(--copper-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .brand-mark { color: var(--off-white); }
.footer-brand p { font-size: 14.5px; line-height: 1.6; margin: 14px 0 0; color: #a8a394; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; font-family: var(--sans); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid #2d3a32;
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: #8a8576;
}

/* ---------- Cookie notice ---------- */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--forest-deep);
  color: var(--off-white);
  padding: 16px 28px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 100;
  font-family: var(--sans);
  font-size: 13.5px;
  flex-wrap: wrap;
}
.cookie-notice.show { display: flex; }
.cookie-notice p { margin: 0; max-width: 720px; line-height: 1.5; }
.cookie-notice a { color: var(--copper-soft); }
.cookie-notice .ck-actions { display: flex; gap: 10px; }
.cookie-notice button {
  background: var(--copper);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
}
.cookie-notice button.ghost {
  background: transparent;
  border: 1px solid #4a5851;
  color: var(--off-white);
}

/* ---------- Mobile nav ---------- */
@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .nav-primary {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 28px;
    gap: 18px;
    box-shadow: -4px 0 24px rgba(0,0,0,.08);
    transition: right .25s ease;
    z-index: 60;
  }
  .nav-primary.open { right: 0; }
  .nav-primary a { font-size: 16px; }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15,26,20,.4);
    z-index: 55;
  }
  .nav-overlay.show { display: block; }
}

/* ---------- Misc ---------- */
.divider-rule {
  height: 1px;
  background: var(--rule);
  margin: 56px 0;
}

.editor-note {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px 32px;
  margin: 8px 0 0;
}
.editor-note .lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 10px;
}
.editor-note p { font-size: 17px; line-height: 1.6; margin: 0 0 12px; }
.editor-note p:last-child { margin-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.email-block {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 24px 28px;
}
.email-block .lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 8px;
}
.email-block a { font-size: 20px; color: var(--forest); font-weight: 600; word-break: break-all; }

.updated-line {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 18px;
  font-style: italic;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Brand logo (campaign) ---------- */
.brand-logo {
  height: 32px;
  width: auto;
  max-height: 36px;
  display: none;
}
.brand-logo[src]:not([src=""]) { display: block; }
@media (min-width: 640px) { .brand-logo { max-height: 42px; height: 36px; } }

/* ---------- Homepage: featured + sector sidebar ---------- */
.home-shell {
  padding: 44px 0 48px;
  border-bottom: 1px solid var(--rule);
}
.home-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 920px) {
  .home-grid { grid-template-columns: 1fr; gap: 36px; }
}
.featured-story .story-cat {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 12px;
}
.featured-story h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.4px;
  color: var(--forest);
  margin: 0 0 16px;
  font-weight: 700;
}
.featured-story h1 a { color: inherit; text-decoration: none; }
.featured-story h1 a:hover { color: var(--copper); }
.featured-story .dek {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 20px;
}
.featured-story .story-art {
  margin: 28px 0 0;
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  background: var(--paper);
}
.featured-story .story-art img { width: 100%; display: block; }

.sector-sidebar {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 24px 22px;
  position: sticky;
  top: 88px;
}
.sector-sidebar .sb-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.sector-list { list-style: none; padding: 0; margin: 0; }
.sector-list li { margin-bottom: 4px; }
.sector-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 3px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .12s;
}
.sector-list a:hover {
  background: var(--off-white);
  color: var(--copper);
  text-decoration: none;
}
.sector-list .sb-thumb {
  width: 44px;
  height: 32px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--off-white);
}
.sector-list .sb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sector-sidebar .sb-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Campaign featured block ---------- */
.campaign-spot {
  margin: 0 0 40px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
}
.campaign-spot .cmp-creative img {
  width: 100%;
  display: block;
  max-height: 380px;
  object-fit: cover;
}
.campaign-spot .cmp-body { padding: 22px 28px 26px; }
.campaign-spot .cmp-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.campaign-spot .cmp-row img[data-cmp-logo] {
  height: 34px;
  width: auto;
  max-height: 36px;
}
.campaign-spot h2 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--forest);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
.campaign-spot p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.55;
}
.campaign-spot .cmp-cta {
  display: inline-block;
  background: var(--forest);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: .3px;
}
.campaign-spot .cmp-cta:hover {
  background: var(--copper);
  color: #fff;
  text-decoration: none;
}

/* ---------- Data table (articles) ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: var(--sans);
  font-size: 14px;
}
.data-table th, .data-table td {
  border: 1px solid var(--rule);
  padding: 10px 12px;
  text-align: left;
}
.data-table th {
  background: var(--paper);
  font-weight: 600;
  color: var(--forest);
}
.data-table caption {
  caption-side: top;
  text-align: left;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-style: italic;
}
.note-source {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  font-style: italic;
}
