/* ============================================================
   NGNO — New Global News Organisation
   Palette: midnight navy, rich gold, pearl white, desert sand
   ============================================================ */

:root {
  --navy-900: #081426;
  --navy-800: #0B1F3A;
  --navy-700: #12294A;
  --navy-600: #1B3A63;
  --gold: #C9A227;
  --gold-light: #E6C866;
  --gold-deep: #A88418;
  --pearl: #FAF7F0;
  --sand: #EDE4D3;
  --sand-dark: #DED2B8;
  --ink: #14181F;
  --slate: #5B6472;
  --line: #E3DCCB;
  --live: #B3282D;
  --max-w: 1240px;
  --font-sans: "Archivo", -apple-system, "Segoe UI", Arial, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--sand);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 38px;
}
.topbar-date { letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.topbar-editions { margin-left: auto; display: flex; gap: 14px; white-space: nowrap; }
.topbar-editions a { opacity: 0.75; transition: opacity 0.2s; }
.topbar-editions a:hover, .topbar-editions a.active { opacity: 1; color: var(--gold-light); }

/* Ticker */
.ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.ticker-label {
  background: var(--live);
  color: #fff;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  padding: 3px 9px;
  margin-right: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 8px 0 10px -4px var(--navy-900);
}
@keyframes pulse { 50% { opacity: 0.72; } }
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-track span::before { content: "●"; color: var(--gold); font-size: 8px; margin-right: 10px; vertical-align: 2px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Masthead ---------- */
.masthead {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: var(--pearl);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 18px rgba(8, 20, 38, 0.35);
}
.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 82px;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand svg { height: 52px; width: auto; }

.nav { display: flex; gap: 4px; margin-left: 8px; }
.nav a {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  padding: 10px 13px;
  border-radius: 3px;
  color: rgba(250, 247, 240, 0.82);
  transition: color 0.15s, background 0.15s;
  position: relative;
}
.nav a:hover { color: var(--gold-light); background: rgba(201, 162, 39, 0.08); }
.nav a.active { color: var(--gold-light); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 2px;
  background: var(--gold);
}

.masthead-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--live);
  color: #fff;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  padding: 9px 16px;
  border: none;
  border-radius: 3px;
}
.btn-live .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s ease-in-out infinite;
}
.btn-search {
  background: none;
  border: 1px solid rgba(250, 247, 240, 0.28);
  color: var(--pearl);
  border-radius: 3px;
  padding: 8px 11px;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-search:hover { border-color: var(--gold); color: var(--gold-light); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(250, 247, 240, 0.28);
  color: var(--pearl);
  border-radius: 3px;
  padding: 8px 12px;
  font-size: 17px;
}

/* ---------- Kickers, bylines, shared story bits ---------- */
.kicker {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.kicker.on-dark { color: var(--gold-light); }
.kicker.breaking { color: var(--live); }

.byline {
  font-size: 12.5px;
  color: var(--slate);
  letter-spacing: 0.02em;
}
.byline b { color: var(--ink); font-weight: 700; }
.on-dark .byline,
.hero .byline, .spotlight .byline, .watch .byline { color: rgba(250, 247, 240, 0.6); }
.on-dark .byline b,
.hero .byline b, .spotlight .byline b, .watch .byline b { color: rgba(250, 247, 240, 0.92); }

.standfirst {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------- Hero ---------- */
.hero { background: var(--navy-900); color: var(--pearl); }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 0;
  padding-top: 34px;
  padding-bottom: 44px;
}

.hero-main { position: relative; min-height: 520px; overflow: hidden; }
.hero-main .media { position: absolute; inset: 0; }
.hero-main .media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,20,38,0.05) 30%, rgba(8,20,38,0.88) 78%, rgba(8,20,38,0.96) 100%);
}
.hero-main img { filter: saturate(0.9) contrast(1.05); }
.hero-main-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 36px;
}
.hero-main h1 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  max-width: 21ch;
}
.hero-main h1 a:hover { color: var(--gold-light); }
.hero-main .standfirst { color: rgba(250, 247, 240, 0.8); max-width: 58ch; margin-bottom: 14px; }

.hero-side {
  border-left: 1px solid rgba(201, 162, 39, 0.3);
  padding-left: 30px;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
}
.hero-side-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.14);
}
.hero-side article {
  padding: 18px 0;
  border-bottom: 1px solid rgba(250, 247, 240, 0.14);
}
.hero-side article:last-child { border-bottom: none; }
.hero-side h3 { font-size: 16.5px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.hero-side h3 a:hover { color: var(--gold-light); }
.hero-side .kicker { margin-bottom: 6px; font-size: 10.5px; }

/* ---------- Section blocks ---------- */
.section { padding: 52px 0; }
.section.tinted { background: var(--sand); }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  position: relative;
  padding-left: 16px;
}
.section-head h2::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 5px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
}
.section-head .see-all {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section-head .see-all:hover { color: var(--navy-800); }

/* Card grids */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card { display: flex; flex-direction: column; }
.card .media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--navy-700);
  position: relative;
}
.card .media img { transition: transform 0.45s ease; filter: saturate(0.92); }
.card:hover .media img { transform: scale(1.045); }
.card h3 { font-size: 17.5px; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.card h3 a:hover { color: var(--gold-deep); }
.card p { font-size: 13.5px; color: var(--slate); margin-bottom: 10px; }
.card .byline { margin-top: auto; }

.card.lead { grid-row: span 2; }
.card.lead .media { aspect-ratio: 16 / 11; }
.card.lead h3 { font-size: 24px; }
.card.lead p { font-size: 15px; }

/* Horizontal list card */
.row-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.row-card:last-child { border-bottom: none; }
.row-card .media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--navy-700); }
.row-card h3 { font-size: 15.5px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.row-card h3 a:hover { color: var(--gold-deep); }

/* ---------- Spotlight band (dark, patterned) ---------- */
.spotlight {
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(27, 58, 99, 0.55), transparent),
    var(--navy-900);
  color: var(--pearl);
  padding: 58px 0;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23C9A227' stroke-width='1'%3E%3Crect x='21' y='21' width='30' height='30'/%3E%3Crect x='21' y='21' width='30' height='30' transform='rotate(45 36 36)'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
}
.spotlight .section-head h2 { color: var(--pearl); }
.spotlight .card p { color: rgba(250, 247, 240, 0.66); }
.spotlight .card h3 a:hover { color: var(--gold-light); }
.spotlight .see-all { color: var(--gold-light); }
.spotlight .see-all:hover { color: #fff; }

/* ---------- Markets strip ---------- */
.markets {
  background: var(--navy-800);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--pearl);
  font-size: 13px;
}
.markets .wrap {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 46px;
  overflow-x: auto;
}
.markets .label {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  white-space: nowrap;
}
.market-item { display: flex; gap: 9px; white-space: nowrap; align-items: baseline; }
.market-item .name { color: rgba(250, 247, 240, 0.65); font-weight: 600; }
.market-item .value { font-weight: 700; font-variant-numeric: tabular-nums; }
.market-item .delta.up { color: #4CAF7D; }
.market-item .delta.down { color: #E0685E; }

/* ---------- Opinion ---------- */
.opinion-card {
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 26px;
  box-shadow: 0 1px 4px rgba(20, 24, 31, 0.06);
  display: flex;
  flex-direction: column;
}
.opinion-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  margin: 10px 0 16px;
}
.opinion-card h3 a:hover { color: var(--gold-deep); }
.opinion-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.opinion-author .name { font-weight: 700; font-size: 13.5px; }
.opinion-author .role { font-size: 12px; color: var(--slate); }

/* ---------- Watch strip ---------- */
.watch { background: var(--navy-900); color: var(--pearl); padding: 52px 0; }
.watch .section-head h2 { color: var(--pearl); }
.watch .card .media::before {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: rgba(8, 20, 38, 0.35);
  z-index: 2;
  transition: background 0.25s;
}
.watch .card:hover .media::before { background: rgba(201, 162, 39, 0.4); }
.watch .card h3 a:hover { color: var(--gold-light); }
.watch .duration {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 55%, var(--gold-light));
  color: var(--navy-900);
  padding: 46px 0;
}
.newsletter .wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter h2 { font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.newsletter p { font-size: 15px; max-width: 46ch; }
.newsletter form { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }
.newsletter input {
  font-family: inherit;
  font-size: 14.5px;
  padding: 13px 16px;
  border: 2px solid var(--navy-900);
  border-radius: 3px;
  background: var(--pearl);
  min-width: 280px;
}
.newsletter button {
  background: var(--navy-900);
  color: var(--gold-light);
  border: none;
  border-radius: 3px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  padding: 13px 26px;
  transition: background 0.2s;
}
.newsletter button:hover { background: var(--navy-700); }
.newsletter .thanks { font-weight: 700; display: none; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(250, 247, 240, 0.72);
  padding: 56px 0 0;
  font-size: 13.5px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer .brand svg { height: 46px; }
.footer .mission { margin-top: 16px; max-width: 40ch; line-height: 1.7; }
.footer h4 {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer li { margin-bottom: 9px; }
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 240, 0.12);
  padding: 20px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(250, 247, 240, 0.45);
}
.footer-bottom .legal { margin-left: auto; display: flex; gap: 18px; }

/* ---------- Page headers (inner pages) ---------- */
.page-head {
  background:
    radial-gradient(ellipse 70% 90% at 20% 0%, rgba(27, 58, 99, 0.6), transparent),
    var(--navy-900);
  color: var(--pearl);
  padding: 54px 0;
  border-bottom: 4px solid var(--gold);
}
.page-head h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 900; text-transform: uppercase; letter-spacing: 0.01em; }
.page-head p {
  margin-top: 10px;
  color: rgba(250, 247, 240, 0.7);
  font-family: var(--font-serif);
  font-size: 17px;
  max-width: 64ch;
}

/* ---------- About page ---------- */
.about-lede {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.65;
  max-width: 62ch;
  color: var(--ink);
}
.stats-band { background: var(--navy-800); color: var(--pearl); padding: 46px 0; }
.stats-band .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-size: 40px; font-weight: 900; color: var(--gold-light); font-variant-numeric: tabular-nums; }
.stat .label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,247,240,0.65); margin-top: 6px; }

.value-card {
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 24px;
  box-shadow: 0 1px 4px rgba(20, 24, 31, 0.06);
}
.value-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--slate); }

.leader-card { text-align: center; }
.leader-card .avatar {
  width: 88px; height: 88px;
  margin: 0 auto 14px;
  font-size: 24px;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  border: 2px solid var(--gold);
}
.leader-card .name { font-weight: 800; font-size: 16px; }
.leader-card .role { font-size: 13px; color: var(--slate); margin-top: 3px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.contact-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 20px 0 7px;
  color: var(--navy-800);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 3px;
  background: #fff;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.btn-primary {
  margin-top: 24px;
  background: var(--navy-800);
  color: var(--gold-light);
  border: none;
  border-radius: 3px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 15px 34px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--navy-600); }
.form-note { display: none; margin-top: 16px; font-weight: 700; color: var(--gold-deep); }

.office-card {
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 22px;
  box-shadow: 0 1px 4px rgba(20, 24, 31, 0.06);
  margin-bottom: 18px;
}
.office-card.hq { border-top-color: var(--navy-800); background: var(--navy-800); color: var(--pearl); }
.office-card.hq .office-city { color: var(--gold-light); }
.office-card.hq p { color: rgba(250, 247, 240, 0.72); }
.office-city { font-weight: 900; font-size: 16px; letter-spacing: 0.03em; }
.office-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: var(--gold);
  color: var(--navy-900);
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: 2px;
}
.office-card p { font-size: 13.5px; color: var(--slate); margin-top: 8px; line-height: 1.7; }

/* ---------- Pagination stub ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }
.pagination a {
  min-width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--sand-dark);
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  padding: 0 12px;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-deep); }
.pagination a.current { background: var(--navy-800); border-color: var(--navy-800); color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1160px) {
  .nav a { padding: 10px 9px; font-size: 13.5px; }
  .masthead .wrap { gap: 16px; }
  .btn-search { display: none; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-side { border-left: none; padding-left: 0; margin-left: 0; margin-top: 26px; border-top: 1px solid rgba(201,162,39,0.3); padding-top: 22px; }
  .hero-main { min-height: 440px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-band .wrap { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .nav {
    display: none;
    position: absolute;
    top: 82px; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-900);
    padding: 12px 24px 20px;
    gap: 2px;
    border-bottom: 2px solid var(--gold);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 8px; font-size: 16px; border-bottom: 1px solid rgba(250,247,240,0.08); }
  .menu-toggle { display: block; }
  .btn-search { display: none; }
  .topbar-editions { display: none; }
}

@media (max-width: 720px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-main { min-height: 400px; }
  .hero-main-body { padding: 22px; }
  .newsletter form { margin-left: 0; width: 100%; }
  .newsletter input { min-width: 0; flex: 1; }
  .brand svg { height: 42px; }
}

/* ---------- Article pages ---------- */
.card .media, .watch .card .media { display: block; }

.article-head {
  background:
    radial-gradient(ellipse 70% 90% at 20% 0%, rgba(27, 58, 99, 0.6), transparent),
    var(--navy-900);
  color: var(--pearl);
  padding: 52px 0 40px;
  border-bottom: 4px solid var(--gold);
}
.article-head h1 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  max-width: 26ch;
  margin: 6px 0 16px;
}
.article-standfirst {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(250, 247, 240, 0.78);
  max-width: 62ch;
  margin-bottom: 26px;
}
.article-meta { display: flex; align-items: center; gap: 14px; }
.article-meta .avatar { border: 1.5px solid var(--gold); }
.article-author { font-weight: 700; font-size: 14.5px; }
.article-author em { font-style: normal; font-weight: 500; color: rgba(250, 247, 240, 0.6); }
.article-dateline { font-size: 12.5px; color: rgba(250, 247, 240, 0.55); letter-spacing: 0.04em; margin-top: 2px; }

.article-body-wrap { padding: 44px 24px 56px; }
.article-figure { max-width: 860px; margin: 0 auto 36px; }
.article-figure img { aspect-ratio: 16 / 9; }
.article-figure figcaption {
  font-size: 12.5px;
  color: var(--slate);
  padding-top: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  letter-spacing: 0.03em;
}
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p {
  font-family: var(--font-serif);
  font-size: 18.5px;
  line-height: 1.75;
  margin-bottom: 26px;
  color: var(--ink);
}
.article-body p:first-child::first-letter {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 3.4em;
  float: left;
  line-height: 0.82;
  padding: 6px 10px 0 0;
  color: var(--navy-800);
}
.article-pull {
  border-left: 4px solid var(--gold);
  margin: 34px 0;
  padding: 6px 0 6px 24px;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy-800);
}
.article-endnote {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 13px;
  color: var(--slate);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  letter-spacing: 0.02em;
}
.article-endmark { color: var(--gold-deep); margin-right: 6px; }

@media (max-width: 720px) {
  .article-body p { font-size: 17px; }
  .article-pull { font-size: 19px; }
}
