/* ================================================================
   NEODUSTRIA NEWSROOM STYLES
   Used on: homepage (news bar) + /press-releases/ (full newsroom)
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLE — controls news-bar height everywhere.
   When bar is dismissed, html.news-bar-hidden sets it to 0px,
   which also resets the header offset to top: 0.
   ---------------------------------------------------------------- */
:root { --ntb-h: 46px; }

@media (max-width: 767px) { :root { --ntb-h: 42px; } }

/* Applied by JS (and early inline script) when bar is dismissed */
html.news-bar-hidden { --ntb-h: 0px; }
html.news-bar-hidden .news-ticker-bar { display: none !important; }

/* ----------------------------------------------------------------
   NEWS BAR
   position: fixed; top: 0  — floats above everything.
   z-index: 10050 so it sits above the header (z-index: 800).
   Height driven by --ntb-h so header offset stays in sync.
   ---------------------------------------------------------------- */
.news-ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ntb-h);
  z-index: 10050;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #050F19 0%, #081827 50%, #050F19 100%);
  border-bottom: 1px solid rgba(42, 141, 255, 0.28);
  overflow: hidden;
  transition: opacity 0.3s ease;
}

/* Fade out (opacity only); JS adds html.news-bar-hidden after 300 ms to remove from DOM */
.news-ticker-bar.ntb-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Inner: grid  [slot] [close]  — slot gets all available space */
.ntb-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  height: 100%;
}

/* Slot: clips absolute items, fills the grid column */
.ntb-slot {
  position: relative;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Individual carousel items — stacked absolutely, one visible at a time */
.ntb-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  min-width: 0;
}

.ntb-item.ntb-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ntb-item.ntb-leaving {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ntb-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(42, 141, 255, 0.75);
  color: #2A8DFF;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ntb-sep {
  flex-shrink: 0;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
}

.ntb-text {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ntb-link {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #2A8DFF;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ntb-link:hover { color: #6bbfff; }

.ntb-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  font-size: 11px;
}

.ntb-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .ntb-inner  { padding: 0 14px; gap: 10px; }
  .ntb-close  { display: none !important; }
  .ntb-text   { font-size: 12px; }
  .ntb-label  { font-size: 9px; padding: 0 9px; height: 20px; }
  .ntb-link   { font-size: 11px; }
}

/* ----------------------------------------------------------------
   HEADER OFFSET
   .header-area-3 is position:absolute; top:0 (style.css:4190).
   .sticky / .transformed are position:fixed; top:0 (style.css:4497).
   We override both to push the header below the fixed news bar.
   --ntb-h automatically becomes 0px when bar is hidden, so the
   header slides back to top:0 with no extra rule needed.
   ---------------------------------------------------------------- */
.header-area-3 {
  top: var(--ntb-h) !important;
}

.header-area-3 .header-main.sticky,
.header-area-3 .header-main.transformed {
  top: var(--ntb-h) !important;
}


/* ================================================================
   NEWSROOM HERO v2 — nrn-* namespace
   Press Releases flagship hero (reference: news-room-hero-design.png)
   Blue: #005dba — NO cyan, NO green
   ================================================================ */

/* Section */
.nrn-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020810;
}

/* Grid texture */
.nrn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,93,186,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,93,186,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

/* Atmospheric glow */
.nrn-atmo {
  position: absolute;
  top: 0; right: 0;
  width: 65%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 80% at 65% 45%, rgba(0,93,186,0.20) 0%, rgba(0,93,186,0.06) 50%, transparent 75%),
    radial-gradient(ellipse 40% 60% at 85% 25%, rgba(0,93,186,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Scanline shimmer */
.nrn-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,93,186,0.015) 3px, rgba(0,93,186,0.015) 4px
  );
  pointer-events: none;
  z-index: 0;
  animation: nrnScan 10s linear infinite;
}
@keyframes nrnScan {
  0%   { background-position-y: 0; }
  100% { background-position-y: 100px; }
}

.nrn-hero .container { position: relative; z-index: 2; }

/* 2-column inner grid */
.nrn-hero-inner {
  display: grid;
  grid-template-columns: 47fr 53fr;
  gap: 48px;
  padding: 165px 0 70px;
  align-items: center;
  min-height: 100vh;
}

/* ── LEFT COPY ───────────────────────────────────────── */
.nrn-hero-copy {
  display: flex;
  flex-direction: column;
}

/* Dot + label */
.nrn-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #005dba;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(0,93,186,0.65);
  margin-bottom: 10px;
}
.nrn-label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #005dba;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0,93,186,0.22), 0 0 12px rgba(0,93,186,0.75);
  animation: nrnDotPulse 2.5s ease-in-out infinite;
}
@keyframes nrnDotPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(0,93,186,0.22), 0 0 12px rgba(0,93,186,0.75); }
  50%       { box-shadow: 0 0 0 5px rgba(0,93,186,0.12), 0 0 24px rgba(0,93,186,1.00); }
}

/* Separator line */
.nrn-label-line {
  width: 52px; height: 1.5px;
  background: linear-gradient(90deg, #005dba 0%, rgba(0,93,186,0.18) 100%);
  box-shadow: 0 0 10px rgba(0,93,186,0.55);
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}
.nrn-label-line::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,93,186,0.90), transparent);
  animation: nrnLineSweep 3s linear infinite;
}
@keyframes nrnLineSweep {
  0%   { transform: translateX(-200%); }
  100% { transform: translateX(400%); }
}

/* Title */
.nrn-hero-title {
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}

/* Subtitle */
.nrn-hero-sub {
  font-size: 16px;
  color: rgba(185,200,220,0.82);
  line-height: 1.78;
  max-width: 460px;
  margin: 0 0 32px;
}

/* Category chips */
.nrn-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
}
.nrn-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1px solid rgba(0,93,186,0.32);
  background: rgba(0,93,186,0.06);
  color: rgba(200,215,235,0.88);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  border-radius: 100px;
  cursor: default;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
}
.nrn-chip:hover {
  border-color: rgba(0,93,186,0.65);
  background: rgba(0,93,186,0.12);
  box-shadow: 0 0 18px rgba(0,93,186,0.18);
}
.nrn-chip i {
  color: #005dba;
  font-size: 11px;
  filter: drop-shadow(0 0 4px rgba(0,93,186,0.65));
}

/* ── BOTTOM META STRIP ───────────────────────────────── */
.nrn-meta-strip { margin-top: auto; }

.nrn-meta-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(0,93,186,0.60) 0%, rgba(0,93,186,0.12) 55%, transparent 100%);
  box-shadow: 0 0 12px rgba(0,93,186,0.22);
  margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.nrn-meta-line::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,93,186,0.85), transparent);
  animation: nrnMetaSweep 4s linear infinite;
}
@keyframes nrnMetaSweep {
  0%   { transform: translateX(-150%); }
  100% { transform: translateX(350%); }
}

.nrn-meta-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
}
.nrn-meta-divider {
  width: 1px; height: 50px;
  background: rgba(0,93,186,0.20);
  margin: 0 20px;
  align-self: center;
}
.nrn-meta-item { display: flex; flex-direction: column; gap: 6px; }

.nrn-meta-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,93,186,0.10);
  border: 1px solid rgba(0,93,186,0.30);
  display: flex; align-items: center; justify-content: center;
  color: #005dba;
  font-size: 14px;
  box-shadow: 0 0 14px rgba(0,93,186,0.18), inset 0 0 8px rgba(0,93,186,0.06);
  margin-bottom: 8px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nrn-meta-item:hover .nrn-meta-icon {
  box-shadow: 0 0 24px rgba(0,93,186,0.40), inset 0 0 12px rgba(0,93,186,0.12);
  background: rgba(0,93,186,0.16);
}
.nrn-meta-title {
  font-size: 13px; font-weight: 700;
  color: rgba(240,245,255,0.92);
  line-height: 1.3;
}
.nrn-meta-desc {
  font-size: 11.5px;
  color: rgba(145,165,195,0.70);
  line-height: 1.55;
}

/* ── RIGHT VISUAL ────────────────────────────────────── */
.nrn-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

/* Volumetric atmospheric light — expands well beyond column bounds */
.nrn-hero-visual::before {
  content: '';
  position: absolute;
  top: -25%; left: -20%;
  width: 150%; height: 150%;
  background:
    radial-gradient(ellipse 60% 55% at 55% 48%, rgba(0,93,186,0.30) 0%, rgba(0,93,186,0.09) 48%, transparent 68%),
    radial-gradient(ellipse 36% 28% at 88% 14%, rgba(0,93,186,0.18) 0%, transparent 52%),
    radial-gradient(ellipse 28% 34% at 15% 85%, rgba(0,93,186,0.10) 0%, transparent 55%);
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
  animation: nrnAtmoBreath 8s ease-in-out infinite;
}

/* Left-edge dissolve — seam between copy and visual, sits above image */
.nrn-hero-visual::after {
  content: '';
  position: absolute;
  top: 0; left: -5%;
  width: 52%; height: 100%;
  background: linear-gradient(90deg,
    rgba(2,8,16,1.00) 0%,
    rgba(2,8,16,0.92) 18%,
    rgba(2,8,16,0.60) 42%,
    rgba(2,8,16,0.22) 68%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
}

@keyframes nrnAtmoBreath {
  0%, 100% { opacity: 0.75; transform: scale(1.00); }
  50%       { opacity: 1.00; transform: scale(1.10); }
}

/* Core volumetric glow — large, deep, pulsing */
.nrn-glow {
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  width: 950px; height: 950px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0,93,186,0.38) 0%,
    rgba(0,93,186,0.13) 35%,
    rgba(0,93,186,0.04) 60%,
    transparent 76%
  );
  filter: blur(100px);
  z-index: 0;
  animation: nrnGlowFloat 6s ease-in-out infinite;
}
@keyframes nrnGlowFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1.00); opacity: 0.75; }
  50%       { transform: translate(-50%, -48%) scale(1.12); opacity: 1.00; }
}

/* Main image — cinematic environment, no frame, bleeds into hero */
.nrn-hero-img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 128%;
  max-width: none;
  height: auto;
  display: block;
  transform: translateX(4%);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 68% 74% at 64% 50%,
    black 0%,
    black 18%,
    rgba(0,0,0,0.90) 38%,
    rgba(0,0,0,0.52) 58%,
    rgba(0,0,0,0.15) 74%,
    transparent 90%
  );
  mask-image: radial-gradient(ellipse 68% 74% at 64% 50%,
    black 0%,
    black 18%,
    rgba(0,0,0,0.90) 38%,
    rgba(0,0,0,0.52) 58%,
    rgba(0,0,0,0.15) 74%,
    transparent 90%
  );
  filter: brightness(1.08) saturate(1.15) contrast(1.02);
}

/* HUD corner brackets hidden — no rectangular frame signals */
.nrn-corner { display: none; }

/* ── FLOATING NEWS CARDS ─────────────────────────────── */
.nrn-card {
  position: absolute; z-index: 4;
  background: rgba(3,10,26,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,93,186,0.28);
  border-radius: 10px;
  padding: 13px 15px;
  min-width: 195px; max-width: 235px;
  box-shadow:
    0 0 0 1px rgba(0,93,186,0.10),
    0 8px 32px rgba(0,0,0,0.60),
    0 0 24px rgba(0,93,186,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nrn-card:hover {
  box-shadow:
    0 0 0 1px rgba(0,93,186,0.30),
    0 14px 44px rgba(0,0,0,0.70),
    0 0 36px rgba(0,93,186,0.20);
}

/* card float animations */
.nrn-card-1 { top: 8%; right: 0; animation: nrnFloat1 5.0s ease-in-out infinite; }
.nrn-card-2 { top: 40%; right: 0; animation: nrnFloat2 5.8s ease-in-out infinite; }
.nrn-card-3 { top: 66%; right: 0; animation: nrnFloat3 5.4s ease-in-out infinite; }
@keyframes nrnFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes nrnFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
@keyframes nrnFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.nrn-card:hover { animation-play-state: paused; }

/* Card internals */
.nrn-card-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 7px;
}
.nrn-card-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(0,93,186,0.14);
  border: 1px solid rgba(0,93,186,0.32);
  display: flex; align-items: center; justify-content: center;
  color: #005dba; font-size: 11px;
  box-shadow: 0 0 8px rgba(0,93,186,0.35);
  flex-shrink: 0;
}
.nrn-card-label {
  font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #005dba;
  text-shadow: 0 0 8px rgba(0,93,186,0.50);
}
.nrn-card-title {
  font-size: 12px; font-weight: 700;
  color: rgba(225,235,252,0.92);
  line-height: 1.42;
  margin-bottom: 8px;
}
.nrn-card-meta {
  font-size: 10px; color: rgba(130,150,185,0.65);
  display: flex; justify-content: space-between; align-items: center;
}
.nrn-card-arrow { color: #005dba; font-size: 11px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1280px) {
  .nrn-card { max-width: 210px; min-width: 175px; }
}
@media (max-width: 1280px) {
  .nrn-hero-img { width: 118%; transform: translateX(3%); }
}
@media (max-width: 1100px) {
  .nrn-card-2, .nrn-card-3 { display: none; }
  .nrn-hero-img { width: 108%; transform: translateX(2%); }
}
@media (max-width: 1024px) {
  .nrn-hero-inner {
    grid-template-columns: 1fr;
    padding: 140px 0 60px;
    gap: 40px;
  }
  .nrn-hero-visual {
    order: -1; min-height: 380px;
    justify-content: center;
    overflow: hidden;
    align-self: auto;
  }
  .nrn-hero-visual::after { display: none; }
  .nrn-hero-img { width: 82%; transform: translateX(0); mix-blend-mode: normal; }
  .nrn-card { display: none; }
  .nrn-card-1 { display: block; top: 5%; right: 5px; }
}
@media (max-width: 768px) {
  .nrn-hero-inner { padding: 125px 0 50px; gap: 32px; }
  .nrn-hero-title { font-size: clamp(32px, 8vw, 50px); }
  .nrn-hero-sub { font-size: 14px; max-width: 100%; }
  .nrn-hero-visual { min-height: 280px; }
  .nrn-hero-img { width: 90%; }
  .nrn-meta-grid { grid-template-columns: 1fr; gap: 18px; }
  .nrn-meta-divider { display: none; }
  .nrn-card { display: none; }
}
@media (max-width: 480px) {
  .nrn-hero-inner { padding: 110px 0 40px; }
  .nrn-chips { gap: 8px; }
}

/* ----------------------------------------------------------------
   NEWSROOM HERO v1 — split layout (Insights-style) — kept for ref
   ---------------------------------------------------------------- */
.nr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #02050A;
  background-image:
    radial-gradient(ellipse 75% 65% at 68% 40%, rgba(22, 139, 255, 0.11) 0%, transparent 68%),
    linear-gradient(rgba(22, 139, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 139, 255, 0.028) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}

.nr-hero-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding: 180px 0 80px;
  align-items: center;
  width: 100%;
}

/* Left copy column */
.nr-hero-copy {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.nr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.nr-breadcrumb a {
  color: rgba(255, 255, 255, 0.40);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nr-breadcrumb a:hover { color: rgba(255, 255, 255, 0.80); }

.nr-breadcrumb .nr-bc-sep { color: rgba(255, 255, 255, 0.22); }

.nr-breadcrumb .nr-bc-current { color: rgba(255, 255, 255, 0.65); }

/* Eyebrow */
.nr-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(22, 139, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(22, 139, 255, 0.40);
}

.nr-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(22, 139, 255, 0.85), rgba(22, 139, 255, 0.35));
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(22, 139, 255, 0.55);
}

/* Title */
.nr-hero-title {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.025em;
}

/* Subtitle */
.nr-hero-subtitle {
  font-size: 16px;
  color: rgba(169, 184, 200, 0.88);
  max-width: 460px;
  line-height: 1.75;
  margin: 0 0 28px;
}

/* Chips */
.nr-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nr-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border: 1px solid rgba(22, 139, 255, 0.28);
  background: rgba(22, 139, 255, 0.07);
  color: rgba(169, 184, 200, 0.85);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  border-radius: 100px;
  line-height: 1;
}

.nr-chip i {
  color: rgba(22, 139, 255, 0.75);
  font-size: 11px;
}

/* Right visual column */
.nr-hero-visual {
  position: relative;
  height: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.nr-hero-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 139, 255, 0.20) 0%, rgba(22, 139, 255, 0.06) 50%, transparent 70%);
  filter: blur(60px);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.nr-hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(22, 139, 255, 0.35);
  filter: brightness(0.82) saturate(0.88);
  box-shadow:
    0 0 0 1px rgba(22, 139, 255, 0.12),
    0 0 48px rgba(22, 139, 255, 0.18),
    0 24px 64px rgba(0, 0, 0, 0.55);
  -webkit-mask-image:
    radial-gradient(ellipse 90% 88% at 55% 48%, black 20%, rgba(0,0,0,0.85) 48%, rgba(0,0,0,0.40) 70%, transparent 100%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.45) 10%, black 30%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 90% 88% at 55% 48%, black 20%, rgba(0,0,0,0.85) 48%, rgba(0,0,0,0.40) 70%, transparent 100%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.45) 10%, black 30%);
  mask-composite: intersect;
}

/* HUD corners on newsroom hero image */
.nr-hud-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 3;
  pointer-events: none;
}

.nr-hud-tl { top: 8px; left: 8px; border-top: 2px solid rgba(22, 139, 255, 0.70); border-left: 2px solid rgba(22, 139, 255, 0.70); border-radius: 2px 0 0 0; }
.nr-hud-tr { top: 8px; right: 8px; border-top: 2px solid rgba(22, 139, 255, 0.70); border-right: 2px solid rgba(22, 139, 255, 0.70); border-radius: 0 2px 0 0; }
.nr-hud-bl { bottom: 8px; left: 8px; border-bottom: 2px solid rgba(22, 139, 255, 0.70); border-left: 2px solid rgba(22, 139, 255, 0.70); border-radius: 0 0 0 2px; }
.nr-hud-br { bottom: 8px; right: 8px; border-bottom: 2px solid rgba(22, 139, 255, 0.70); border-right: 2px solid rgba(22, 139, 255, 0.70); border-radius: 0 0 2px 0; }

/* Atmospheric overlay */
.nr-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background:
    linear-gradient(to right, #02050A 0%, rgba(2,5,10,0.30) 15%, transparent 45%),
    radial-gradient(ellipse at 80% 25%, rgba(22,139,255,0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1024px) {
  .nr-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .nr-hero-visual {
    order: -1;
    min-height: 380px;
  }
  .nr-hero-halo {
    width: 340px;
    height: 340px;
  }
}

@media (max-width: 768px) {
  .nr-hero-inner {
    padding: 130px 0 60px;
    gap: 36px;
  }
  .nr-hero-title { font-size: clamp(28px, 7vw, 42px); }
  .nr-hero-subtitle { font-size: 14px; }
  .nr-hero-visual { min-height: 280px; }
}

@media (max-width: 480px) {
  .nr-hero-inner { padding: 110px 0 48px; }
  .nr-hero-chips { gap: 8px; }
}


/* ----------------------------------------------------------------
   FILTER ROW
   ---------------------------------------------------------------- */
.nr-filter-row {
  background: #0E0F11;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
}

.nr-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nr-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.nr-filter-btn:hover {
  border-color: rgba(42, 141, 255, 0.35);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(42, 141, 255, 0.05);
}

.nr-filter-btn.nr-active {
  background: rgba(42, 141, 255, 0.13);
  border-color: rgba(42, 141, 255, 0.5);
  color: #4da6ff;
  font-weight: 600;
}

.nr-filter-btn i {
  font-size: 12px;
  opacity: 0.85;
}

.nr-filter-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 4px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .nr-filters { gap: 5px; }
  .nr-filter-btn { font-size: 12px; padding: 6px 12px; }
}


/* ----------------------------------------------------------------
   TIMELINE SECTION
   ---------------------------------------------------------------- */
.nr-timeline-section {
  background: #0E0F11;
  padding: 56px 0 80px;
}

/* Each timeline entry = date-col + card-col */
.nr-timeline-entry {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 0;
  padding-bottom: 28px;
  align-items: start;
}

.nr-timeline-entry[style*="display: none"] {
  display: none !important;
}

/* Date column */
.nr-entry-date-col {
  padding: 22px 24px 0 0;
  text-align: right;
  border-right: 1px solid rgba(42, 141, 255, 0.15);
  position: relative;
  min-height: 40px;
}

/* Timeline dot */
.nr-entry-date-col::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 30px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2A8DFF;
  box-shadow: 0 0 0 3px rgba(42, 141, 255, 0.18), 0 0 10px rgba(42, 141, 255, 0.25);
}

.nr-entry-date {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2A8DFF;
  line-height: 1.4;
  margin-bottom: 5px;
}

.nr-entry-cat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.3px;
}

/* Card column */
.nr-entry-card-col {
  padding: 0 0 0 28px;
}

/* The glass card */
.nr-release-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(42, 141, 255, 0.13);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.nr-release-card:hover {
  transform: translateY(-3px);
  background: rgba(42, 141, 255, 0.045);
  border-color: rgba(42, 141, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(42, 141, 255, 0.18);
}

.nr-card-img {
  overflow: hidden;
  position: relative;
  min-height: 160px;
}

.nr-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.nr-release-card:hover .nr-card-img img {
  transform: scale(1.05);
}

.nr-card-body {
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.nr-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nr-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #2A8DFF;
}

.nr-card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: #2A8DFF;
  border-radius: 999px;
  padding: 3px 10px;
}

.nr-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
}

.nr-card-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.nr-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.nr-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #2A8DFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.nr-card-link:hover { gap: 10px; color: #6bbfff; }

.nr-card-plus {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(42, 141, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(42, 141, 255, 0.65);
  font-size: 13px;
  transition: all 0.2s ease;
}

.nr-release-card:hover .nr-card-plus {
  background: rgba(42, 141, 255, 0.1);
  border-color: rgba(42, 141, 255, 0.55);
  color: #2A8DFF;
}

/* Responsive cards */
@media (max-width: 991px) {
  .nr-timeline-entry {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
  }

  .nr-entry-date-col {
    text-align: left;
    border-right: none;
    border-left: 2px solid rgba(42, 141, 255, 0.3);
    padding: 0 0 10px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 0;
  }

  .nr-entry-date-col::after { display: none; }

  .nr-entry-card-col { padding: 0; }

  .nr-release-card { grid-template-columns: 1fr; }

  .nr-card-img {
    height: 200px;
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .nr-card-img { height: 160px; }
  .nr-card-body { padding: 16px; }
  .nr-card-title { font-size: 15px; }
}


/* ----------------------------------------------------------------
   MODAL OVERLAY
   ---------------------------------------------------------------- */
.nr-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nr-modal-overlay.nr-open {
  opacity: 1;
  pointer-events: auto;
}

.nr-modal-panel {
  background: linear-gradient(145deg, #0c1a28 0%, #08131f 100%);
  border: 1px solid rgba(42, 141, 255, 0.2);
  border-radius: 20px;
  width: 100%;
  max-width: 920px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
  overflow: hidden;
  margin: auto;
}

.nr-modal-overlay.nr-open .nr-modal-panel {
  transform: translateY(0);
}

.nr-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
}

.nr-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Modal header (top section) */
.nr-modal-header {
  padding: 28px 28px 0;
}

.nr-modal-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.nr-modal-type-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.nr-modal-date-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
}

.nr-modal-cat-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2A8DFF;
  background: rgba(42, 141, 255, 0.1);
  border: 1px solid rgba(42, 141, 255, 0.32);
  border-radius: 999px;
  padding: 3px 10px;
}

.nr-modal-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  margin: 0 0 20px;
  padding-right: 40px;
}

/* Blue underline accent */
.nr-modal-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #2A8DFF;
  border-radius: 2px;
  margin-top: 14px;
}

.nr-modal-hero-img {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 0;
}

.nr-modal-hero-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Modal body = sidebar + content */
.nr-modal-body {
  padding: 24px 28px 28px;
  display: grid;
  grid-template-columns: 188px 1fr;
  gap: 32px;
  align-items: start;
}

/* Left sidebar */
.nr-modal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
}

.nr-modal-meta-item { display: flex; flex-direction: column; gap: 5px; }

.nr-modal-meta-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.nr-modal-meta-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nr-modal-meta-value i { color: #2A8DFF; font-size: 13px; }

.nr-modal-share {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}

.nr-share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 13px;
}

.nr-share-btn:hover {
  background: rgba(42, 141, 255, 0.12);
  border-color: rgba(42, 141, 255, 0.4);
  color: #2A8DFF;
}

/* Right content */
.nr-modal-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nr-modal-body-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
  margin: 0;
}

.nr-modal-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #2A8DFF;
  margin: 6px 0 2px;
  letter-spacing: 0.2px;
}

.nr-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.nr-impact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(42, 141, 255, 0.13);
  border-radius: 12px;
  padding: 14px 12px;
}

.nr-impact-icon {
  font-size: 17px;
  color: #2A8DFF;
  margin-bottom: 8px;
}

.nr-impact-title {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.3;
}

.nr-impact-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

.nr-modal-quote {
  background: rgba(42, 141, 255, 0.055);
  border-left: 3px solid rgba(42, 141, 255, 0.7);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin: 2px 0;
}

.nr-modal-quote blockquote {
  margin: 0 0 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  line-height: 1.7;
}

.nr-modal-quote cite {
  font-size: 12px;
  color: #2A8DFF;
  font-style: normal;
  font-weight: 600;
}

.nr-modal-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #2A8DFF;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  margin-top: 4px;
}

.nr-modal-download:hover { color: #6bbfff; gap: 11px; }

/* Mobile modal */
@media (max-width: 768px) {
  .nr-modal-overlay { padding: 12px 10px 30px; }

  .nr-modal-panel { border-radius: 14px; }

  .nr-modal-header { padding: 20px 18px 0; }

  .nr-modal-title { font-size: 20px; padding-right: 30px; }

  .nr-modal-hero-img img { height: 180px; }

  .nr-modal-body {
    grid-template-columns: 1fr;
    padding: 16px 18px 20px;
    gap: 20px;
  }

  .nr-modal-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .nr-modal-meta-item { min-width: 90px; }

  .nr-impact-grid { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------------
   SUBSCRIBE BLOCK
   ---------------------------------------------------------------- */
.nr-subscribe-block {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
  text-align: center;
}

.nr-subscribe-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.nr-subscribe-icon {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.nr-subscribe-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.nr-subscribe-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}

.nr-subscribe-link {
  font-size: 13px;
  font-weight: 600;
  color: #2A8DFF;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.nr-subscribe-link:hover { color: #6bbfff; }

@media (max-width: 575px) {
  .nr-subscribe-inner { flex-direction: column; text-align: center; }
}


/* ----------------------------------------------------------------
   MEDIA KIT
   ---------------------------------------------------------------- */
.nr-media-kit {
  padding: 80px 0;
  background: #0E0F11;
}

.nr-media-kit-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.nr-media-kit-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.nr-media-kit-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.nr-media-kit-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.nr-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.nr-btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nr-media-kit-inner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
}

/* ----------------------------------------------------------------
   BODY SCROLL LOCK (when modal open)
   ---------------------------------------------------------------- */
body.nr-modal-open {
  overflow: hidden;
}
