:root {
  --article-ink: #082752;
  --article-blue: #087ed1;
  --article-cyan: #55cdfd;
  --article-night: #031a3a;
  --article-muted: #60748d;
  --article-line: #d8e4ed;
  --article-pale: #f2f7fa;
  --article-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.news-article-page { margin: 0; color: var(--article-ink); background: #fff; }
.news-article-page.has-article-lightbox { overflow: hidden; }

.article-reading-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--article-cyan), var(--article-blue));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.article-breadcrumb {
  width: min(var(--article-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
  color: #677a91;
  font-size: 13px;
}
.article-breadcrumb a { color: inherit; text-decoration: none; }
.article-breadcrumb span { margin: 0 9px; color: #a9b8c5; }

.article-hero {
  position: relative;
  min-height: min(780px, calc(100vh - 100px));
  overflow: hidden;
  color: #fff;
  background: var(--article-night);
  isolation: isolate;
}
.article-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  margin: 0;
  overflow: hidden;
}
.article-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,19,45,.96) 0%, rgba(2,19,45,.78) 48%, rgba(2,19,45,.18) 86%),
    linear-gradient(180deg, transparent 58%, rgba(2,19,45,.52));
}
.article-hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, -4%, 0) scale(1.02);
  will-change: transform;
}
.article-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 78% 34%, rgba(69,198,255,.23), transparent 30%);
}
.article-hero-inner {
  width: min(var(--article-max), calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  padding: 92px 0 76px;
  display: flex;
  align-items: flex-end;
}
.article-hero-copy { max-width: 890px; }
.article-kicker {
  margin: 0 0 22px;
  color: var(--article-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.article-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 7.4vw, 104px);
  line-height: .92;
  letter-spacing: -.062em;
}
.article-standfirst {
  max-width: 740px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.62;
}
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 36px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-facts {
  position: relative;
  z-index: 2;
  width: min(var(--article-max), calc(100% - 48px));
  margin: -38px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.97);
  border: 1px solid var(--article-line);
  box-shadow: 0 25px 64px rgba(9,39,77,.1);
}
.article-facts > div {
  min-height: 126px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--article-line);
}
.article-facts > div:last-child { border-right: 0; }
.article-facts span {
  color: var(--article-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.article-facts strong {
  color: var(--article-ink);
  font-size: 18px;
  line-height: 1.25;
}

.article-layout {
  width: min(var(--article-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 120px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: start;
}
.article-rail {
  position: sticky;
  top: 150px;
  padding-top: 5px;
}
.article-rail-label {
  margin: 0 0 24px;
  color: var(--article-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.article-rail nav { border-top: 1px solid var(--article-line); }
.article-rail a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 17px 0;
  color: #74869a;
  border-bottom: 1px solid var(--article-line);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  text-decoration: none;
  transition: color .25s ease, padding .25s ease;
}
.article-rail a span {
  color: #a9b5c1;
  font-size: 10px;
  font-weight: 900;
}
.article-rail a:hover,
.article-rail a.is-active {
  padding-left: 8px;
  color: var(--article-blue);
}
.article-rail a.is-active span { color: var(--article-blue); }
.article-rail-back {
  display: inline-flex !important;
  grid-template-columns: none !important;
  margin-top: 24px;
  color: var(--article-ink) !important;
  border: 0 !important;
}

.article-body { min-width: 0; }
.article-lede {
  max-width: 860px;
  margin: 0 0 88px;
  color: var(--article-ink);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.044em;
}
.article-section {
  scroll-margin-top: 150px;
  margin: 0 0 94px;
}
.article-section-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--article-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.article-section-number::before {
  content: "";
  width: 38px;
  height: 3px;
  background: var(--article-blue);
}
.article-section h2 {
  max-width: 850px;
  margin: 0;
  color: var(--article-ink);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
}
.article-section p {
  max-width: 790px;
  margin: 28px 0 0;
  color: var(--article-muted);
  font-size: 17px;
  line-height: 1.82;
}
.article-section p strong { color: var(--article-ink); }
.article-product-list {
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--article-line);
  list-style: none;
}
.article-product-list li {
  position: relative;
  min-height: 82px;
  padding: 24px 28px 22px 24px;
  color: var(--article-ink);
  border-right: 1px solid var(--article-line);
  border-bottom: 1px solid var(--article-line);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}
.article-product-list li:nth-child(even) { border-right: 0; }
.article-product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 29px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--article-blue);
  border-radius: 50%;
}

.article-pullquote {
  margin: 86px 0;
  padding: 54px 58px;
  color: #fff;
  background: linear-gradient(125deg, var(--article-night), #0b568d);
}
.article-pullquote p {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4.1vw, 56px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.article-pullquote cite {
  display: block;
  margin-top: 24px;
  color: var(--article-cyan);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.article-media-break {
  position: relative;
  margin: 74px 0 92px;
  overflow: hidden;
  background: #e7eef3;
}
.article-media-break img {
  width: 100%;
  min-height: 460px;
  max-height: 680px;
  display: block;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.article-media-break:hover img { transform: scale(1.018); }
.article-media-break figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(3,26,58,.76);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.article-gallery {
  margin: 50px 0 94px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.article-gallery.is-three { grid-template-columns: repeat(3, 1fr); }
.article-gallery.is-one { grid-template-columns: 1fr; }
.article-gallery.is-one button { min-height: 420px; }
.article-gallery button {
  position: relative;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #e7eef3;
  cursor: zoom-in;
}
.article-gallery.is-three button { min-height: 320px; }
.article-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.article-gallery button::after {
  content: "VIEW";
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-width: 58px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(3,26,58,.78);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.article-gallery button:hover img { transform: scale(1.03); filter: saturate(1.08); }
.article-gallery button:hover::after,
.article-gallery button:focus-visible::after { opacity: 1; transform: none; }

.article-close {
  margin-top: 74px;
  padding: 64px;
  color: #fff;
  background: linear-gradient(125deg, #05244d, #0875bd);
}
.article-close h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.052em;
}
.article-close p {
  max-width: 720px;
  margin: 24px 0 32px;
  color: rgba(255,255,255,.76);
  line-height: 1.72;
}
.article-close a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 225px;
  min-height: 56px;
  padding: 0 20px;
  color: var(--article-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.article-story-nav {
  width: min(var(--article-max), calc(100% - 48px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--article-line);
}
.article-story-nav a {
  min-height: 180px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--article-ink);
  text-decoration: none;
  transition: background .28s ease, padding .28s ease;
}
.article-story-nav a + a { border-left: 1px solid var(--article-line); text-align: right; }
.article-story-nav a:hover { padding-left: 44px; background: var(--article-pale); }
.article-story-nav a + a:hover { padding-right: 44px; padding-left: 36px; }
.article-story-nav span {
  color: var(--article-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.article-story-nav strong {
  max-width: 460px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.article-story-nav a + a strong { align-self: flex-end; }

.article-lightbox[hidden] { display: none; }
.article-lightbox {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 56px 82px;
  color: #fff;
  background: rgba(1,12,29,.95);
}
.article-lightbox figure {
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 100px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  display: block;
  object-fit: contain;
}
.article-lightbox figcaption {
  margin-top: 16px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.article-lightbox button {
  position: absolute;
  width: 48px;
  height: 48px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(3,26,58,.55);
  font-size: 24px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.article-lightbox button:hover { background: var(--article-blue); border-color: var(--article-blue); }
.article-lightbox-close { top: 26px; right: 28px; }
.article-lightbox-prev { left: 24px; top: calc(50% - 24px); }
.article-lightbox-next { right: 24px; top: calc(50% - 24px); }

.article-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.article-reveal.is-visible { opacity: 1; transform: none; }

:focus-visible {
  outline: 3px solid var(--article-cyan);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .article-facts { grid-template-columns: 1fr 1fr; }
  .article-facts > div:nth-child(2) { border-right: 0; }
  .article-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--article-line); }
  .article-layout { grid-template-columns: 1fr; gap: 68px; }
  .article-rail { position: static; display: grid; grid-template-columns: 1fr auto; gap: 20px; }
  .article-rail nav { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); }
  .article-rail a { padding-right: 14px; border-right: 1px solid var(--article-line); }
  .article-rail a:last-child { border-right: 0; }
  .article-rail-back { margin: 0; }
  .article-gallery.is-three { grid-template-columns: 1fr 1fr; }
  .article-gallery.is-three button:last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .article-breadcrumb,
  .article-hero-inner,
  .article-facts,
  .article-layout,
  .article-story-nav { width: calc(100% - 32px); }
  .article-hero { min-height: 620px; }
  .article-hero-media::after {
    background: linear-gradient(180deg, rgba(2,19,45,.28), rgba(2,19,45,.94) 82%);
  }
  .article-hero-media img { height: 106%; object-position: center; }
  .article-hero-inner { padding: 62px 0 50px; }
  .article-hero h1 { font-size: clamp(46px, 14.5vw, 68px); }
  .article-standfirst { font-size: 16px; }
  .article-facts { margin-top: 0; grid-template-columns: 1fr; box-shadow: none; }
  .article-facts > div { min-height: 98px; border-right: 0; border-bottom: 1px solid var(--article-line); }
  .article-facts > div:last-child { border-bottom: 0; }
  .article-layout { padding: 78px 0 82px; }
  .article-rail { display: block; }
  .article-rail nav { display: block; }
  .article-rail a { border-right: 0; }
  .article-rail-back { margin-top: 20px; }
  .article-lede { margin-bottom: 66px; font-size: clamp(27px, 8.5vw, 38px); }
  .article-section { margin-bottom: 72px; }
  .article-section p { font-size: 16px; }
  .article-product-list { grid-template-columns: 1fr; }
  .article-product-list li { border-right: 0; }
  .article-pullquote { margin: 62px 0; padding: 38px 24px; }
  .article-media-break { margin: 56px 0 70px; }
  .article-media-break img { min-height: 400px; }
  .article-gallery,
  .article-gallery.is-three { grid-template-columns: 1fr; }
  .article-gallery.is-three button:last-child { grid-column: auto; }
  .article-gallery button,
  .article-gallery.is-three button { min-height: 390px; }
  .article-close { padding: 42px 24px; }
  .article-story-nav { grid-template-columns: 1fr; }
  .article-story-nav a + a { border-top: 1px solid var(--article-line); border-left: 0; }
  .article-lightbox { padding: 70px 18px 48px; }
  .article-lightbox-prev { left: 12px; }
  .article-lightbox-next { right: 12px; }
  .article-lightbox-close { top: 14px; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .article-reveal { opacity: 1; transform: none; }
  .article-hero-media img { transform: none !important; }
}
