/* v30 20260321-001012 */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&display=swap');

/* ============================================================
   SMALL CITY POLICY — DESIGN SYSTEM
   Tone: Investigative editorial. Policy institute. 
   Primary: Deep navy. Accent: Document red. Ground: Warm white.
   ============================================================ */

:root {
  --navy:       #1B2B4B;
  --navy-light: #2C3E5F;
  --navy-dark:  #111D33;
  --red:        #B5191E;
  --red-light:  #D4242A;
  --warm-white: #F7F4EE;
  --off-white:  #EDE9E0;
  --rule:       #C8C2B5;
  --text:       #111111;
  --text-mid:   #333333;
  --text-light: #555550;
  --cite-bg:    #F0EDE5;

  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;
  --font-serif:   'Source Serif 4', Georgia, serif;

  --max-width: 1180px;
  --content-width: 740px;
  --gutter: 2rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 20px; scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mid); }

p { margin-bottom: 1.2rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s; }
a:hover { color: var(--red); }

strong { font-weight: 600; }
em { font-style: italic; }

.lead {
  color: var(--text-mid);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 400;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 0.75rem;
}

.hero .overline,
.page-hero .overline,
.analysis-section .overline {
  color: #ffffff !important;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.content-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  background: var(--navy-dark);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 1px;
}

.logo-primary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo-secondary {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: all 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--red-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--gutter);
    border-bottom: 2px solid var(--red);
    gap: 0.25rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.75rem 1rem; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--navy);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.03) 39px,
      rgba(255,255,255,0.03) 40px
    );
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  color: #fff;
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-style: italic;
}

.hero h1 strong {
  font-weight: 700;
  font-style: normal;
}

.hero-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  display: block;
  margin-top: 0.4rem;
}

/* ============================================================
   MISSION BAND
   ============================================================ */

.mission-band {
  background: var(--off-white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 3rem 0;
}

.mission-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.mission-inner p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 400;
}

.mission-inner strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
  padding: 3.5rem 0 2rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 2.5rem;
}

.section-header .overline { margin-bottom: 0.5rem; }

/* ============================================================
   CASE STUDY CARDS
   ============================================================ */

.cases-section { padding: 4rem 0; }

.case-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--navy);
  padding: 2rem 2rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(27,43,75,0.12);
}

.case-card-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.case-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}

.case-card p {
  color: var(--text);
  font-size: 0.97rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.5rem;
}

.case-card-callout {
  background: var(--navy);
  border-left: 4px solid var(--red);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.case-card-callout p {
  color: rgba(255,255,255,0.9) !important;
  font-family: var(--font-serif) !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}

.case-card-meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  margin-bottom: 1.5rem;
}

.case-meta-item {
  display: flex;
  flex-direction: column;
}

.case-meta-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.case-meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 0.25rem;
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-light);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-light);
  color: #fff;
}

/* ============================================================
   ANALYSIS / TAD SECTION
   ============================================================ */

.analysis-section {
  background: var(--navy-dark);
  color: #fff;
  padding: 4rem 0;
}

.analysis-section .overline { color: #ffffff !important; }
.analysis-section h2 { color: #fff; }
.analysis-section p { color: rgba(255,255,255,0.92); }

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .analysis-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.analysis-points {
  list-style: none;
  margin-top: 1.5rem;
}

.analysis-points li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
}

.analysis-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.stat-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--red);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.stat-block-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.stat-block-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  margin-top: 0.4rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.stat-block-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-style: italic;
}

/* ============================================================
   REFORM CARDS
   ============================================================ */

.reforms-section { padding: 4rem 0; background: var(--off-white); }

.reform-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 2rem;
  position: relative;
}

.reform-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--off-white);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  user-select: none;
}

.reform-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding-right: 3rem;
  color: var(--navy-dark);
}

.reform-card p {
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ============================================================
   METHODOLOGY BAND
   ============================================================ */

.methodology-band {
  background: var(--cite-bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2.5rem 0;
}

.methodology-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.methodology-inner h4 { margin-bottom: 1rem; }

.methodology-inner p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

/* ============================================================
   DOCUMENT LIBRARY
   ============================================================ */

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.doc-icon {
  flex-shrink: 0;
  width: 36px;
  height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  border-radius: 2px;
}

.doc-info { flex: 1; }

.doc-title {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  display: block;
  margin-bottom: 0.25rem;
}

.doc-title:hover { color: var(--red); text-decoration-color: var(--red); }

.doc-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
}

.doc-desc a, .citation a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.doc-desc a:hover, .citation a:hover { color: var(--red); }

/* ============================================================
   INLINE CASE STUDY CONTENT
   ============================================================ */

.case-body { padding: 4rem 0; }

.case-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.case-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.case-body p { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.85; }

.finding-box {
  background: var(--cite-bg);
  border-left: 4px solid var(--navy);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.finding-box p {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.finding-box p:last-child { margin-bottom: 0; }

.finding-box strong { color: var(--text); }

.warning-box {
  background: #FEF3F3;
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.data-table th {
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--rule);
  color: var(--text);
}

.data-table tr:nth-child(even) td { background: var(--cite-bg); }

.citation {
  font-size: 0.92rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--rule);
}

/* ============================================================
   WHAT WE KNOW / DON'T KNOW
   ============================================================ */

.findings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  margin: 2rem 0;
}

@media (max-width: 600px) {
  .findings-grid { grid-template-columns: 1fr; }
}

.findings-col { padding: 1.75rem; }
.findings-col:first-child { border-right: 1px solid var(--rule); }

.findings-col h4 { margin-bottom: 1rem; }

.findings-col ul {
  list-style: none;
  padding: 0;
}

.findings-col ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  padding-left: 1.25rem;
  position: relative;
}

.findings-col ul li:last-child { border-bottom: none; }

.findings-col.know li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2A7A4B;
  font-weight: 700;
  font-size: 0.8rem;
}

.findings-col.unknown li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 2rem;
  border-top: 3px solid var(--red);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand .logo-primary { font-size: 1.1rem; color: #fff; }
.footer-brand .logo-secondary { margin-top: 4px; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.85);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.footer-methodology {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  font-style: italic;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--navy);
  padding: 3rem 0 2.5rem;
  border-bottom: 3px solid var(--red);
}

.page-hero .overline { color: #ffffff !important; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero .lead {
  color: var(--text-mid); color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* ============================================================
   UTILITIES
   ============================================================ */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }
.rule { border: none; border-top: 1px solid var(--rule); margin: 2rem 0; }

.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

.tag-navy { background: var(--navy); color: #fff; }
.tag-red { background: var(--red); color: #fff; }
.tag-outline { border: 1px solid var(--rule); color: var(--text-mid); }

/* Fade-in animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.5s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* Chart containers */
.chart-container {
  position: relative;
  max-height: 320px;
}
.chart-container canvas {
  max-height: 320px;
}

/* ---- Five Findings Section (home page) ---- */
.findings-section {
  padding: 4rem 0;
  background: #f8f8f6;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .findings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .findings-grid { grid-template-columns: 1fr; }
}

.finding-card {
  background: var(--navy);
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.finding-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.finding-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.finding-text {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.25rem;
  flex: 1;
}

.finding-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 0.85rem;
  transition: color 0.15s;
}

.finding-link:hover {
  color: #fff;
}
