:root {
  --navy: #111b30;
  --navy-2: #1a2744;
  --gold: #ffc41c;
  --gold-soft: #fff5cf;
  --ink: #182238;
  --muted: #647087;
  --line: #e1e6ee;
  --page: #f5f7fa;
}
* { box-sizing: border-box; }
body {
  margin: 0; color: var(--ink); background: var(--page);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
}
a { color: inherit; }
.news-nav {
  position: sticky; top: 0; z-index: 20; background: var(--navy);
  border-top: 7px solid var(--gold);
}
.news-nav-inner {
  max-width: 1180px; min-height: 78px; margin: auto; padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.news-logo img { display: block; width: 195px; height: 58px; object-fit: contain; object-position: left; }
.news-links { display: flex; align-items: center; gap: 4px; }
.news-links a {
  padding: 8px 11px; border-radius: 7px; color: rgba(255,255,255,.82);
  text-decoration: none; font-size: 13px; font-weight: 700; white-space: nowrap;
}
.news-links a:hover, .news-links a.active { color: var(--gold); background: rgba(255,196,28,.08); }
.news-links .gold { color: #111; background: var(--gold); padding-inline: 15px; }
.news-links .gold:hover { color: #111; background: #ffd452; }
.menu-button {
  display: none; border: 1px solid rgba(255,255,255,.25); border-radius: 8px;
  color: white; background: transparent; padding: 8px 11px; font-size: 18px;
}
.news-hero {
  color: white; background:
    radial-gradient(circle at 86% 6%, rgba(255,196,28,.2), transparent 29%),
    var(--navy);
  padding: 72px 24px 66px;
}
.hero-inner { max-width: 1120px; margin: auto; }
.crumb { color: #abb6c8; font-size: 13px; margin-bottom: 18px; }
.eyebrow { color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.news-hero h1 {
  margin: 10px 0 16px; max-width: 900px; font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.1; letter-spacing: -.035em;
}
.news-hero p { max-width: 760px; margin: 0; color: #d6deea; font-size: 19px; line-height: 1.65; }
.category-main { max-width: 1180px; margin: auto; padding: 58px 24px 86px; }
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 25px; }
.section-title h2 { margin: 0; font-size: 32px; }
.section-title p { margin: 0; color: var(--muted); }
.featured {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  background: white; border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; box-shadow: 0 18px 55px rgba(25,35,58,.08);
}
.featured-copy { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.tag {
  align-self: flex-start; padding: 6px 10px; border-radius: 999px;
  background: var(--gold-soft); color: #735400; font-size: 12px; font-weight: 800;
}
.featured h2 { margin: 17px 0 12px; font-size: 39px; line-height: 1.25; letter-spacing: -.025em; }
.featured p { margin: 0 0 22px; color: #4d596f; line-height: 1.75; font-size: 17px; }
.meta { color: #7b8699; font-size: 13px; }
.read-more {
  align-self: flex-start; margin-top: 25px; padding: 12px 18px; border-radius: 9px;
  text-decoration: none; background: var(--navy); color: white; font-weight: 800;
}
.featured-image { background: #eef1f5; padding: 28px; display: grid; place-items: center; }
.featured-image img {
  width: 100%; max-width: 355px; border-radius: 13px;
  box-shadow: 0 14px 35px rgba(18,28,48,.16);
}
.future-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.future-card { min-height: 170px; padding: 26px; border-radius: 18px; border: 1px dashed #cad1dd; background: rgba(255,255,255,.6); }
.future-card strong { display: block; margin-bottom: 8px; font-size: 18px; }
.future-card span { color: var(--muted); font-size: 14px; line-height: 1.6; }
.article-layout {
  max-width: 1180px; margin: auto; padding: 54px 24px 82px;
  display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 50px; align-items: start;
}
.article {
  background: white; padding: 45px 50px; border: 1px solid var(--line);
  border-radius: 22px; box-shadow: 0 16px 45px rgba(23,34,56,.06);
}
.summary {
  margin: 0 0 32px; padding: 22px 24px; border-radius: 15px;
  background: var(--gold-soft); border-left: 6px solid var(--gold);
  color: #3e4758; font-size: 18px; line-height: 1.65;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin: 26px 0 32px; }
.stat { padding: 17px; border: 1px solid #efd47e; border-radius: 13px; background: #fffaf0; }
.stat b { display: block; font-size: 26px; color: var(--navy); }
.stat span { color: #7c6a42; font-size: 12px; }
.article h2 { margin: 40px 0 12px; font-size: 29px; line-height: 1.32; }
.article h3 { margin: 28px 0 8px; font-size: 21px; }
.article p { margin: 0 0 17px; color: #3e4a60; font-size: 17px; line-height: 1.78; }
.note { margin: 25px 0; padding: 18px 20px; border-radius: 13px; background: #f0f3f7; color: #526076; font-size: 14px; line-height: 1.65; }
.sources { margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); }
.sources li { margin-bottom: 12px; color: #4e5b71; line-height: 1.55; }
.sources a { color: #245ea8; }
.article-side { position: sticky; top: 112px; }
.poster-card { padding: 15px; border-radius: 18px; background: white; border: 1px solid var(--line); }
.poster-card img { display: block; width: 100%; border-radius: 11px; }
.side-note { margin-top: 20px; padding: 23px; border-radius: 16px; background: var(--navy-2); color: white; }
.side-note h3 { margin: 0 0 8px; }
.side-note p { margin: 0; color: #d5ddeb; line-height: 1.65; font-size: 14px; }
.news-footer { background: var(--navy); color: white; }
.footer-inner {
  max-width: 1180px; margin: auto; padding: 31px 24px;
  display: grid; grid-template-columns: .9fr 1.3fr; gap: 48px; align-items: center;
}
.footer-brand { color: var(--gold); font-size: 19px; font-weight: 800; margin-bottom: 7px; }
.footer-line { color: #e0e6ef; font-size: 13px; line-height: 1.6; overflow-wrap: anywhere; }
.compliance-logo {
  display: block; width: 220px; max-height: 100px; object-fit: contain;
  margin-bottom: 13px; border-radius: 8px; background: white;
}
@media (max-width: 900px) {
  .menu-button { display: block; }
  .news-links {
    display: none; position: absolute; left: 0; right: 0; top: 85px;
    padding: 14px 20px 20px; background: var(--navy); flex-direction: column; align-items: stretch;
  }
  .news-links.open { display: flex; }
  .news-links a { padding: 10px 12px; }
  .featured, .article-layout { grid-template-columns: 1fr; }
  .featured-image { order: -1; }
  .future-grid { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .poster-card { max-width: 460px; margin: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 17px; }
}
@media (max-width: 580px) {
  .news-logo img { width: 165px; }
  .news-hero { padding: 50px 18px 46px; }
  .category-main, .article-layout { padding-left: 14px; padding-right: 14px; }
  .featured-copy, .article { padding: 28px 22px; }
  .featured h2 { font-size: 30px; }
  .stats { grid-template-columns: 1fr; }
}
