/* ============================================================
   newsroom-article.css — Premium Editorial Article Modal
   Neodustria: dark glass, electric blue, cinematic
   ============================================================ */

/* ── Overlay ────────────────────────────────────────────────── */
.nra-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 3, 10, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s ease;
}
.nra-overlay.nra-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Panel ──────────────────────────────────────────────────── */
.nra-panel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: 88vh;
  background: rgba(3, 7, 20, 0.99);
  border: 1px solid rgba(22, 139, 255, 0.26);
  border-radius: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow:
    0 0 0 1px rgba(22, 139, 255, 0.06),
    0 36px 90px rgba(0, 0, 0, 0.75),
    0 0 140px rgba(22, 139, 255, 0.07);
  transform: translateY(28px) scale(0.975);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 139, 255, 0.28) transparent;
  outline: none;
}
.nra-overlay.nra-open .nra-panel {
  transform: translateY(0) scale(1);
}
.nra-panel::-webkit-scrollbar { width: 4px; }
.nra-panel::-webkit-scrollbar-thumb { background: rgba(22, 139, 255, 0.28); border-radius: 2px; }

/* ── Close Button ───────────────────────────────────────────── */
.nra-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 18px 18px 0 0;
  background: rgba(4, 10, 26, 0.92);
  border: 1px solid rgba(22, 139, 255, 0.28);
  border-radius: 50%;
  color: rgba(169, 184, 200, 0.80);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.nra-close:hover {
  background: rgba(22, 139, 255, 0.14);
  border-color: rgba(22, 139, 255, 0.58);
  color: #fff;
  box-shadow: 0 0 20px rgba(22, 139, 255, 0.18);
}

/* ─────────────────────────────────────────────────────────────
   SECTION 1 — Editorial Hero
   ───────────────────────────────────────────────────────────── */
.nra-hero-section {
  padding: 44px 56px 0;
  clear: both;
}

/* Logo row */
.nra-logos {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.nra-logo-item {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nra-logo-item img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nra-logo-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 20px;
  flex-shrink: 0;
}

/* Featured partner logo — glowing blue frame with pulse animation */
.nra-logo-featured {
  border: 1.5px solid rgba(22, 139, 255, 0.52);
  border-radius: 12px;
  padding: 10px 18px;
  background: rgba(22, 139, 255, 0.045);
  animation: nra-logo-glow-pulse 3s ease-in-out infinite;
  transition: border-color 0.3s;
}
.nra-logo-featured:hover {
  animation-play-state: paused;
  border-color: rgba(22, 139, 255, 0.90);
  box-shadow:
    0 0 22px rgba(22, 139, 255, 0.42),
    0 0 60px rgba(22, 139, 255, 0.14);
}
.nra-logo-featured img {
  display: block;
}

@keyframes nra-logo-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 8px  rgba(22, 139, 255, 0.22),
      0 0 24px rgba(22, 139, 255, 0.08);
    border-color: rgba(22, 139, 255, 0.45);
  }
  50% {
    box-shadow:
      0 0 18px rgba(22, 139, 255, 0.55),
      0 0 48px rgba(22, 139, 255, 0.20),
      0 0 80px rgba(22, 139, 255, 0.07);
    border-color: rgba(22, 139, 255, 0.85);
  }
}

/* Badge logo (icon + text lines) */
.nra-logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nra-logo-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(22, 139, 255, 0.12);
  border: 1px solid rgba(22, 139, 255, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nra-logo-badge-icon i {
  color: rgba(22, 139, 255, 0.90);
  font-size: 13px;
}
.nra-logo-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nra-logo-badge-text span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

/* Category badge */
.nra-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.88);
  margin-bottom: 14px;
}
.nra-category-badge i { font-size: 12px; }

/* Headline */
.nra-headline {
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.14;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  max-width: 820px;
}

/* Split-color headline: prefix in blue, linked part in white */
.nra-headline-prefix {
  color: #168BFF;
}
.nra-headline-link {
  color: rgba(255, 255, 255, 0.97);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-color 0.22s;
}
.nra-headline-link:hover {
  color: rgba(255, 255, 255, 0.97);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.nra-panel[data-theme="swiss-hq"] .nra-headline {
  color: rgba(22, 139, 255, 0.95);
}
.nra-panel[data-theme="research"] .nra-headline {
  color: #fff;
}

/* Subtitle */
.nra-subtitle {
  font-size: 16.5px;
  color: rgba(169, 184, 200, 0.72);
  line-height: 1.58;
  margin: 0 0 10px;
  max-width: 720px;
}

/* Date */
.nra-hero-date {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(169, 184, 200, 0.40);
  margin-bottom: 30px;
}

/* Hero image */
.nra-hero-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  max-height: 460px;
}
.nra-hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.nra-hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 10, 28, 0.55) 0%,
    rgba(22, 139, 255, 0.05) 60%,
    transparent 100%
  );
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 2 — Executive Summary
   ───────────────────────────────────────────────────────────── */
.nra-summary-section {
  padding: 48px 56px 0;
}
.nra-summary-headline {
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.nra-summary-lead {
  font-size: 17.5px;
  color: rgba(210, 222, 238, 0.84);
  line-height: 1.78;
  margin: 0 0 26px;
  max-width: 820px;
}
.nra-key-takeaway {
  background: rgba(22, 139, 255, 0.07);
  border: 1px solid rgba(22, 139, 255, 0.30);
  border-left: 3px solid rgba(22, 139, 255, 0.80);
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow:
    0 0 44px rgba(22, 139, 255, 0.10),
    inset 0 1px 0 rgba(22, 139, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 820px;
}
.nra-key-takeaway i {
  color: rgba(22, 139, 255, 0.92);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.nra-key-takeaway p {
  font-size: 15.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.68;
  margin: 0;
  font-style: normal;
  letter-spacing: -0.005em;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 3 — Article Body
   ───────────────────────────────────────────────────────────── */
.nra-body-section {
  padding: 40px 56px 0;
}
.nra-body-section p {
  font-size: 16.5px;
  color: rgba(185, 200, 222, 0.80);
  line-height: 1.84;
  margin: 0 0 22px;
  max-width: 820px;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 4 — Highlights
   ───────────────────────────────────────────────────────────── */
.nra-highlights-section {
  padding: 48px 56px 0;
}
.nra-highlights-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.78);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nra-highlights-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(22, 139, 255, 0.50);
}
.nra-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.nra-highlight-card {
  background: rgba(4, 10, 24, 0.90);
  border: 1px solid rgba(22, 139, 255, 0.14);
  border-radius: 12px;
  padding: 20px 16px;
  transition: border-color 0.24s, box-shadow 0.24s, transform 0.24s;
}
.nra-highlight-card:hover {
  border-color: rgba(22, 139, 255, 0.36);
  box-shadow: 0 0 22px rgba(22, 139, 255, 0.09);
  transform: translateY(-2px);
}
.nra-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(22, 139, 255, 0.09);
  border: 1px solid rgba(22, 139, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}
.nra-highlight-icon i {
  color: rgba(22, 139, 255, 0.88);
  font-size: 14px;
}
.nra-highlight-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}
.nra-highlight-desc {
  font-size: 11.5px;
  color: rgba(169, 184, 200, 0.62);
  line-height: 1.52;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 5 — Quote
   ───────────────────────────────────────────────────────────── */
.nra-quote-section {
  padding: 48px 56px 0;
}
.nra-quote-block {
  position: relative;
  background: rgba(4, 10, 26, 0.94);
  border: 1px solid rgba(22, 139, 255, 0.26);
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow:
    0 0 64px rgba(22, 139, 255, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  overflow: hidden;
}
.nra-quote-block::before {
  content: '\201C';
  position: absolute;
  top: -16px;
  left: 28px;
  font-size: 130px;
  font-weight: 900;
  color: rgba(22, 139, 255, 0.09);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
  user-select: none;
}
.nra-quote-text {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.58;
  font-style: italic;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}
.nra-quote-author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.78);
  position: relative;
  z-index: 1;
  font-style: normal;
}

/* Rich attribution row: photo + name + title */
.nra-quote-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.nra-quote-author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(22, 139, 255, 0.38);
  box-shadow: 0 0 16px rgba(22, 139, 255, 0.18);
  flex-shrink: 0;
}

.nra-quote-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nra-quote-author-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.nra-quote-author-title {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.80);
}

/* ─────────────────────────────────────────────────────────────
   SECTION 6 — CTA
   ───────────────────────────────────────────────────────────── */
.nra-cta-section {
  padding: 48px 56px 60px;
}
.nra-cta-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 139, 255, 0.22), transparent);
  margin-bottom: 36px;
}
.nra-cta-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.78);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nra-cta-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(22, 139, 255, 0.50);
}
.nra-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nra-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: rgba(22, 139, 255, 0.12);
  border: 1px solid rgba(22, 139, 255, 0.46);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.24s, border-color 0.24s, box-shadow 0.24s;
}
.nra-cta-primary:hover {
  background: rgba(22, 139, 255, 0.22);
  border-color: rgba(22, 139, 255, 0.78);
  box-shadow: 0 0 28px rgba(22, 139, 255, 0.20);
  color: #fff;
}
.nra-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid rgba(169, 184, 200, 0.20);
  border-radius: 8px;
  color: rgba(169, 184, 200, 0.78);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.24s, color 0.24s;
}
.nra-cta-secondary:hover {
  border-color: rgba(22, 139, 255, 0.38);
  color: #ffffff;
}

/* ─────────────────────────────────────────────────────────────
   INLINE LINKS  (auto-linked partner/place names in text)
   ───────────────────────────────────────────────────────────── */

/* In headline — white, underline decoration */
.nra-headline .nra-inline-link {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.30);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-color 0.22s;
}
.nra-headline .nra-inline-link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.75);
}
/* swiss-hq theme headline is already blue — keep link white so it stands out */
.nra-panel[data-theme="swiss-hq"] .nra-headline .nra-inline-link {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.28);
}
.nra-panel[data-theme="swiss-hq"] .nra-headline .nra-inline-link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.70);
}

/* In body, summary, quote — blue + underline */
.nra-summary-lead .nra-inline-link,
.nra-key-takeaway p .nra-inline-link,
.nra-body-section p .nra-inline-link,
.nra-quote-text .nra-inline-link {
  color: rgba(22, 139, 255, 0.90);
  text-decoration: underline;
  text-decoration-color: rgba(22, 139, 255, 0.32);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.20s, text-decoration-color 0.20s;
}
.nra-summary-lead .nra-inline-link:hover,
.nra-key-takeaway p .nra-inline-link:hover,
.nra-body-section p .nra-inline-link:hover,
.nra-quote-text .nra-inline-link:hover {
  color: #ffffff;
  text-decoration-color: rgba(22, 139, 255, 0.75);
}

/* Highlighted inline links: white + bold (partner names, ecosystem references) */
.nra-inline-link--highlight,
.nra-summary-lead .nra-inline-link--highlight,
.nra-key-takeaway p .nra-inline-link--highlight,
.nra-body-section p .nra-inline-link--highlight,
.nra-quote-text .nra-inline-link--highlight {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22) !important;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.20s;
}
.nra-inline-link--highlight:hover,
.nra-summary-lead .nra-inline-link--highlight:hover,
.nra-key-takeaway p .nra-inline-link--highlight:hover,
.nra-body-section p .nra-inline-link--highlight:hover,
.nra-quote-text .nra-inline-link--highlight:hover {
  text-decoration-color: rgba(255, 255, 255, 0.65) !important;
}

/* ─────────────────────────────────────────────────────────────
   TEAM SECTION  (InnoJura accelerator and similar)
   ───────────────────────────────────────────────────────────── */
.nra-team-section {
  padding: 48px 56px 0;
}

.nra-team-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(22, 139, 255, 0.72);
  margin: 0 0 24px;
}

.nra-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.nra-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px 18px;
  background: rgba(4, 10, 26, 0.85);
  border: 1px solid rgba(22, 139, 255, 0.18);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}

.nra-team-card:hover {
  border-color: rgba(22, 139, 255, 0.50);
  box-shadow: 0 4px 30px rgba(22, 139, 255, 0.12), 0 0 60px rgba(22, 139, 255, 0.06);
  transform: translateY(-3px);
}

.nra-team-photo-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nra-team-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(22, 139, 255, 0.32);
  box-shadow: 0 0 14px rgba(22, 139, 255, 0.15);
  display: block;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.nra-team-card:hover .nra-team-photo {
  border-color: rgba(22, 139, 255, 0.70);
  box-shadow: 0 0 22px rgba(22, 139, 255, 0.35);
}

.nra-team-name {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  line-height: 1.35;
}

.nra-team-li {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(22, 139, 255, 0.14);
  border: 1px solid rgba(22, 139, 255, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(22, 139, 255, 0.85);
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.nra-team-card:hover .nra-team-li {
  background: rgba(22, 139, 255, 0.28);
  border-color: rgba(22, 139, 255, 0.65);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   THEME: accelerator
   ───────────────────────────────────────────────────────────── */
.nra-panel[data-theme="accelerator"] {
  background: linear-gradient(
    160deg,
    rgba(0, 12, 8, 0.99)  0%,
    rgba(0, 18, 30, 0.99) 60%,
    rgba(0, 5, 15, 0.99)  100%
  );
}

.nra-panel[data-theme="accelerator"] .nra-category-badge {
  background: rgba(45, 232, 134, 0.10);
  border-color: rgba(45, 232, 134, 0.35);
  color: rgba(45, 232, 134, 0.90);
}

.nra-panel[data-theme="accelerator"] .nra-headline {
  color: rgba(255, 255, 255, 0.97);
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nra-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nra-team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 768px) {
  .nra-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .nra-panel {
    border-radius: 20px 20px 0 0;
    max-height: 93vh;
    max-width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .nra-hero-section,
  .nra-summary-section,
  .nra-body-section,
  .nra-highlights-section,
  .nra-team-section,
  .nra-quote-section,
  .nra-cta-section {
    padding-left: 22px;
    padding-right: 22px;
  }
  .nra-hero-img-wrap,
  .nra-hero-img-wrap img { height: 220px; }
  .nra-highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .nra-team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nra-team-photo-wrap { width: 60px; height: 60px; }
  .nra-cta-actions { flex-direction: column; align-items: stretch; }
  .nra-quote-block { padding: 28px 22px; }
  .nra-cta-section { padding-bottom: 40px; }
}

@media (max-width: 480px) {
  .nra-highlights-grid { grid-template-columns: 1fr; }
  .nra-logo-item img   { height: 22px; }
  .nra-hero-section    { padding-top: 28px; }
}
