.news-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 194, 212, 0.12), transparent 32%),
    radial-gradient(circle at 85% 45%, rgba(0, 242, 255, 0.07), transparent 30%),
    var(--deep-blue);
}

.news-topbar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 242, 255, 0.14);
  background: rgba(1, 11, 26, 0.86);
  backdrop-filter: blur(14px);
}

.news-topbar__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.news-brand,
.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 800;
}

.news-brand {
  color: #ffffff;
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.015em;
  text-shadow: 0 2px 14px rgba(45, 212, 191, 0.28);
  transition: color 160ms ease, transform 160ms ease;
}

.news-brand:hover,
.news-brand:focus-visible {
  color: #99f6e4;
  outline: none;
  transform: translateY(-1px);
}

.news-back-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.news-back-link:hover {
  color: var(--glow-cyan);
}

.news-main {
  padding: 72px 0 96px;
}

.news-archive-hero {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.news-archive-hero h1,
.article-header h1 {
  margin-bottom: 18px;
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  background: linear-gradient(135deg, #fff, var(--glow-cyan));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(2.25rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.news-archive-hero p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.news-archive-list {
  margin-top: 38px;
}

.news-archive-note {
  margin-top: 28px;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.92rem;
}

.article-shell {
  max-width: 940px;
}

.article-header {
  max-width: 850px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  text-align: left;
}

.article-header h1 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
}

.article-header__icon {
  width: 112px;
  height: 112px;
  display: block;
  object-fit: cover;
  object-position: center 32%;
  border: 1px solid rgba(0, 242, 255, 0.42);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34), 0 0 20px rgba(0, 242, 255, 0.12);
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--glow-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-deck {
  color: var(--text-muted);
  font-size: clamp(1.02rem, 2.4vw, 1.25rem);
  line-height: 1.7;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px clamp(22px, 5vw, 58px);
  background: rgba(6, 25, 45, 0.72);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.article-body p {
  margin-bottom: 22px;
  color: #c4dfec;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.86;
}

.article-body .article-link {
  color: var(--glow-cyan);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(0, 242, 255, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.article-body .article-link:hover,
.article-body .article-link:focus-visible {
  color: #9cfaff;
  text-decoration-color: currentColor;
}

.article-body .article-link:focus-visible {
  outline: 2px solid var(--glow-cyan);
  outline-offset: 3px;
  border-radius: 3px;
}

.article-body .article-lead {
  color: var(--text-light);
}

.article-body h2 {
  margin-top: 42px;
  margin-bottom: 16px;
  font-family: "Trebuchet MS", Inter, system-ui, sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
}

.article-highlight {
  margin: 34px 0;
  padding: 24px 26px;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.12), rgba(0, 194, 212, 0.06));
  border-left: 4px solid var(--glow-cyan);
  border-radius: 0 18px 18px 0;
}

.article-highlight p {
  margin: 0;
  color: var(--text-light);
  font-weight: 600;
}

.article-source {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 242, 255, 0.16);
}

.article-source a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--glow-cyan);
  text-decoration: none;
  font-weight: 700;
}

.article-source a:hover {
  color: #fff;
}

.dynamic-article-shell {
  min-height: 54vh;
}

.dynamic-publication-status {
  max-width: 680px;
  margin: 72px auto;
  padding: 24px;
  border: 1px solid rgba(0, 242, 255, 0.16);
  border-radius: 18px;
  background: rgba(3, 18, 31, 0.82);
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.dynamic-publication-body p {
  white-space: pre-line;
}

.dynamic-publication-body:empty {
  display: none;
}

.news-page-footer {
  padding: 30px 0;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 242, 255, 0.12);
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .news-topbar__inner {
    min-height: 64px;
  }

  .news-back-link span {
    display: none;
  }

  .news-main {
    padding: 54px 0 72px;
  }

  .article-body {
    border-radius: 22px;
  }
}

@media (max-width: 600px) {
  .article-header {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .article-header__icon {
    width: 84px;
    height: 84px;
    justify-self: center;
    border-radius: 18px;
  }

  .article-kicker {
    justify-content: center;
  }

  .article-header h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
}