/* ==========================================================================
   New Capital Link Foundation — brand stylesheet
   Same brand system as newcapitallinkcareers.com / newcapitallink.co.uk
   (gold #BFA556 on ink #0B0B0D, PT Serif display type, Nunito Sans body type).
   ========================================================================== */

:root {
  /* Brand colour system */
  --ink: #0b0b0d;
  --ink-soft: #17171a;
  --ink-line: #2a2a2e;
  --slate: #54595f;
  --grey-light: #f6f5f2;
  --grey-mid: #eae9e9;
  --grey-border: #dcdad5;
  --white: #ffffff;
  --gold: #bfa556;
  --gold-soft: #e8dfc8;
  --gold-deep: #8a6a1f;
  --text-on-dark: #eae9e9;
  --text-on-dark-muted: #a6a6a6;
  --text-on-light: #2a2a2c;
  --text-on-light-muted: #54595f;

  /* Type */
  --font-display: 'PT Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-space: clamp(3.5rem, 6vw, 6rem);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--white);
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; margin: 0 0 0.6em; color: var(--text-on-light); }
p { margin: 0 0 1.1em; }
h1 { font-size: clamp(2.1rem, 1.6rem + 2vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.65rem, 1.4rem + 1vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem); }
strong { font-weight: 700; }
button { font-family: inherit; }

/* ---- Focus visibility (accessibility) ---- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; }

/* ---- Layout helpers ---- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-space); }
.section-light { background: var(--white); }
.section-grey { background: var(--grey-light); }
.section-dark { background: var(--ink); color: var(--text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3,
.hero h1, .hero h2, .hero h3 { color: var(--white); }
.section-dark p, .hero p { color: var(--text-on-dark-muted); }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}
.section-dark .eyebrow, .hero .eyebrow { color: var(--gold); }
.lede { font-size: 1.15rem; color: var(--text-on-light-muted); max-width: 62ch; }
.section-dark .lede, .hero .lede { color: var(--text-on-dark-muted); }
.text-gold { color: var(--gold); }
.center { text-align: center; margin-inline: auto; }
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #d4bb6d; }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.btn-outline-light { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline-light:hover { background: var(--gold); color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }

/* ---- Header ---- */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--ink-line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.brand img { height: 54px; width: auto; }
.brand-divider { width: 1px; height: 32px; background: var(--ink-line); display: inline-block; }
.brand-suffix { font-family: var(--font-body); font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-size: 0.74rem; }

.main-nav { display: flex; align-items: center; gap: clamp(0.6rem, 1.1vw, 1.3rem); flex-wrap: wrap; justify-content: flex-end; }
.main-nav a {
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.1rem;
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.15s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--gold); }
.nav-cta { margin-left: 0.4rem; padding: 0.6rem 1.15rem; }

.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  padding: 0.6rem;
  min-width: 220px;
  display: none;
  z-index: 50;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block;
  color: var(--text-on-light);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
}
.dropdown-panel a::after { display: none; }
.dropdown-panel a:hover { background: var(--grey-light); color: var(--gold-deep); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--ink-line);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  color: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--ink-line);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--ink-line); }
  .nav-cta { margin-left: 0; margin-top: 0.75rem; }
  .has-dropdown .dropdown-panel {
    position: static; transform: none; box-shadow: none; background: var(--ink-soft);
    display: none; width: 100%; margin-top: 0.25rem;
  }
  .has-dropdown.is-open .dropdown-panel { display: block; }
  .dropdown-panel a { color: var(--text-on-dark); }
  .dropdown-panel a:hover { background: var(--ink); color: var(--gold); }
}

/* ---- Breadcrumbs ---- */
.breadcrumbs { background: var(--grey-light); border-bottom: 1px solid var(--grey-border); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; padding-block: 0.85rem; font-size: 0.86rem; color: var(--text-on-light-muted); }
.breadcrumbs a { color: var(--text-on-light-muted); font-weight: 600; }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--grey-border); }
.breadcrumbs li[aria-current] { color: var(--text-on-light); font-weight: 700; }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image:
    linear-gradient(100deg, var(--ink) 0%, var(--ink) 38%, rgba(11,11,13,0.82) 56%, rgba(11,11,13,0.45) 76%, rgba(11,11,13,0.2) 100%),
    url('../images/hero-pattern.svg');
  background-position: center, right center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(191,165,86,0.08) 1px, transparent 1px),
    linear-gradient(rgba(191,165,86,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top right, black, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero-inner { max-width: 46rem; }
.hero p.lede { margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 3rem; flex-wrap: wrap; }
.hero-stats .stat-num { font-family: var(--font-display); color: var(--gold); font-size: 2rem; font-weight: 700; display: block; }
.hero-stats .stat-label { color: var(--text-on-dark-muted); font-size: 0.86rem; }
.page-hero {
  background-image:
    linear-gradient(100deg, rgba(11,11,13,0.9), rgba(11,11,13,0.78)),
    url('../images/hero-pattern.svg');
  background-position: center, right center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}
.page-hero .container { padding-block: clamp(2.75rem, 6vw, 4rem); }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  height: 100%;
}
.card h3 { margin-bottom: 0.5rem; }
.card-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 24px; height: 24px; }
.dark-card { background: var(--ink-soft); border-color: var(--ink-line); }
.dark-card h3 { color: var(--white); }
.dark-card p { color: var(--text-on-dark-muted); }
.dark-card .card-icon { background: rgba(191,165,86,0.12); color: var(--gold); }

/* ---- Job cards ---- */
.job-card {
  display: flex; flex-direction: column; gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 3vw, 1.9rem);
}
.job-card .flex-between { align-items: flex-start; }
.job-card h3 { margin-bottom: 0.15rem; font-size: 1.2rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.9rem; font-size: 0.88rem; color: var(--text-on-light-muted); font-weight: 600; }
.job-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.job-tag {
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.job-card .btn { align-self: flex-start; margin-top: 0.3rem; }

/* ---- Team ---- */
.team-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}
.team-card .initials {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  border: 2px solid var(--gold);
}
.team-card .role { color: var(--gold-deep); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.team-card .social-link { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1rem; font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.team-card .social-link:hover { color: var(--gold-deep); }

/* ---- Testimonials ---- */
.quote-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.quote-card .stars { color: var(--gold-deep); letter-spacing: 0.15em; font-size: 1rem; margin-bottom: 0.75rem; }
.quote-card p { font-style: italic; color: var(--text-on-light); }
.quote-card cite { font-style: normal; font-weight: 800; display: block; margin-top: 1rem; font-size: 0.9rem; }
.quote-card .quote-meta { color: var(--text-on-light-muted); font-weight: 600; font-size: 0.85rem; }

/* ---- Press ---- */
.press-card { border-bottom: 1px solid var(--grey-border); padding-block: 1.75rem; }
.press-card:first-child { padding-top: 0; }
.press-card .press-source { color: var(--gold-deep); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.press-card h3 { margin-block: 0.4rem 0.5rem; }
.press-card time { color: var(--text-on-light-muted); font-size: 0.85rem; }

/* ---- CTA band ---- */
.cta-band { background: var(--ink); color: var(--white); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: 0.35rem; }
.cta-band p { color: var(--text-on-dark-muted); margin: 0; }

/* ---- Location chips ---- */
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .location-grid { grid-template-columns: 1fr; } }
.location-chip {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.location-chip span { display: block; font-family: var(--font-body); font-weight: 600; color: var(--gold-deep); font-size: 0.82rem; margin-top: 0.35rem; }
.location-chip:hover { border-color: var(--gold); background: var(--grey-light); }

/* ---- Forms ---- */
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-weight: 700; margin-bottom: 0.4rem; font-size: 0.92rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--text-on-light);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); }
.form-hint { font-size: 0.82rem; color: var(--text-on-light-muted); margin-top: 0.35rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding-block: 1.1rem; border-bottom: 1px solid var(--ink-line); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .card-icon { flex-shrink: 0; margin-bottom: 0; background: rgba(191,165,86,0.12); color: var(--gold); }
.contact-info-item h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-info-item p, .contact-info-item a { color: var(--text-on-dark-muted); }
.contact-info-item a:hover { color: var(--gold); }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); border-top: 1px solid var(--ink-line); }
.footer-top { padding-block: clamp(3rem, 6vw, 4rem); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top h4 { color: var(--white); font-family: var(--font-body); font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-top li { margin-bottom: 0.65rem; }
.footer-top a:hover { color: var(--gold); }
.footer-brand p { max-width: 32ch; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--ink-line);
  display: grid; place-items: center;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--ink-line); padding-block: 1.5rem; font-size: 0.82rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }
.footer-disclaimer { font-size: 0.78rem; color: #6f6f6f; border-top: 1px solid var(--ink-line); padding-block: 1.25rem; }

/* ---- Misc ---- */
.divider-gold { width: 64px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 1.5rem; }
.center .divider-gold { margin-inline: auto; }
.tick-list li { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.9rem; }
.tick-list svg { flex-shrink: 0; color: var(--gold-deep); width: 22px; height: 22px; margin-top: 0.1rem; }
.section-dark .tick-list svg { color: var(--gold); }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.stat-block { text-align: center; padding: 1.5rem; }
.stat-block .stat-num { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.75rem); color: var(--gold-deep); font-weight: 700; display: block; }
.section-dark .stat-block .stat-num { color: var(--gold); }
.stat-block .stat-label { color: var(--text-on-light-muted); font-weight: 600; font-size: 0.92rem; }
.section-dark .stat-block .stat-label { color: var(--text-on-dark-muted); }

/* ---- Tags (categories, focus areas) ---- */
.tag {
  display: inline-flex;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.section-dark .tag, .dark-card .tag { background: rgba(191,165,86,0.16); color: var(--gold); }

/* ---- Cause / partner cards (Who We Have Supported) ---- */
.cause-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  height: 100%;
}
.cause-card .flex-between { align-items: flex-start; margin-bottom: 0.75rem; }
.cause-card h3 { margin-bottom: 0.25rem; }
.cause-card .cause-location { color: var(--text-on-light-muted); font-weight: 600; font-size: 0.88rem; }
.cause-card blockquote {
  margin: 1.1rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: var(--text-on-light-muted);
}
.cause-card blockquote footer { margin-top: 0.4rem; font-style: normal; font-weight: 800; font-size: 0.85rem; color: var(--ink); }

/* ---- Blog cards (index/listing) ---- */
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 3vw, 1.8rem);
  height: 100%;
}
.blog-card .blog-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; color: var(--text-on-light-muted); font-weight: 600; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.1rem; }
.blog-card h3 a { color: var(--text-on-light); }
.blog-card h3 a:hover { color: var(--gold-deep); }
.blog-card p { color: var(--text-on-light-muted); margin-bottom: 0; }
.blog-card .read-more { font-weight: 800; font-size: 0.88rem; color: var(--gold-deep); border-bottom: 2px solid var(--gold); align-self: flex-start; padding-bottom: 1px; margin-top: auto; }
.blog-card .read-more:hover { color: var(--ink); }

/* ---- Blog article (single post) ---- */
.article-header { max-width: 46rem; }
.article-header .blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.article-body { max-width: 46rem; }
.article-body p { font-size: 1.05rem; line-height: 1.85; color: var(--text-on-light); }
.article-body h2 { margin-top: 2.2rem; }
.article-body h3 { margin-top: 1.6rem; }
.article-body ul, .article-body ol { margin: 0 0 1.4rem 1.4rem; padding: 0; }
.article-body li { margin-bottom: 0.6rem; line-height: 1.7; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body blockquote {
  margin: 1.75rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: var(--grey-light);
  font-style: italic;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote footer { margin-top: 0.5rem; font-style: normal; font-weight: 800; font-size: 0.85rem; }
.article-share { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; margin-top: 2rem; border-top: 1px solid var(--grey-border); }
.author-box { display: flex; gap: 1rem; align-items: center; background: var(--grey-light); border-radius: var(--radius-md); padding: 1.25rem; margin-top: 2.5rem; max-width: 46rem; }
.author-box .initials { width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.author-box p { margin: 0; font-size: 0.92rem; color: var(--text-on-light-muted); }
.author-box strong { color: var(--text-on-light); }
