:root {
  --ink: #14161a;
  --ink-2: #3a3f47;
  --ink-3: #6b7280;
  --bg: #ffffff;
  --bg-2: #f6f7f8;
  --bg-3: #eef0f3;
  --line: #e2e4e8;
  --line-strong: #c9ccd2;
  --accent: #b31217;
  --accent-ink: #8f0e12;
  --accent-soft: #fbeaea;
  --link: #0b57c2;
  --up: #0a8a3a;
  --down: #c0392b;
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(16, 18, 22, 0.06), 0 2px 8px rgba(16, 18, 22, 0.05);
  --shadow-md: 0 6px 18px rgba(16, 18, 22, 0.08), 0 2px 6px rgba(16, 18, 22, 0.06);
  --shadow-lg: 0 18px 44px rgba(16, 18, 22, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
    background-color: #f2f3f5;
  background-image:
    radial-gradient(60rem 60rem at 12% -8%, rgba(179, 18, 23, 0.06), transparent 60%),
    radial-gradient(55rem 55rem at 108% 4%, rgba(11, 87, 194, 0.06), transparent 60%),
    linear-gradient(rgba(20, 22, 26, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 22, 26, 0.028) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px, 28px 28px;
  background-attachment: fixed, fixed, fixed, fixed;
}

a { color: inherit; }

.reading-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 80;
}
.reading-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #e0483d);
  transition: width 0.1s linear;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.utility {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
  background: var(--bg);
}
.utility__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utility__date { white-space: nowrap; }
.utility__ticker { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.utility__ticker > a,
.utility__ticker > span { letter-spacing: 1px; font-weight: 700; color: var(--ink-2); text-decoration: none; }
.utility__ticker > a:hover { color: var(--accent); }
.utility__ticker b { font-weight: 700; color: var(--ink); font-family: var(--sans); }
.utility__ticker em { font-style: normal; }
.utility__ticker .up { color: var(--up); font-weight: 600; }
.utility__ticker .down { color: var(--down); font-weight: 600; }
.utility__account { display: flex; align-items: center; gap: 14px; }
.utility__account a { color: var(--link); text-decoration: none; font-weight: 600; }
.utility__account a:hover { text-decoration: underline; }
.utility__cta {
  color: #fff !important;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 3px;
  text-decoration: none !important;
}
.utility__cta:hover { background: var(--accent-ink); }

.masthead { border-bottom: 1px solid var(--line); background: var(--bg); }
.masthead__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.brand__logo {
  display: block;
  height: 52px;
  width: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  flex: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.4px;
  text-transform: lowercase;
}
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1;
}
.masthead__tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-3);
  text-decoration: none;
}
.masthead__tag:hover { color: var(--accent); }

.mainnav {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(1.4) blur(8px);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: var(--shadow-sm);
}
.mainnav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 26px;
  overflow-x: auto;
}
.mainnav a {
  display: inline-block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.mainnav a:hover { color: var(--ink); }
.mainnav a.active { color: var(--accent); border-bottom-color: var(--accent); }

.breaking { background: var(--ink); color: #fff; overflow: hidden; }
.breaking__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.breaking__badge {
  flex: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  text-decoration: none;
}
.breaking__badge:hover { background: var(--accent-ink); color: #fff; }
.breaking__track {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13.5px;
}
.breaking__track a { color: #e9ebef; text-decoration: none; }
.breaking__track a:hover { color: #fff; text-decoration: underline; }
.breaking__track .dot { width: 4px; height: 4px; border-radius: 50%; background: #6b7280; flex: none; }

.hero { position: relative; color: #fff; overflow: hidden; border-bottom: 3px solid var(--accent); }
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #0c0e12;
  background-image:
    linear-gradient(115deg, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.72) 45%, rgba(10, 12, 16, 0.5) 100%),
    url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 54px 24px 46px;
}
.hero__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.hero__kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffd7d5;
  text-decoration: none;
}
.hero__kicker:hover { color: #fff; }
.hero__live { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: #d6dae1; text-decoration: none; }
.hero__live:hover { color: #fff; }
.hero__pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.7); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.6px;
  margin: 0 0 16px;
  max-width: 22ch;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero__title-link {
  color: inherit;
  text-decoration: none;
}
.hero__title-link:hover { color: #ffd7d5; }
.hero__sub {
  font-family: var(--sans);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: #d8d9de;
  margin: 0 0 26px;
  max-width: 58ch;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  max-width: 760px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden;
}
.hfact {
  background: rgba(12, 14, 18, 0.55);
  padding: 14px 16px 15px;
  backdrop-filter: blur(2px);
  text-decoration: none !important;
  color: inherit;
  display: block;
  transition: background 0.15s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hfact:last-child { border-right: 0; }
.hfact:hover { background: rgba(12, 14, 18, 0.78); }
.hfact:hover .hfact__n { color: #fff; }
.hfact__n {
  display: block;
  font-family: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1;
  color: #f3f4f6;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}
.hfact__l {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #a8afba;
  margin-top: 6px;
  text-decoration: none;
}

.hero__foot { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 18px; font-size: 12.5px; color: #c4c9d2; }
.hero__byline { font-weight: 700; color: #eceef2; text-decoration: none; }
.hero__byline:hover { color: #fff; }
.hero__sep { width: 4px; height: 4px; border-radius: 50%; background: #6b7280; }
.hero__src { color: #aab0ba; }

.layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}
.col-main {
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
}
.col-rail { position: sticky; top: 64px; }

.article { max-width: 720px; margin: 0 auto; }
.crumbs {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.headline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
  color: var(--ink);
}
.standfirst {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 22px;
}
.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.byline__left { display: flex; align-items: center; gap: 12px; }
.byline__avatar {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  overflow: hidden;
  flex: none;
  padding: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}
.byline__meta { display: flex; flex-direction: column; line-height: 1.3; }
.byline__by { font-weight: 700; color: var(--ink); }
.byline__role { font-size: 12.5px; color: var(--ink-3); }
.byline__right { color: var(--ink-3); display: flex; align-items: center; gap: 10px; }
.byline__right .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); display: inline-block; }
.share {
  display: flex;
  gap: 8px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.share a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  border: 1px solid var(--line-strong);
  padding: 6px 14px;
  border-radius: 3px;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.share a:hover { border-color: var(--ink-2); color: var(--ink); background: var(--bg-2); }
.share__x:hover { border-color: var(--accent); color: var(--accent); }

.lead-media { margin: 0 0 26px; }
.lead-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  background: #dfe3e8;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}
.lead-media--fallback { aspect-ratio: 16 / 9; background: #dfe3e8; border-radius: 6px; }
.lead-media figcaption,
.inline-media figcaption {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 8px;
  line-height: 1.5;
}
.lead-media .credit, .inline-media .credit { display: inline-block; margin-left: 6px; color: #9aa0a8; }

.inline-media { margin: 28px 0; }
.inline-media img { display: block; width: 100%; height: auto; border-radius: 6px; background: #dfe3e8; box-shadow: var(--shadow-sm); }
.inline-media--fallback { aspect-ratio: 16 / 9; background: #dfe3e8; border-radius: 6px; }

.body { font-size: 18.5px; }
.body p { margin: 0 0 20px; color: var(--ink); }
.lede-para::first-letter {
  font-family: var(--serif);
  font-size: 58px;
  line-height: 0.82;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--accent);
  font-weight: 700;
}
.body h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.2;
  margin: 40px 0 14px;
  letter-spacing: -0.3px;
  padding-top: 10px;
  border-top: 2px solid var(--ink);
}
.body h3 { font-family: var(--serif); font-weight: 700; font-size: 19px; margin: 0 0 8px; }

.pullquote {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.38;
  color: var(--ink);
  margin: 30px 0;
  padding: 18px 0 18px 24px;
  border-left: 4px solid var(--accent);
  font-weight: 600;
  position: relative;
  background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
  border-radius: 0 6px 6px 0;
}

.body-link {
  color: var(--link);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.body-link:hover { color: var(--accent); }

.platforms {
  margin: 26px 0 30px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  background: var(--bg-2);
}
.platforms__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.platforms__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.platforms__list a {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--bg);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.platforms__list a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.platforms__list a.platforms__featured {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.platforms__list a.platforms__featured:hover {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
  color: #fff;
}
.hero__sub a.offer-link,
.pullquote a.offer-link {
  color: #ffd7d5;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero__sub a.offer-link:hover,
.pullquote a.offer-link:hover {
  color: #fff;
}

.clip {
  margin: 32px 0 36px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-top: 4px solid var(--accent);
  background: var(--bg);
  box-shadow: var(--shadow-md);
}
.clip--featured {
  background: linear-gradient(180deg, #fff8f8 0%, var(--bg) 42%);
}
.clip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  background: var(--accent-soft);
  border-bottom: 1px solid #f0d0d0;
}
.clip__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--accent);
}
.clip__date {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}
.clip__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 0;
  align-items: stretch;
}
.clip__media {
  margin: 0;
  background: #14161a;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.clip__media img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}
.clip__media figcaption {
  flex-shrink: 0;
  padding: 8px 12px 10px;
  font-size: 11.5px;
  line-height: 1.4;
  color: #c4c9d2;
  background: #14161a;
}
.clip__media .credit { color: #8b919a; }
.clip__media.is-imgfail { display: none; }
.clip__body { padding: 18px 18px 20px; }
.clip__kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
}
.clip__title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.22;
  font-weight: 700;
}
.clip__title a { color: inherit; text-decoration: none; }
.clip__title a:hover { color: var(--accent); }
.clip__text {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.clip__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 10px 14px;
  border-radius: 4px;
  text-decoration: none;
}
.clip__more:hover { background: var(--accent-ink); text-decoration: none; color: #fff; }
@media (max-width: 720px) {
  .clip__layout { grid-template-columns: 1fr; }
  .clip__media { height: auto; }
  .clip__media img {
    flex: none;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: none;
  }
}

.chart-card {
  border: 1px solid var(--line);
  padding: 20px;
  margin: 26px 0;
  background: var(--bg);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.chart-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.chart-card__title { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); }
.chart-card__src { font-size: 11.5px; color: var(--ink-3); }
.chart { display: flex; align-items: flex-end; gap: 16px; height: 220px; padding-top: 10px; border-bottom: 1px solid var(--line-strong); }
.bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 8px; height: 100%; }
.bar__fill { width: 100%; max-width: 72px; background: linear-gradient(180deg, #e0483d, var(--accent)); height: 0; transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1); border-radius: 4px 4px 0 0; }
.bar__val { font-weight: 700; font-size: 14px; color: var(--ink); }
.bar__lbl { font-size: 11.5px; color: var(--ink-3); text-align: center; line-height: 1.3; }
.chart__caption { font-size: 12.5px; color: var(--ink-3); margin-top: 12px; }

.facts { list-style: none; margin: 28px 0; padding: 0; border: 0; display: flex; flex-direction: column; gap: 18px; }
.facts li { display: grid; grid-template-columns: 132px 1fr; gap: 18px; padding: 0; border: 0; align-items: baseline; }
.facts__n {
  font-family: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  -webkit-font-smoothing: antialiased;
}
.facts__t { font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.card { border: 1px solid var(--line); padding: 18px; background: var(--bg); border-radius: 8px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__num { font-family: var(--serif); font-weight: 700; font-size: 14px; color: #fff; background: var(--accent); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 12px; }
.card p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.55; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--full { display: block; width: 100%; text-align: center; }

.promo {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: linear-gradient(120deg, var(--accent-soft), var(--bg-2) 60%);
  padding: 22px 24px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.promo__kicker { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--accent); font-weight: 700; margin-bottom: 4px; }
.promo__title { font-family: var(--serif); font-size: 21px; margin: 0 0 4px; }
.promo__text { margin: 0; font-size: 15px; color: var(--ink-2); max-width: 440px; }

.cta {
  border: 1px solid var(--line-strong);
  background: linear-gradient(120deg, #14161a, #23262d);
  color: #fff;
  padding: 28px;
  margin: 34px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.cta__text h3 { color: #fff; margin: 0 0 6px; font-size: 21px; }
.cta__text p { margin: 0; color: #c7ccd4; font-size: 15px; max-width: 430px; }
.cta__text a.offer-link { color: #ffd7d5; font-weight: 700; text-decoration: underline; }
.cta__text a.offer-link:hover { color: #fff; }
.cta-note { font-size: 12.5px; color: var(--ink-3); margin-top: 12px; }

.endcta {
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  margin: 40px 0 10px;
  padding: 24px;
  border-radius: 8px;
  background: var(--bg-2);
}
.endcta__title { font-family: var(--serif); font-size: 24px; margin: 0 0 6px; }
.endcta__text { margin: 0 0 16px; color: var(--ink-2); font-size: 16px; }
.endcta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.risk-list { margin: 20px 0; padding: 0; list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); }
.risk-list li { padding: 14px 0 14px 16px; border-bottom: 1px solid var(--line); border-left: 3px solid var(--accent); font-size: 16px; color: var(--ink-2); background: var(--bg); }
.risk-list strong { color: var(--ink); }

.disclaimer { margin: 44px 0 10px; padding: 20px 22px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; }
.disclaimer h2 { margin: 0 0 10px; font-size: 18px; border: 0; padding: 0; }
.disclaimer p { font-size: 13.5px; color: var(--ink-3); line-height: 1.6; margin: 0 0 10px; }
.disclaimer p:last-child { margin-bottom: 0; }

.rail-block { margin-bottom: 30px; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; box-shadow: var(--shadow-sm); }
.rail-head {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ink);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 6px;
}
.latest { list-style: none; margin: 0; padding: 0; counter-reset: latest; }
.latest li { border-bottom: 1px solid var(--line); counter-increment: latest; }
.latest li:last-child { border-bottom: 0; }
.latest a { display: grid; grid-template-columns: 26px 1fr; gap: 4px 10px; padding: 12px 0; text-decoration: none; align-items: start; }
.latest a::before { content: counter(latest); font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--accent); grid-row: span 2; }
.latest a:hover .latest__t { color: var(--accent); }
.latest__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-3); font-weight: 700; }
.latest__t { font-family: var(--serif); font-size: 16.5px; font-weight: 600; line-height: 1.3; color: var(--ink); }

.rail-block--promo { padding: 0; border: 0; box-shadow: none; }
.railpromo { border: 1px solid var(--line); border-top: 3px solid var(--accent); padding: 18px; background: linear-gradient(160deg, var(--accent-soft), var(--bg-2)); border-radius: 8px; box-shadow: var(--shadow-sm); }
.railpromo__kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--accent); font-weight: 700; }
.railpromo__title { font-family: var(--serif); font-size: 19px; font-weight: 700; margin: 6px 0 6px; line-height: 1.25; }
.railpromo__text { font-size: 14px; color: var(--ink-2); margin: 0 0 14px; }

.rail-sticky-ad { padding: 0; border: 0; box-shadow: none; }
.rail-ad { border: 1px dashed var(--line-strong); border-radius: 8px; padding: 16px; background: var(--bg); text-align: center; }
.rail-ad__label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: #9aa0a8; font-weight: 700; }
.rail-ad__link { display: block; text-decoration: none; margin-top: 10px; }
.rail-ad__title { display: block; font-family: var(--serif); font-weight: 700; font-size: 17px; color: var(--ink); line-height: 1.3; }
.rail-ad__text { display: block; font-size: 13.5px; color: var(--ink-2); margin: 6px 0 10px; }
.rail-ad__cta { display: inline-block; font-weight: 700; font-size: 13.5px; color: var(--accent); }
.rail-ad__link:hover .rail-ad__cta { text-decoration: underline; }

.section { padding: 44px 0; }
.section--news { }
.section--showcase { background: linear-gradient(180deg, rgba(20,22,26,0.02), transparent); }
.section__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.section__title { font-family: var(--serif); font-weight: 700; font-size: clamp(24px, 3.4vw, 32px); margin: 0; letter-spacing: -0.4px; }
.section__more { font-size: 14px; font-weight: 700; color: var(--accent); text-decoration: none; white-space: nowrap; }
.section__more:hover { text-decoration: underline; }
.section__hint { font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--ink-3); font-weight: 700; }

.ngrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ncard {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ncard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.ncard__media { position: relative; display: block; aspect-ratio: 16 / 10; background: #dfe3e8; overflow: hidden; }
.ncard__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ncard:hover .ncard__media img { transform: scale(1.05); }
.ncard__media.is-imgfail { background: linear-gradient(135deg, #dfe3e8, #eef0f3); }
.ncard__tag { position: absolute; top: 10px; left: 10px; background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 9px; border-radius: 3px; }
.ncard__body { display: flex; flex-direction: column; gap: 7px; padding: 16px 18px 20px; }
.ncard__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent); font-weight: 800; }
.ncard__title { font-family: var(--serif); font-weight: 700; font-size: 19px; line-height: 1.28; color: var(--ink); }
.ncard__ex { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

.sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scard {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 320px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.scard__media { position: absolute; inset: 0; z-index: -2; background: #23262d; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.scard:hover .scard__media img { transform: scale(1.06); }
.scard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,12,16,0.15) 0%, rgba(10,12,16,0.4) 45%, rgba(10,12,16,0.9) 100%); }
.scard__badge { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 11px; border-radius: 20px; }
.scard__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; display: flex; flex-direction: column; gap: 8px; color: #fff; }
.scard__title { font-family: var(--serif); font-weight: 700; font-size: 22px; line-height: 1.2; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.scard__text { font-size: 14.5px; color: #e7e9ee; line-height: 1.5; }
.scard__cta { font-weight: 800; font-size: 14px; color: #fff; margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; }
.scard:hover .scard__cta { color: #ffd7d5; }

.newsletter { background: linear-gradient(120deg, #14161a, #2a2e36); color: #fff; margin-top: 20px; }
.newsletter__inner { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.newsletter__title { font-family: var(--serif); font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 6px; }
.newsletter__sub { margin: 0; color: #c7ccd4; font-size: 16px; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__input { border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.08); color: #fff; padding: 13px 16px; border-radius: 4px; font-size: 15px; min-width: 240px; font-family: var(--sans); }
.newsletter__input::placeholder { color: #aab0ba; }
.newsletter__input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,0.14); }

.site-footer { margin-top: 0; border-top: 3px solid var(--ink); background: var(--bg-2); }
.site-footer__inner { max-width: 1200px; margin: 0 auto; padding: 30px 24px; }
.site-footer__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.brand--footer .brand__logo { height: 40px; max-height: 40px; }
.site-footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__links a { color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 600; }
.site-footer__links a:hover { color: var(--accent); }
.site-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.fcol h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink); margin: 0 0 12px; }
.fcol a { display: block; color: var(--ink-2); text-decoration: none; font-size: 14px; padding: 4px 0; }
.fcol a:hover { color: var(--accent); }
.site-footer__note { font-size: 13.5px; color: var(--ink-3); margin: 14px 0 4px; }
.site-footer__copy { font-size: 12.5px; color: #9aa0a8; margin: 4px 0 0; }

@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; gap: 40px; }
  .col-rail { position: static; max-width: 720px; margin: 0 auto; width: 100%; }
  .col-main { padding: 28px 24px; }
  .article { max-width: 720px; margin: 0 auto; }
  .ngrid { grid-template-columns: repeat(2, 1fr); }
  .sgrid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .breaking__inner { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .cards { grid-template-columns: 1fr; }
  .ngrid { grid-template-columns: 1fr; }
  .sgrid { grid-template-columns: 1fr; }
  .facts li { grid-template-columns: 1fr; gap: 4px; }
  .cta, .promo { flex-direction: column; align-items: flex-start; }
  .utility__ticker { display: none; }
  .masthead__tag { display: none; }
  .col-main { padding: 20px 16px; border-radius: 0; }
  .hero__inner { padding: 34px 18px 30px; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); margin-top: 22px; max-width: 100%; }
  .hfact { padding: 13px 14px 14px; }
  .hfact:nth-child(2n) { border-right: 0; }
  .newsletter__form { width: 100%; }
  .newsletter__input { flex: 1; min-width: 0; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .submodal__row { grid-template-columns: 1fr; }
  .submodal__panel { padding: 28px 20px 24px; }
}

body.is-modal-open { overflow: hidden; }

.submodal[hidden] { display: none !important; }
.submodal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}
.submodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 22, 0.52);
  backdrop-filter: blur(2px);
}
.submodal__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px 28px;
  animation: submodal-in 0.22s ease;
}
@keyframes submodal-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .submodal__panel { animation: none; }
}
.submodal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.submodal__close:hover { color: var(--ink); }
.submodal__kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
}
.submodal__title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}
.submodal__lead {
  margin: 0 0 20px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
}
.submodal__form { display: grid; gap: 12px; }
.submodal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.submodal__field {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.submodal__field input {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 11px 12px;
  border-radius: 3px;
}
.submodal__field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.submodal__note {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.submodal__done .submodal__title { margin-bottom: 10px; }
.submodal__done .btn { margin-top: 8px; }
