/*
Theme Name: AI Governance Ratings Institute
Theme URI: https://aigovernanceratings.com/
Author: AIGX / AI Governance Ratings
Description: Institutional research and category-authority WordPress theme for AI Governance Ratings. White-first, editorial, responsive, accessible, and optimized for research publishing.
Version: 1.4.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: agr-institute
*/

:root {
  --agr-bg: #ffffff;
  --agr-ink: #111318;
  --agr-muted: #60656f;
  --agr-soft: #f5f6f7;
  --agr-soft-2: #fafafa;
  --agr-border: #dfe2e7;
  --agr-accent: #1f4ed8;
  --agr-accent-2: #193a83;
  --agr-success: #0b6b47;
  --agr-warning: #8b5a00;
  --agr-max: 1280px;
  --agr-reading: 780px;
  --agr-radius: 18px;
  --agr-shadow: 0 18px 60px rgba(17, 19, 24, .07);
  --agr-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --agr-serif: Iowan Old Style, Baskerville, "Times New Roman", Times, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--agr-bg);
  color: var(--agr-ink);
  font-family: var(--agr-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--agr-accent); }
button, input, select, textarea { font: inherit; }
::selection { background: #dfe7ff; }

.agr-container { width: min(calc(100% - 48px), var(--agr-max)); margin-inline: auto; }
.agr-reading { width: min(100%, var(--agr-reading)); }
.agr-kicker {
  margin: 0 0 14px;
  color: var(--agr-accent-2);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.agr-display {
  margin: 0;
  max-width: 980px;
  font-family: var(--agr-serif);
  font-size: clamp(48px, 6.4vw, 86px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
.agr-h1 {
  margin: 0;
  max-width: 940px;
  font-family: var(--agr-serif);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}
.agr-h2 {
  margin: 0 0 18px;
  max-width: 900px;
  font-family: var(--agr-serif);
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -.032em;
}
.agr-h3, .agr-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.015em;
}
.agr-lead { margin: 24px 0 0; max-width: 820px; color: #333740; font-size: clamp(20px, 2vw, 26px); line-height: 1.45; }
.agr-muted { color: var(--agr-muted); }
.agr-rule { border: 0; border-top: 1px solid var(--agr-border); margin: 0; }

/* Header */
.agr-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,226,231,.9);
  backdrop-filter: blur(16px);
}
.admin-bar .agr-site-header { top: 32px; }
.agr-header-inner { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.agr-brand { display: inline-flex; align-items: center; text-decoration: none; white-space: nowrap; min-width: 0; }
.agr-brand-logo { display: block; width: clamp(205px, 18vw, 264px); height: auto; object-fit: contain; object-position: left center; }
.agr-primary-nav { justify-self: center; }
.agr-primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 26px; }
.agr-primary-nav a { color: #2a2e36; font-size: 14px; font-weight: 560; text-decoration: none; }
.agr-primary-nav li { position: relative; }
.agr-primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  min-width: 240px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--agr-border);
  border-radius: 12px;
  box-shadow: var(--agr-shadow);
}
.agr-primary-nav li:hover > .sub-menu, .agr-primary-nav li:focus-within > .sub-menu { display: grid; gap: 2px; }
.agr-primary-nav .sub-menu a { display: block; padding: 10px 12px; border-radius: 8px; }
.agr-primary-nav .sub-menu a:hover { background: var(--agr-soft); }
.agr-header-actions { display: flex; align-items: center; gap: 10px; }
.agr-link-quiet { font-size: 13px; text-decoration: none; }
.agr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--agr-ink);
  border-radius: 999px;
  background: var(--agr-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.agr-btn:hover { color: #fff; background: #252932; transform: translateY(-1px); }
.agr-btn--light { background: #fff; color: var(--agr-ink); }
.agr-btn--light:hover { background: var(--agr-soft); color: var(--agr-ink); }
.agr-menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--agr-border); border-radius: 50%; background: #fff; }
.agr-menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--agr-ink); }

/* Hero */
.agr-hero { padding: clamp(72px, 9vw, 130px) 0 72px; overflow: hidden; }
.agr-hero-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .7fr); gap: clamp(40px, 6vw, 90px); align-items: end; }
.agr-hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.agr-definition-panel {
  position: relative;
  padding: 26px;
  border: 1px solid var(--agr-border);
  border-radius: var(--agr-radius);
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}
.agr-definition-panel:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed #d8dce3;
  border-radius: 12px;
  pointer-events: none;
}
.agr-definition-panel > * { position: relative; z-index: 1; }
.agr-signal { margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--agr-border); border-radius: 12px; overflow: hidden; }
.agr-signal div { padding: 14px 12px; border-right: 1px solid var(--agr-border); background: #fff; }
.agr-signal div:last-child { border-right: 0; }
.agr-signal strong { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.agr-signal span { display: block; margin-top: 5px; color: var(--agr-muted); font-size: 12px; }

/* Sections */
.agr-section { padding: clamp(72px, 8vw, 120px) 0; border-top: 1px solid var(--agr-border); }
.agr-section--soft { background: var(--agr-soft-2); }
.agr-section-head { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: 60px; margin-bottom: 46px; }
.agr-section-head p { margin: 0; max-width: 720px; color: var(--agr-muted); font-size: 18px; }
.agr-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.agr-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.agr-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.agr-card { padding: 28px; border: 1px solid var(--agr-border); border-radius: var(--agr-radius); background: #fff; }
.agr-card--flat { border-radius: 0; border-left: 0; border-right: 0; border-bottom: 0; padding-inline: 0; }
.agr-card p { margin: 0; color: var(--agr-muted); }
.agr-card .agr-card-link { display: inline-block; margin-top: 20px; font-size: 14px; font-weight: 650; text-decoration: none; }
.agr-number { margin-bottom: 36px; color: var(--agr-muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; }

.agr-domain-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--agr-border); border-left: 1px solid var(--agr-border); }
.agr-domain { min-height: 240px; padding: 24px; border-right: 1px solid var(--agr-border); border-bottom: 1px solid var(--agr-border); background: #fff; }
.agr-domain strong { display: block; margin-bottom: 44px; color: var(--agr-accent); font-size: 12px; letter-spacing: .08em; }
.agr-domain h3 { margin: 0 0 12px; font-size: 18px; }
.agr-domain p { margin: 0; color: var(--agr-muted); font-size: 14px; }

.agr-method-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--agr-ink); border-bottom: 1px solid var(--agr-ink); }
.agr-method-strip > div { padding: 26px 20px; border-right: 1px solid var(--agr-border); }
.agr-method-strip > div:last-child { border-right: 0; }
.agr-method-strip small { display: block; margin-bottom: 18px; color: var(--agr-muted); text-transform: uppercase; letter-spacing: .1em; }
.agr-method-strip strong { font-size: 16px; }

.agr-quote { max-width: 1000px; margin: 0; font-family: var(--agr-serif); font-size: clamp(30px, 4vw, 54px); line-height: 1.15; letter-spacing: -.025em; }
.agr-quote small { display: block; margin-top: 28px; font-family: var(--agr-sans); font-size: 13px; color: var(--agr-muted); letter-spacing: .03em; }

/* Research */
.agr-research-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.agr-research-card { min-height: 340px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--agr-border); background: #fff; }
.agr-research-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 60px; color: var(--agr-muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.agr-research-card h3 { margin: 0 0 12px; font-family: var(--agr-serif); font-size: 28px; font-weight: 500; line-height: 1.08; }
.agr-research-card p { margin: 0; color: var(--agr-muted); font-size: 14px; }
.agr-research-card a { margin-top: auto; padding-top: 24px; font-size: 13px; font-weight: 700; text-decoration: none; }

/* Page */
.agr-page-hero { padding: 76px 0 54px; border-bottom: 1px solid var(--agr-border); }
.agr-breadcrumbs { margin-bottom: 30px; color: var(--agr-muted); font-size: 12px; }
.agr-breadcrumbs a { text-decoration: none; }
.agr-page-body { padding: 60px 0 100px; }
.agr-content { max-width: 960px; }
.agr-content > *:first-child { margin-top: 0; }
.agr-content h2 { margin: 72px 0 20px; font-family: var(--agr-serif); font-size: clamp(32px, 4vw, 48px); font-weight: 500; line-height: 1.08; letter-spacing: -.025em; }
.agr-content h3 { margin: 40px 0 14px; font-size: 22px; }
.agr-content p, .agr-content li { color: #383c44; }
.agr-content p { margin: 0 0 20px; }
.agr-content ul, .agr-content ol { padding-left: 1.25em; }
.agr-content blockquote { margin: 48px 0; padding: 0 0 0 26px; border-left: 2px solid var(--agr-ink); font-family: var(--agr-serif); font-size: 28px; line-height: 1.3; }
.agr-content table { width: 100%; border-collapse: collapse; margin: 34px 0; font-size: 14px; }
.agr-content th, .agr-content td { padding: 14px 12px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--agr-border); }
.agr-content th { color: var(--agr-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.agr-content .agr-wide { width: min(var(--agr-max), calc(100vw - 48px)); max-width: none; }

.agr-note { padding: 20px 22px; border-left: 3px solid var(--agr-accent); background: #f6f8ff; }
.agr-note strong { display: block; margin-bottom: 6px; }
.agr-meta-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); margin: 34px 0; border-top: 1px solid var(--agr-border); border-bottom: 1px solid var(--agr-border); }
.agr-meta-row > div { padding: 18px 12px; border-right: 1px solid var(--agr-border); }
.agr-meta-row > div:last-child { border-right: 0; }
.agr-meta-row small, .agr-meta-row strong { display: block; }
.agr-meta-row small { color: var(--agr-muted); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; }
.agr-meta-row strong { margin-top: 5px; font-size: 13px; }

.agr-rating-scale { border-top: 1px solid var(--agr-border); }
.agr-rating-row { display: grid; grid-template-columns: 130px 1fr 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--agr-border); }
.agr-rating-row strong:first-child { font-family: var(--agr-serif); font-size: 22px; }
.agr-rating-row span { color: var(--agr-muted); }

/* Footer */
.agr-site-footer { padding: 68px 0 30px; background: #101217; color: #fff; }
.agr-footer-grid { display: grid; grid-template-columns: minmax(280px, 1.45fr) repeat(4, minmax(130px, .62fr)); gap: 36px; }
.agr-footer-brand { max-width: 430px; }
.agr-footer-brand h2 { margin: 0 0 18px; font-family: var(--agr-serif); font-size: 32px; font-weight: 500; }
.agr-footer-brand p { color: #aeb3bd; }
.agr-site-footer h3 { margin: 0 0 16px; color: #8f96a2; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.agr-site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.agr-site-footer a { color: #e8e9ec; font-size: 13px; text-decoration: none; }
.agr-site-footer a:hover { color: #fff; text-decoration: underline; }
.agr-footer-bottom { margin-top: 60px; padding-top: 22px; border-top: 1px solid #2a2d34; display: flex; justify-content: space-between; gap: 24px; color: #8f96a2; font-size: 11px; }

/* Forms */
.agr-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.agr-field { display: grid; gap: 7px; }
.agr-field--full { grid-column: 1 / -1; }
.agr-field label { font-size: 12px; font-weight: 700; }
.agr-field input, .agr-field textarea, .agr-field select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cfd3da; border-radius: 8px; background: #fff; color: var(--agr-ink); }
.agr-field textarea { min-height: 160px; resize: vertical; }
.agr-field input:focus, .agr-field textarea:focus, .agr-field select:focus { outline: 2px solid #d9e2ff; border-color: var(--agr-accent); }

.agr-pill { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border: 1px solid var(--agr-border); border-radius: 999px; color: var(--agr-muted); font-size: 11px; font-weight: 650; letter-spacing: .03em; }
.agr-external { color: var(--agr-accent); font-weight: 650; }
.agr-sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* Publication system */
.agr-publication-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  max-width: 980px;
  margin-top: 40px;
  border-top: 1px solid var(--agr-border);
  border-bottom: 1px solid var(--agr-border);
}
.agr-publication-meta > div { padding: 16px 18px 16px 0; }
.agr-publication-meta small, .agr-publication-meta strong { display: block; }
.agr-publication-meta small { color: var(--agr-muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.agr-publication-meta strong { margin-top: 4px; font-size: 13px; }
.agr-research-disclosure { margin-top: 72px; padding: 24px 0 0; border-top: 1px solid var(--agr-border); color: var(--agr-muted); font-size: 14px; }
.agr-research-disclosure > strong { color: var(--agr-ink); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.agr-research-disclosure p { max-width: 760px; margin: 8px 0 0; }
.agr-inline-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.agr-inline-links a { color: var(--agr-ink); font-weight: 650; text-decoration: none; }
.agr-source-list { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--agr-border); }
.agr-source-list li { padding: 12px 0; border-bottom: 1px solid var(--agr-border); font-size: 14px; }
.agr-source-list a { color: var(--agr-ink); }
.agr-stat-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin: 34px 0; border-top: 1px solid var(--agr-border); border-left: 1px solid var(--agr-border); }
.agr-stat-grid > div { padding: 22px; border-right: 1px solid var(--agr-border); border-bottom: 1px solid var(--agr-border); }
.agr-stat-grid strong { display: block; font-family: var(--agr-serif); font-size: 34px; font-weight: 500; }
.agr-stat-grid span { display: block; margin-top: 5px; color: var(--agr-muted); font-size: 12px; }
.agr-footer-disclosure { margin-top: 48px; max-width: 980px; padding-top: 22px; border-top: 1px solid #2a2d34; color: #9da3ad; font-size: 12px; line-height: 1.65; }
.agr-footer-disclosure strong { color: #e8e9ec; }
@media (max-width: 1080px) {
  .agr-primary-nav { display: none; }
  .agr-header-inner { grid-template-columns: 1fr auto; }
  .agr-header-actions .agr-link-quiet { display: none; }
  .agr-menu-toggle { display: block; }
  .agr-site-header.is-open .agr-primary-nav { display: block; grid-column: 1 / -1; width: 100%; padding: 4px 0 22px; }
  .agr-site-header.is-open .agr-primary-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
  .agr-site-header.is-open .agr-primary-nav > ul > li > a { display: block; padding: 10px 0; }
  .agr-site-header.is-open .agr-primary-nav .sub-menu { position: static; display: grid; box-shadow: none; border: 0; padding: 0 0 8px 18px; }
  .agr-site-header.is-open .agr-primary-nav .sub-menu a { padding: 7px 0; }
  .agr-hero-grid, .agr-section-head { grid-template-columns: 1fr; }
  .agr-domain-grid, .agr-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .agr-research-grid, .agr-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .agr-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .agr-container { width: min(calc(100% - 32px), var(--agr-max)); }
  .admin-bar .agr-site-header { top: 46px; }
  .agr-header-inner { min-height: 68px; gap: 10px; }
  .agr-brand-logo { width: 214px; }
  .agr-header-actions .agr-btn { display: none; }
  .agr-display { font-size: clamp(44px, 14vw, 66px); }
  .agr-hero { padding-top: 62px; }
  .agr-signal { grid-template-columns: repeat(2, 1fr); }
  .agr-signal div:nth-child(2) { border-right: 0; }
  .agr-signal div:nth-child(-n+2) { border-bottom: 1px solid var(--agr-border); }
  .agr-grid-2, .agr-grid-3, .agr-grid-4, .agr-domain-grid, .agr-research-grid, .agr-method-strip, .agr-meta-row, .agr-publication-meta, .agr-stat-grid, .agr-footer-grid, .agr-form-grid { grid-template-columns: 1fr; }
  .agr-domain { min-height: 0; }
  .agr-method-strip > div, .agr-meta-row > div { border-right: 0; border-bottom: 1px solid var(--agr-border); }
  .agr-method-strip > div:last-child, .agr-meta-row > div:last-child { border-bottom: 0; }
  .agr-rating-row { grid-template-columns: 92px 1fr; }
  .agr-rating-row span { grid-column: 2; }
  .agr-footer-bottom { flex-direction: column; }
  .agr-field--full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition: none !important; animation: none !important; }
}


/* v1.2 research publication refinements */
.agr-content > h2 { scroll-margin-top: 110px; }
.agr-content > h2:not(:first-child) { margin-top: 58px; }
.agr-content > h3 { margin-top: 36px; }
.agr-content ol > li, .agr-content ul > li { margin-bottom: 8px; }
.agr-content table th { vertical-align: bottom; }
.agr-content table td { vertical-align: top; }
.agr-source-list::before { content: "Research sources"; display: block; padding: 18px 0 8px; color: var(--agr-muted); font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }


/* v1.2.1 research governance + legal refinements */
.agr-research-policy-grid { margin-top: 42px; }
.agr-research-policy-grid .agr-card { min-height: 300px; }
.agr-research-disclosure { margin-top: 72px; padding-top: 28px; border-top: 1px solid var(--agr-border); color: var(--agr-muted); font-size: 14px; }
.agr-disclosure-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.agr-disclosure-grid > div { padding-right: 24px; }
.agr-disclosure-grid > div + div { padding-left: 28px; border-left: 1px solid var(--agr-border); }
.agr-disclosure-grid strong { display: block; margin-bottom: 8px; color: var(--agr-ink); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.agr-disclosure-grid p { margin: 0; max-width: 680px; }
.agr-content > p:first-child > strong:first-child { color: var(--agr-muted); font-size: 12px; letter-spacing: .04em; }
@media (max-width: 720px) {
  .agr-disclosure-grid { grid-template-columns: 1fr; gap: 22px; }
  .agr-disclosure-grid > div { padding-right: 0; }
  .agr-disclosure-grid > div + div { padding-left: 0; padding-top: 22px; border-left: 0; border-top: 1px solid var(--agr-border); }
}


/* v1.3 institutional research refinements */
.agr-research-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #4a515e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.agr-research-meta span:first-child {
  color: var(--agr-ink);
  font-weight: 800;
}
.agr-publication-meta {
  border-top: 1px solid var(--agr-border);
  border-bottom: 1px solid var(--agr-border);
  background: #fff;
}
.agr-publication-meta small {
  color: #707783;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.agr-publication-meta strong {
  font-size: 14px;
  font-weight: 680;
}
.agr-content > h2 {
  margin-top: 56px;
  padding-top: 8px;
  font-family: var(--agr-sans);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 680;
  letter-spacing: -.025em;
}
.agr-content > h2:first-child { margin-top: 0; }
.agr-content > p,
.agr-content > ul,
.agr-content > ol {
  max-width: 820px;
}
.agr-content table {
  font-size: 15px;
  line-height: 1.5;
}
.agr-content table th {
  background: #f7f8f9;
  color: #313640;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.agr-source-list {
  max-width: 900px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--agr-border);
}
.agr-source-list li {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--agr-border);
  font-size: 14px;
}
.agr-source-list a {
  text-decoration: none;
}
.agr-source-list a:hover {
  text-decoration: underline;
}
.agr-research-disclosure {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--agr-border);
}

/* SEO / semantic refinements */
.agr-brand-site-name { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.agr-footer-brandmark { margin: 0 0 10px; color:#8f96a2; font-size:11px; letter-spacing:.08em; }
.agr-footer-brand h2 a { color:#fff; text-decoration:none; }
.agr-footer-brand h2 a:hover { color:#fff; text-decoration:underline; }
.agr-breadcrumbs ol { list-style:none; display:flex; flex-wrap:wrap; gap:7px; margin:0; padding:0; }
.agr-breadcrumbs li:not(:last-child)::after { content:"/"; margin-left:7px; color:#9aa0aa; }

.agr-research-byline { max-width:980px; margin:14px 0 0; color:var(--agr-muted); font-size:12px; }
.agr-research-byline a { color:var(--agr-ink); font-weight:650; text-decoration:none; }
.agr-research-byline a:hover { text-decoration:underline; }
