/* =========================================================================
   THE CORPORATE TIMES — "Ledger Press" design system
   A navy-and-brass editorial theme built around a stock-ticker motif.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  /* --- Color tokens --- */
  --color-ink: #10203C;
  /* primary navy — nav, masthead, footer */
  --color-ink-light: #1B3054;
  /* hover / raised navy */
  --color-paper: #F6F1E6;
  /* warm paper background */
  --color-paper-2: #EFE6D2;
  /* recessed paper panels */
  --color-brass: #A9782F;
  /* primary accent — links, rules, ticker */
  --color-brass-light: #C99A45;
  /* accent hover */
  --color-emerald: #1F5C4B;
  /* secondary accent — tags, badges */
  --color-charcoal: #22242B;
  /* body text */
  --color-slate: #5B6472;
  /* secondary text */
  --color-rule: #D8CBB0;
  /* hairline rules on paper */
  --color-rule-dark: rgba(246, 241, 230, 0.18);
  /* hairline rules on navy */
  --color-white: #FFFFFF;

  /* --- Type --- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* --- Layout --- */
  --container-max: 1240px;
  --nav-height: 76px;
  --ticker-height: 38px;
  --radius: 3px;
  --shadow-soft: 0 12px 28px rgba(16, 32, 60, 0.14);
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  font-weight: 600;
  color: var(--color-ink);
}

:focus-visible {
  outline: 2px solid var(--color-brass);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

/* =========================================================================
   MASTHEAD
   ========================================================================= */
.masthead {
  background: var(--color-ink);
  color: var(--color-paper);
}

.masthead__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(246, 241, 230, 0.6);
  border-bottom: 1px solid var(--color-rule-dark);
}

.masthead__top span.date {
  text-transform: uppercase;
}

.masthead__top .edition {
  color: var(--color-brass-light);
}

.masthead__brand {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 22px 24px 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}

.masthead__brand .mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-brass);
  align-self: center;
}

.masthead__brand h1 {
  font-family: var(--font-display);
  color: var(--color-paper);
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
  text-align: center;
}

.masthead__brand .tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--color-brass);
  align-self: center;
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.site-nav {
  background: var(--color-ink);
  border-top: 1px solid var(--color-rule-dark);
  border-bottom: 1px solid var(--color-rule-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-rule-dark);
  border-radius: var(--radius);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-paper);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: stretch;
  gap: 16px;
  height: 100%;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 0px;
  font-size: 14px;
  font-weight: 600;

  color: var(--color-paper);
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-link .code {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-brass);
  letter-spacing: 0.04em;
}

.nav-item:hover>.nav-link,
.nav-link[aria-expanded="true"] {
  color: var(--color-brass-light);

}

.nav-item.active>.nav-link {
  border-bottom-color: var(--color-brass);
  color: var(--color-brass-light);
}

.nav-link .chev {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -3px;
}

.nav-link[aria-expanded="true"] .chev {
  transform: rotate(225deg);
  margin-top: 3px;
}

/* --- Dropdown panel --- */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  border-top: 2px solid var(--color-brass);
  box-shadow: var(--shadow-soft);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 50;
}

.nav-item.open>.dropdown,
.nav-item:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-paper-2);
}

.dropdown__link:last-child {
  border-bottom: none;
}

.dropdown__link:hover,
.dropdown__link:focus-visible {
  background: var(--color-paper);
  color: var(--color-brass);
}

.dropdown__link .idx {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-slate);
}

/* =========================================================================
   TICKER STRIP — signature element
   ========================================================================= */
.ticker {
  background: var(--color-brass);
  height: var(--ticker-height);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  width: max-content;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.ticker__item {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-ink);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.ticker__item .sym {
  color: var(--color-white);
  background: var(--color-ink);
  padding: 2px 6px;
  border-radius: 2px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================================================
   BREADCRUMB
   ========================================================================= */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--color-slate);
  padding: 18px 0 0;
}

.breadcrumb a {
  color: var(--color-brass);
}

.breadcrumb .sep {
  margin: 0 6px;
  color: var(--color-rule);
}

/* =========================================================================
   PAGE / HERO / CONTENT
   ========================================================================= */
main {
  display: block;
}

.hero {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--color-rule);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-brass);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hero__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--color-brass);
}

.hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  max-width: 760px;
}

.hero p.lede {
  font-size: 17px;
  color: var(--color-slate);
  max-width: 620px;
  margin-top: 12px;
}

.hero__media {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 3px solid var(--color-brass);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1200 / 460;
  line-height: 0;
}

.hero__media svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  display: block;
}

.hero__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-slate);
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-ink);
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: 22px;
  margin: 0;
}

.section-title .count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-slate);
}

/* --- Market snapshot strip (home page) --- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 8px 0 8px;
}

.stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.stat-card .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--color-slate);
  text-transform: uppercase;
}

.stat-card .value {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-ink);
  margin-top: 4px;
}

.stat-card .delta {
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 2px;
  color: var(--color-slate);
}

.stat-card .delta.up {
  color: var(--color-emerald);
}

.stat-card .delta.down {
  color: #a3392f;
}

/* --- Top stories (home page): lead card + secondary list --- */
.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  padding: 8px 0 48px;
}

.story-lead {
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.story-lead:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-brass);
}

.story-lead__media {
  aspect-ratio: 16 / 9;
}

.story-lead__body {
  padding: 24px;
}

.story-lead h3 {
  font-size: 24px;
  margin: 10px 0 10px;
}

.story-lead p {
  color: var(--color-slate);
  font-size: 14.5px;
  margin: 0 0 16px;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-list__item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  background: var(--color-white);
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.story-list__item:hover {
  border-color: var(--color-brass);
  transform: translateX(2px);
}

.story-list__item .icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.story-list__item h4 {
  font-size: 15px;
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-ink);
}

.story-list__item p {
  font-size: 12px;
  color: var(--color-slate);
  margin: 0;
  font-family: var(--font-mono);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 48px 0;
}

.article-card {
  background: var(--color-white);
  border: 1px solid var(--color-rule);
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-brass);
}

.article-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-paper-2);
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.article-card:hover .article-card__media img {
  transform: scale(1.05);
}

.icon-badge {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-ink), var(--color-ink-light));
  transition: transform 0.35s ease;
}

.article-card:hover .icon-badge {
  transform: scale(1.06);
}

.article-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--color-emerald);
  border: 1px solid var(--color-emerald);
  border-radius: 20px;
  padding: 3px 9px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.article-card .tag--overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
  background: rgba(16, 32, 60, 0.85);
  color: var(--color-brass-light);
  border-color: var(--color-brass-light);
  backdrop-filter: blur(2px);
}

.article-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.article-card p {
  color: var(--color-slate);
  font-size: 14px;
  margin: 0 0 14px;
  flex: 1;
}

.article-card .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-slate);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-paper-2);
  padding-top: 12px;
}

.callout {
  background: var(--color-ink);
  color: var(--color-paper);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 8px 0 56px;
}

.callout h3 {
  color: var(--color-paper);
  font-size: 20px;
  margin-bottom: 6px;
}

.callout p {
  color: rgba(246, 241, 230, 0.7);
  margin: 0;
  font-size: 14px;
  max-width: 460px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-brass);
  color: var(--color-ink);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--color-brass-light);
}

.btn--ghost {
  background: transparent;
  color: var(--color-paper);
  border: 1px solid var(--color-rule-dark);
}

.btn--ghost:hover {
  background: var(--color-ink-light);
}

/* --- Category index page list (used on menus/* pages) --- */
.index-list {
  display: flex;
  flex-direction: column;
  padding: 40px 0 60px;
}

.index-list__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-rule);
}

.index-list__row .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-brass);
  width: 34px;
  flex-shrink: 0;
}

.index-list__thumb {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-paper-2);
}

.index-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.index-list__row h3 {
  font-size: 19px;
  margin: 0 0 4px;
}

.index-list__row p {
  color: var(--color-slate);
  font-size: 14px;
  margin: 0;
}

.index-list__row p.preview {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--color-brass);
  margin-top: 6px;
}

.index-list__row .arrow {
  margin-left: auto;
  color: var(--color-brass);
  font-size: 18px;
}

/* --- Sibling section nav (shown on subpages) --- */
.sibling-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 8px;
}

.sibling-nav a {
  font-size: 12.5px;
  font-family: var(--font-mono);
  padding: 7px 12px;
  border: 1px solid var(--color-rule);
  border-radius: 20px;
  color: var(--color-slate);
}

.sibling-nav a.current {
  background: var(--color-ink);
  color: var(--color-paper);
  border-color: var(--color-ink);
}

.sibling-nav a:hover:not(.current) {
  border-color: var(--color-brass);
  color: var(--color-brass);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--color-ink);
  color: rgba(246, 241, 230, 0.75);
  margin-top: 40px;
}

.site-footer__top {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer__brand h2 {
  color: var(--color-paper);
  font-size: 22px;
}

.site-footer__brand p {
  font-size: 13.5px;
  color: rgba(246, 241, 230, 0.55);
  max-width: 260px;
}

.site-footer__brand .ticker-code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-brass);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.footer-col h4 {
  color: var(--color-brass-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(246, 241, 230, 0.75);
}

.footer-col a:hover {
  color: var(--color-brass-light);
}

.site-footer__bottom {
  border-top: 1px solid var(--color-rule-dark);
}

.site-footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 12px;
  color: rgba(246, 241, 230, 0.5);
  font-family: var(--font-mono);
}

.site-footer__bottom .socials {
  display: flex;
  gap: 14px;
}

.site-footer__bottom .socials a {
  color: rgba(246, 241, 230, 0.6);
}

.site-footer__bottom .socials a:hover {
  color: var(--color-brass-light);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav__inner {
    height: 64px;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    width: min(84vw, 340px);
    background: var(--color-ink);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-item {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    padding: 14px 10px;
    border-bottom: 1px solid var(--color-rule-dark);
    border-radius: var(--radius);
  }

  .nav-item.active>.nav-link {
    border-bottom-color: var(--color-rule-dark);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--color-ink-light);
    display: none;
    margin: 2px 0 6px;
  }

  .nav-item.open .dropdown {
    display: block;
  }

  .dropdown__link {
    color: var(--color-paper);
    border-bottom: 1px solid var(--color-rule-dark);
  }

  .dropdown__link:hover {
    background: rgba(0, 0, 0, 0.15);
    color: var(--color-brass-light);
  }

  .masthead__top {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 8px 16px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    padding: 32px 0;
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px;
  }
}

@media (max-width: 520px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .masthead__brand {
    flex-direction: column;
    gap: 4px;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================================
   ARTICLE DETAIL PAGE
   ========================================================================= */
.article {
  max-width: 760px;
  margin: 28px auto 8px;
}

.article__meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.article__meta-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-slate);
  letter-spacing: 0.02em;
}

.article__headline {
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.article__lede {
  font-size: 18px;
  color: var(--color-slate);
  margin: 0 0 6px;
}

.article__note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--color-brass);
  margin: 0 0 26px;
}

.article__hero {
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 3px solid var(--color-brass);
  box-shadow: var(--shadow-soft);
}

.article__hero img {
  width: 100%;
  aspect-ratio: 15 / 8;
  object-fit: cover;
  display: block;
}

.article__body {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-charcoal);
}

.article__body p {
  margin: 0 0 22px;
}

.pullquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--color-brass);
}

.pullquote p {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.4;
  margin: 0 0 10px;
}

.pullquote cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  color: var(--color-slate);
}

.article__share {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--color-rule);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article__share-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-slate);
}

.share-row {
  display: flex;
  gap: 8px;
}

.share-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--color-rule);
  border-radius: 20px;
  color: var(--color-ink);
  background: var(--color-white);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.share-btn:hover {
  border-color: var(--color-brass);
  color: var(--color-brass);
}

@media (max-width: 640px) {
  .article__headline {
    font-size: 28px;
  }

  .pullquote p {
    font-size: 20px;
  }
}