.page-news {
  --news-radius-lg: 28px;
  --news-radius-md: 20px;
  --news-accent-glow: 0 0 28px rgba(0, 232, 143, 0.14);
  --news-grid-line: rgba(0, 232, 143, 0.04);
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(var(--news-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--news-grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  min-height: 100vh;
}

.page-news .page-news-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}

.page-news .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--muted);
}

.page-news .breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .breadcrumbs a:hover {
  color: var(--accent);
}

.page-news .breadcrumb-sep {
  opacity: 0.5;
}

.page-news .journal-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.page-news .journal-header::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-2), var(--accent));
  border-radius: 4px;
}

.page-news .journal-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.page-news .journal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text);
}

.page-news .h1-dot {
  color: var(--accent);
}

.page-news .journal-lead {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.page-news .pulse-panel {
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(150deg, rgba(19, 44, 69, 0.85), rgba(10, 26, 47, 0.95));
  border: 1px solid rgba(0, 232, 143, 0.16);
  border-radius: var(--news-radius-md);
  padding: 20px 20px 14px;
  overflow: hidden;
}

.page-news .pulse-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  opacity: 0.7;
}

.page-news .pulse-svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-news .pulse-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(140, 163, 192, 0.14);
}

.page-news .pulse-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.page-news .pulse-value {
  font-size: 12px;
  color: var(--muted);
}

.page-news .journal-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.page-news .journal-sidebar {
  flex-shrink: 0;
  width: 100%;
}

.page-news .section-categories {
  background:
    linear-gradient(160deg, rgba(19, 44, 69, 0.9), rgba(10, 26, 47, 0.75));
  border: 1px solid rgba(140, 163, 192, 0.14);
  border-radius: var(--news-radius-md);
  padding: 24px 20px;
  position: relative;
}

.page-news .section-categories::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 10% 0%, rgba(0, 232, 143, 0.08), transparent 60%);
}

.page-news .sidebar-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.page-news .section-categories h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--text);
}

.page-news .category-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .category-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease;
}

.page-news .category-link:hover {
  background: rgba(0, 232, 143, 0.1);
  color: var(--accent);
}

.page-news .category-index {
  font-size: 12px;
  color: var(--muted);
}

.page-news .category-name {
  flex: 1;
}

.page-news .category-count {
  font-size: 12px;
  color: var(--muted);
  background: rgba(140, 163, 192, 0.12);
  border-radius: 20px;
  padding: 2px 10px;
}

.page-news .sidebar-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(140, 163, 192, 0.14);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.page-news .journal-main {
  flex: 1;
  min-width: 0;
}

.page-news .section-announcements,
.page-news .section-topics,
.page-news .section-subscribe {
  margin-bottom: 56px;
}

.page-news .section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.page-news .section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 232, 143, 0.1);
  border: 1px solid rgba(0, 232, 143, 0.28);
  border-radius: 12px;
}

.page-news .section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--text);
}

.page-news .section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 232, 143, 0.35), transparent);
}

.page-news .feature-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(150deg, rgba(19, 44, 69, 0.85), rgba(10, 26, 47, 0.95));
  border: 1px solid rgba(0, 232, 143, 0.14);
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
}

.page-news .feature-body {
  padding: 26px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-news .feature-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}

.page-news .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.page-news .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(140, 163, 192, 0.14);
  color: var(--text);
}

.page-news .tag-version {
  background: rgba(255, 122, 0, 0.18);
  color: var(--accent-2);
}

.page-news .tag-live {
  background: rgba(0, 232, 143, 0.16);
  color: var(--accent);
}

.page-news .feature-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.6vw, 28px);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 12px;
  color: var(--text);
}

.page-news .feature-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 18px;
}

.page-news .text-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.page-news .text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.page-news .text-link:hover::after {
  transform: translateX(4px);
}

.page-news .feature-figure {
  margin: 0;
  position: relative;
}

.page-news .feature-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 26, 47, 0.5));
}

.page-news .feature-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-news .announcement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-news .compact-card {
  background: rgba(19, 44, 69, 0.6);
  border: 1px solid rgba(140, 163, 192, 0.1);
  border-radius: var(--news-radius-md);
  padding: 20px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-news .compact-card:hover {
  border-color: rgba(0, 232, 143, 0.32);
  transform: translateY(-2px);
  box-shadow: var(--news-accent-glow);
}

.page-news .compact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.page-news .article-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.page-news .compact-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.32;
  margin: 0 0 8px;
}

.page-news .compact-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.page-news .article-link {
  color: var(--text);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size 0.3s ease, color 0.2s ease;
}

.page-news .article-link:hover {
  color: var(--accent);
  background-size: 100% 2px;
}

.page-news .compact-card.has-thumb {
  display: flex;
  gap: 16px;
  align-items: center;
}

.page-news .compact-content {
  flex: 1;
  min-width: 0;
}

.page-news .compact-thumb {
  flex-shrink: 0;
  width: 110px;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 232, 143, 0.06);
}

.page-news .compact-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 320 / 220;
}

.page-news .topics-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-news .topic-card {
  display: flex;
  flex-direction: column;
  background: rgba(19, 44, 69, 0.5);
  border: 1px solid rgba(140, 163, 192, 0.1);
  border-radius: var(--news-radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-news .topic-card:hover {
  border-color: rgba(0, 232, 143, 0.28);
  transform: translateY(-2px);
  box-shadow: var(--news-accent-glow);
}

.page-news .topic-figure {
  margin: 0;
}

.page-news .topic-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-news .topic-body {
  padding: 20px;
}

.page-news .topic-body .article-index {
  display: inline-block;
  margin-bottom: 10px;
}

.page-news .topic-body .feature-tags {
  margin-bottom: 12px;
}

.page-news .topic-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
}

.page-news .topic-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.page-news .topic-body-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news .topic-main {
  flex: 1;
}

.page-news .topic-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.page-news .metric {
  background: rgba(0, 232, 143, 0.08);
  border: 1px solid rgba(0, 232, 143, 0.14);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 130px;
}

.page-news .metric-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.page-news .metric-label {
  font-size: 12px;
  color: var(--muted);
}

.page-news .subscribe-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(0, 232, 143, 0.1), rgba(19, 44, 69, 0.7) 44%, rgba(10, 26, 47, 0.95));
  border: 1px solid rgba(0, 232, 143, 0.22);
  border-radius: var(--news-radius-lg);
  overflow: hidden;
  padding: 0;
}

.page-news .subscribe-body {
  padding: 28px 24px;
}

.page-news .subscribe-body .section-number {
  margin-bottom: 14px;
}

.page-news .subscribe-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
}

.page-news .subscribe-body > p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 540px;
}

.page-news .subscribe-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.page-news .step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(10, 26, 47, 0.55);
  border: 1px solid rgba(140, 163, 192, 0.1);
  border-radius: 14px;
  font-size: 14px;
}

.page-news .step-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
}

.page-news .step-text {
  color: var(--text);
}

.page-news .subscribe-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #0A1A2F;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-news .btn:hover {
  box-shadow: 0 0 24px rgba(0, 232, 143, 0.45);
  transform: translateY(-2px);
}

.page-news .subscribe-note {
  font-size: 12px;
  color: var(--muted);
}

.page-news .subscribe-figure {
  flex-shrink: 0;
  margin: 0;
  position: relative;
}

.page-news .subscribe-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 26, 47, 0.5));
  z-index: 1;
}

.page-news .subscribe-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 300 / 220;
}

@media (min-width: 640px) {
  .page-news .page-news-inner {
    padding: 36px 32px 90px;
  }

  .page-news .announcement-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .page-news .compact-card.has-thumb {
    grid-column: 1 / -1;
  }

  .page-news .compact-thumb {
    width: 130px;
  }

  .page-news .subscribe-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-news .step {
    flex: 1;
    min-width: 160px;
  }
}

@media (min-width: 1024px) {
  .page-news .page-news-inner {
    padding: 48px 48px 110px;
  }

  .page-news .breadcrumbs {
    margin-bottom: 36px;
  }

  .page-news .journal-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
  }

  .page-news .journal-header-main {
    max-width: 680px;
  }

  .page-news .journal-lead {
    font-size: 16px;
  }

  .page-news .pulse-panel {
    width: 360px;
  }

  .page-news .journal-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 44px;
  }

  .page-news .journal-sidebar {
    width: 240px;
    position: sticky;
    top: 24px;
  }

  .page-news .sidebar-note {
    font-size: 12px;
  }

  .page-news .feature-card {
    flex-direction: row;
    align-items: stretch;
  }

  .page-news .feature-body {
    flex: 1.1;
    padding: 40px 38px;
  }

  .page-news .feature-figure {
    flex: 0.9;
  }

  .page-news .feature-figure img {
    height: 100%;
    aspect-ratio: auto;
  }

  .page-news .compact-card {
    padding: 22px;
  }

  .page-news .compact-card.has-thumb {
    grid-column: span 2;
  }

  .page-news .compact-thumb {
    width: 160px;
  }

  .page-news .topic-card {
    flex-direction: row;
    align-items: center;
  }

  .page-news .topic-figure {
    flex-shrink: 0;
    width: 280px;
  }

  .page-news .topic-figure img {
    height: 100%;
    aspect-ratio: 3 / 2;
  }

  .page-news .topic-body {
    flex: 1;
    padding: 28px;
  }

  .page-news .topic-body-split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-news .topic-stats {
    gap: 14px;
  }

  .page-news .subscribe-card {
    flex-direction: row;
    align-items: stretch;
  }

  .page-news .subscribe-body {
    flex: 1;
    padding: 44px 40px;
  }

  .page-news .subscribe-figure {
    flex: 0 0 300px;
  }
}
