/* Aistinag LLC — Observatoire editorial stylesheet v2.0
   Palette: deep forest green + warm parchment
   Typography: Manrope sans + Source Serif 4 italic */

:root {
  --ink: #0E2A20;
  --soft-ink: #2E4A3E;
  --muted: #6B7A72;
  --line: #DDD6C7;
  --paper: #FBF8F1;
  --wash: #F3EEDF;
  --warm: #C9A961;
  --warm-soft: #F0E3BF;
  --green: #0F3D2E;
  --green-mid: #2E6B4D;
  --green-soft: #D4E4D9;
  --rust: #B85C3A;
  --shadow: 0 18px 44px rgba(14, 42, 32, 0.09);
  --radius: 4px;
  --serif: "Source Serif 4", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --sans: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
h1, h2, h3, p, a, strong, span { overflow-wrap: break-word; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--sans); font-weight: 700; letter-spacing: -0.015em; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* ====== HEADER ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 241, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1260px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 28px;
  text-decoration: none;
  border-right: 1px solid var(--line);
  height: 88px;
}

.brand-svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(14,42,32,0.12));
}

.brand strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

.brand small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  font-style: italic;
  font-family: var(--serif);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 32px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links a:hover {
  color: var(--green);
  border-bottom-color: var(--warm);
}

.updated {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 1px solid var(--line);
  height: 88px;
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(46,107,77,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(201,169,97,0.10) 0%, transparent 60%),
    var(--paper);
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
}

.hero-board {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-kicker strong { color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--green-mid);
  font-size: 0.95rem;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.eyebrow.dark { color: var(--soft-ink); }

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--soft-ink);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ====== BUTTONS ====== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  background: var(--green);
  color: var(--paper);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  border: 1px solid var(--green);
  transition: background 0.15s, transform 0.1s;
}

.button:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
}

.button.button-ghost {
  background: transparent;
  color: var(--green);
}

.button.button-ghost:hover {
  background: var(--green-soft);
  color: var(--green);
}

.button.button-small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* ====== REPORT CARD (sidebar in hero) ====== */
.report-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--warm);
  border-radius: var(--radius);
  padding: 28px 28px 22px;
  box-shadow: var(--shadow);
  position: relative;
}

.report-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 36px; height: 36px;
  background:
    linear-gradient(135deg, transparent 50%, var(--warm-soft) 50%);
  border-top-right-radius: var(--radius);
}

.report-card p:first-of-type {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 6px;
  font-weight: 600;
}

.report-card h2 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 700;
}

.report-card dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.report-card dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.88rem;
}

.report-card dl > div:last-child { border-bottom: none; padding-bottom: 0; }

.report-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.report-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

/* ====== TRUST STRIP ====== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--soft-ink);
}

.trust-strip span {
  position: relative;
  padding-left: 22px;
}

.trust-strip span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.85;
}

.trust-strip span:nth-child(2)::before { background: var(--green-mid); }
.trust-strip span:nth-child(3)::before { background: var(--warm); }
.trust-strip span:nth-child(4)::before { background: var(--rust); }

/* ====== PROOF BAND ====== */
.proof-band {
  background: var(--wash);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.proof-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.2s;
}

.proof-grid article:hover {
  transform: translateY(-2px);
}

.proof-grid article span {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: var(--green-soft);
  border-radius: 3px;
}

.proof-grid article h2 {
  font-size: 1.18rem;
  margin: 0 0 10px;
  color: var(--ink);
}

.proof-grid article p {
  font-size: 0.92rem;
  color: var(--soft-ink);
  margin: 0;
  line-height: 1.6;
}

/* ====== SECTION ====== */
.section {
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 700;
  max-width: 28ch;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.split-heading p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.center-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.center-heading h2 { margin-left: auto; margin-right: auto; }
.center-heading p {
  color: var(--soft-ink);
  font-size: 1rem;
  max-width: 56ch;
  margin: 12px auto 0;
}

/* ====== NOTICE CARD ====== */
.notice-card {
  background: var(--warm-soft);
  border-left: 4px solid var(--warm);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: 0.93rem;
}

.notice-card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.notice-card p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.55;
}

/* ====== COMPARISON TABLE ====== */
.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.92rem;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table th {
  background: var(--green);
  color: var(--paper);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table tbody tr:nth-child(even) { background: var(--wash); }
.comparison-table tbody tr:hover { background: var(--green-soft); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.provider { display: flex; align-items: center; gap: 12px; }

.provider-logo {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--green);
  color: var(--paper);
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.provider-logo.alt { background: var(--green-mid); }
.provider-logo.warm { background: var(--warm); color: var(--ink); }
.provider-logo.cool { background: var(--rust); }

.provider strong { display: block; font-size: 0.95rem; }
.provider small { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

.badge {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--green-soft);
  color: var(--green);
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 4px;
  font-weight: 600;
}

.rating-bar {
  display: block;
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  position: relative;
  margin-bottom: 6px;
  overflow: hidden;
}

.rating-bar::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--rating, 0%);
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  border-radius: 3px;
}

.score {
  font-size: 0.8rem;
  color: var(--soft-ink);
  font-weight: 500;
}

/* ====== REVIEW GRID ====== */
.editorial-section { background: var(--wash); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}

.review-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.review-card-top h3 {
  font-size: 1.08rem;
  margin: 0;
  color: var(--ink);
}

.review-card-top span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-mid);
  font-weight: 700;
  background: var(--green-soft);
  padding: 3px 8px;
  border-radius: 3px;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--soft-ink);
  line-height: 1.6;
  margin: 0 0 14px;
}

.review-card a {
  color: var(--green);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
}

.review-card a:hover { color: var(--green-mid); border-color: var(--green-mid); }

/* ====== METHODOLOGY ====== */
.method-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.method-grid p {
  font-size: 1rem;
  color: var(--soft-ink);
  line-height: 1.7;
  margin: 0 0 16px;
}

.method-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}

.method-card h3 {
  font-size: 1.1rem;
  margin: 0 0 18px;
  color: var(--ink);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--soft-ink);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  background: var(--green-soft);
  border: 1.5px solid var(--green);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 18px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

/* ====== COMPLIANCE ====== */
.compliance-section { background: var(--green); color: var(--paper); padding: 80px 0; }

.compliance-section .eyebrow { color: var(--warm); }

.compliance-section h2 {
  color: var(--paper);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 18px;
}

.compliance-section p { color: rgba(251, 248, 241, 0.85); line-height: 1.7; }

.operator-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.operator-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  font-style: normal;
  border-top: 4px solid var(--warm);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.operator-card .card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.operator-card h3 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: var(--ink);
}

.operator-card p {
  font-size: 0.93rem;
  color: var(--soft-ink);
  line-height: 1.55;
  margin: 0 0 10px;
}

.operator-card a { color: var(--green); text-decoration: none; border-bottom: 1px solid var(--green); }

.operator-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.operator-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  border-bottom: none;
  padding: 4px 0;
}

.operator-links a:hover { color: var(--green-mid); }

/* ====== FOOTER ====== */
.site-footer {
  background: var(--ink);
  color: rgba(251, 248, 241, 0.7);
  padding: 48px 0 32px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-grid > div:first-child strong {
  color: var(--paper);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.footer-grid > div:first-child p { margin: 0; line-height: 1.6; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(251, 248, 241, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover { color: var(--warm); }

/* ====== SUB-PAGE TITLES (used on about/contact/mentions-legales etc.) ====== */
.subpage-hero {
  background: var(--green);
  color: var(--paper);
  padding: 56px 0 40px;
}

.subpage-hero h1 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 0 0 8px;
}

.subpage-hero p {
  color: rgba(251, 248, 241, 0.85);
  margin: 0;
  font-size: 1rem;
  max-width: 60ch;
}

.subpage-body {
  padding: 56px 0;
  background: var(--paper);
}

.subpage-body h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: var(--ink);
}

.subpage-body h2:first-child { margin-top: 0; }

.subpage-body p {
  color: var(--soft-ink);
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 68ch;
}

.subpage-body ul, .subpage-body ol {
  color: var(--soft-ink);
  line-height: 1.7;
  padding-left: 22px;
}

.subpage-body li { margin-bottom: 8px; }

.subpage-body a { color: var(--green); text-decoration: none; border-bottom: 1px solid var(--green); }

.subpage-body address {
  background: var(--wash);
  border-left: 4px solid var(--warm);
  padding: 18px 22px;
  border-radius: var(--radius);
  font-style: normal;
  margin: 24px 0;
  max-width: 60ch;
}

.subpage-body address strong { display: block; margin-bottom: 6px; color: var(--ink); }

/* ====== RESPONSIVE ====== */
@media (max-width: 920px) {
  .nav-shell { grid-template-columns: 1fr; min-height: 0; }
  .brand { border-right: none; border-bottom: 1px solid var(--line); height: auto; padding: 12px 0; }
  .nav-links { padding: 12px 0; gap: 18px; }
  .updated { border-left: none; border-top: 1px solid var(--line); height: auto; padding: 8px 0; }
  .hero-board { grid-template-columns: 1fr; gap: 32px; }
  .proof-grid { grid-template-columns: 1fr; }
  .split-heading { grid-template-columns: 1fr; gap: 16px; }
  .review-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .operator-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 32px; }
  .compliance-section { padding: 56px 0; }
}


/* ====== BREADCRUMB ====== */
.breadcrumb {
  background: var(--wash);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover { border-bottom-color: var(--green); }

.breadcrumb span:last-child { color: var(--soft-ink); font-weight: 500; }

/* ====== ARTICLES GRID (homepage) ====== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}

.article-meta a { color: var(--green); text-decoration: none; border-bottom: 1px solid transparent; }
.article-meta a:hover { border-bottom-color: var(--green); }

.article-card h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}

.article-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.article-card h3 a:hover { color: var(--green); }

.article-excerpt {
  font-size: 0.92rem;
  color: var(--soft-ink);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.article-sources {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

.article-sources a { color: var(--green-mid); text-decoration: none; }

/* ====== ARTICLE PAGE (single) ====== */
.article-page {
  background: var(--paper);
}

.article-page-header {
  padding: 56px 0 32px;
  background: var(--wash);
  border-bottom: 1px solid var(--line);
}

.article-page-header h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin: 12px 0 16px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.container.narrow {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  align-items: center;
}

.article-byline a { color: var(--green); text-decoration: none; border-bottom: 1px solid var(--green); padding-bottom: 1px; }

.article-body {
  padding: 48px 0 64px;
}

.article-body p {
  font-size: 1.02rem;
  color: var(--soft-ink);
  line-height: 1.75;
  margin: 0 0 18px;
}

.article-lead {
  font-size: 1.15rem !important;
  color: var(--ink) !important;
  font-style: italic;
  font-family: var(--serif);
  border-left: 3px solid var(--warm);
  padding-left: 18px;
  margin: 0 0 32px !important;
}

.article-body h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--ink);
  font-weight: 700;
}

.article-body h2:first-of-type { margin-top: 0; }

.article-body ol, .article-body ul {
  color: var(--soft-ink);
  line-height: 1.7;
  padding-left: 22px;
  margin: 0 0 18px;
}

.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--green); text-decoration: none; border-bottom: 1px solid var(--green); padding-bottom: 1px; }

.article-sources-box {
  background: var(--wash);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 40px 0 0;
  font-size: 0.9rem;
}

.article-sources-box h3 {
  font-size: 1rem;
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-sources-box ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--soft-ink);
}

.article-sources-box li { margin-bottom: 6px; }

.article-related {
  background: var(--wash);
  padding: 40px 0 56px;
  border-top: 1px solid var(--line);
}

.article-related h2 {
  font-size: 1.2rem;
  margin: 0 0 16px;
  color: var(--ink);
}

.article-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-related li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.article-related li:last-child { border-bottom: none; }

.article-related a { color: var(--green); text-decoration: none; }
.article-related a:hover { text-decoration: underline; }

/* ====== HERO META LINE ====== */
.hero-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
}

.hero-meta a { color: var(--green); text-decoration: none; border-bottom: 1px solid var(--green); padding-bottom: 1px; }

/* ====== RESPONSIVE ARTICLES ====== */
@media (max-width: 920px) {
  .articles-grid { grid-template-columns: 1fr; }
  .article-page-header { padding: 40px 0 24px; }
  .article-body { padding: 36px 0 48px; }
}
