.page-news {
  --news-grid-gap: clamp(16px, 3vw, 28px);
  --news-header-h: 78px;
  --news-accent-cyan: #4CC9F0;
  --news-scan-line: rgba(57, 255, 20, 0.06);
  --news-card-bg: #0D2147;
  --news-line-purple: rgba(123, 47, 247, 0.4);
}

.page-news {
  background: var(--bg);
  position: relative;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  letter-spacing: 0.01em;
  padding-bottom: clamp(48px, 8vw, 96px);
  overflow-x: hidden;
}

.page-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon) 0%, var(--accent) 45%, transparent 100%);
  z-index: 2;
}

.page-news .container,
.page-news .section,
.page-news .section-head,
.page-news .news-list,
.page-news .grid,
.page-news .version-timeline,
.page-news .weekly-grid,
.page-news .events-grid {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.page-news .breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 36px) var(--gutter) 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-news .breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.page-news .breadcrumb a:hover {
  color: var(--neon);
}

.page-news .crumb-sep {
  color: var(--line);
  user-select: none;
}

.page-news .news-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) var(--gutter) clamp(48px, 7vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  position: relative;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent 78%);
}

.page-news .news-eyebrow {
  font-family: var(--font-head);
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 0.4em;
  color: var(--neon);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.page-news .news-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5.4vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  max-width: 640px;
}

.page-news .news-hero-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 22px;
}

.page-news .news-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(57, 255, 20, 0.04);
  letter-spacing: 0.03em;
}

.page-news .tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  opacity: 0.85;
}

.page-news .tag--gold {
  border-color: rgba(245, 197, 24, 0.55);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.07);
}

.page-news .tag--gold::before {
  background: var(--gold);
}

.page-news .news-hero-figure {
  position: relative;
  min-width: 0;
}

.page-news .news-hero-figure .img-frame {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(123, 47, 247, 0.5);
  background: var(--bg-deep);
}

.page-news .news-hero-figure .img-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.18) 0%, transparent 38%, rgba(57, 255, 20, 0.08) 100%);
  pointer-events: none;
}

.page-news .news-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .hero-figure-overline {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--neon);
  background: rgba(8, 18, 39, 0.74);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 40px;
  pointer-events: none;
}

.page-news .section {
  padding-top: clamp(36px, 6vw, 64px);
  padding-bottom: clamp(12px, 2vw, 24px);
}

.page-news .section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(22px, 3.5vw, 34px);
  position: relative;
}

.page-news .section-index {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.6vw, 48px);
  line-height: 1;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(57, 255, 20, 0.52);
  background: rgba(123, 47, 247, 0.1);
  -webkit-background-clip: text;
  user-select: none;
}

.page-news .section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.03em;
  position: relative;
}

.page-news .section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 38px;
  height: 2px;
  background: var(--accent);
}

.page-news .section-link {
  margin-left: auto;
  font-size: 14px;
}

.page-news .section-note {
  margin-left: auto;
  font-size: 12px;
  color: var(--neon);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-left: 2px solid var(--line);
  padding-left: 12px;
}

.page-news .news-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(57, 255, 20, 0.18);
  border-bottom: 1px solid rgba(57, 255, 20, 0.18);
  padding-top: 6px;
  padding-bottom: 6px;
}

.page-news .news-item {
  display: flex;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  position: relative;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 11px,
      var(--news-scan-line) 12px,
      transparent 13px
    );
  transition: background 240ms ease;
}

.page-news .news-item:last-of-type {
  border-bottom-color: transparent;
}

.page-news .news-item:hover {
  background-color: rgba(123, 47, 247, 0.06);
}

.page-news .news-item-index {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--accent);
  min-width: 42px;
  letter-spacing: 0.09em;
}

.page-news .news-item-cat {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  flex: 0 0 auto;
  margin-top: 1px;
}

.page-news .cat--live {
  color: var(--neon);
  border-color: rgba(57, 255, 20, 0.55);
  background: rgba(57, 255, 20, 0.05);
}

.page-news .cat--product {
  color: #4CC9F0;
  border-color: rgba(76, 201, 240, 0.5);
  background: rgba(76, 201, 240, 0.05);
}

.page-news .cat--report {
  color: var(--accent);
  border-color: var(--news-line-purple);
  background: rgba(123, 47, 247, 0.06);
}

.page-news .cat--week {
  color: var(--gold);
  border-color: rgba(245, 197, 24, 0.5);
  background: rgba(245, 197, 24, 0.05);
}

.page-news .news-item-body h3 {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.4;
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.page-news .news-reports {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  max-width: calc(var(--container) + var(--gutter));
}

.page-news .grid--2 {
  display: flex;
  flex-direction: column;
  gap: var(--news-grid-gap);
  padding-left: 0;
  padding-right: 0;
}

.page-news .report-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  overflow: hidden;
  background: var(--news-card-bg);
  border: 1px solid var(--news-line-purple);
  border-radius: var(--radius);
  padding: 0;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.page-news .report-card:hover {
  box-shadow: 0 18px 48px rgba(123, 47, 247, 0.18), var(--shadow-sm);
}

.page-news .report-thumb {
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.page-news .report-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .report-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 27, 61, 0.65) 100%);
  pointer-events: none;
}

.page-news .report-content {
  padding: 0 18px 18px;
}

.page-news .report-tag {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid var(--news-line-purple);
  padding: 3px 8px;
  border-radius: 3px;
}

.page-news .report-content h3 {
  font-family: var(--font-head);
  font-size: auto;
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.page-news .report-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.page-news .report-stat {
  display: inline-flex;
  flex-direction: column;
  margin-right: 20px;
}

.page-news .report-stat .stat-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--neon);
  line-height: 1.1;
  position: relative;
}

.page-news .report-stat .stat-num::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--neon);
  margin-bottom: 4px;
  opacity: 0.7;
}

.page-news .report-stat .stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.page-news .version-timeline {
  display: flex;
  flex-direction: column;
}

.page-news .version-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
  position: relative;
}

.page-news .version-row:last-of-type {
  border-bottom-color: transparent;
}

.page-news .version-figure {
  display: none;
}

.page-news .version-main {
  position: relative;
  padding-left: 12px;
}

.page-news .version-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon) 0%, var(--accent) 100%);
  opacity: 0.7;
}

.page-news .version-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--neon);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  background: rgba(57, 255, 20, 0.05);
  margin-bottom: 10px;
}

.page-news .version-badge--muted {
  color: var(--muted);
  border-color: rgba(168, 192, 224, 0.3);
  background: transparent;
}

.page-news .version-main h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.page-news .version-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.page-news .version-feats li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.page-news .version-feats li::before {
  content: "▸";
  position: absolute;
  left: 6px;
  color: var(--neon);
  font-size: 14px;
}

.page-news .version-num {
  position: absolute;
  top: -6px;
  right: 0;
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(123, 47, 247, 0.55);
  opacity: 0.9;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

.page-news .version-num--muted {
  -webkit-text-stroke-color: rgba(168, 192, 224, 0.3);
}

.page-news .news-weekly {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  max-width: calc(var(--container) + var(--gutter));
}

.page-news .weekly-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 30px);
  align-items: start;
  padding-left: 0;
  padding-right: 0;
}

.page-news .weekly-card {
  border: 1px solid var(--line);
  background: var(--news-card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.page-news .weekly-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.page-news .weekly-cover {
  position: relative;
}

.page-news .weekly-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .weekly-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 27, 61, 0.55), transparent 60%);
  pointer-events: none;
}

.page-news .weekly-meta {
  display: flex;
  gap: 8px;
  padding: 18px 18px 0;
}

.page-news .weekly-meta .tag {
  font-size: 12px;
  padding: 4px 10px;
}

.page-news .weekly-meta .tag--gold {
  color: var(--gold);
}

.page-news .weekly-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 18px 8px;
  letter-spacing: 0.02em;
}

.page-news .weekly-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 18px 18px;
  line-height: 1.7;
}

.page-news .weekly-card .btn {
  margin: 0 18px 18px;
}

.page-news .btn-sm {
  font-size: 13px;
  padding: 8px 16px;
}

.page-news .weekly-archive {
  border: 1px solid rgba(168, 192, 224, 0.25);
  background: var(--bg-deep);
  border-radius: var(--radius);
  padding: 20px;
}

.page-news .archive-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-news .archive-icon {
  color: var(--neon);
  font-size: 20px;
  line-height: 1;
}

.page-news .archive-head h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.04em;
}

.page-news .archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-news .archive-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(57, 255, 20, 0.1);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.page-news .archive-list a::before {
  content: "·";
  color: var(--line);
  font-weight: 700;
  margin-right: 4px;
}

.page-news .archive-list a:hover {
  background: rgba(123, 47, 247, 0.12);
  color: var(--neon);
}

.page-news .archive-list a span {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(57, 255, 20, 0.18);
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.page-news .archive-list a:hover span {
  color: var(--neon);
}

.page-news .events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2.4vw, 22px);
  padding-left: 0;
  padding-right: 0;
}

.page-news .event-card {
  border: 1px solid rgba(123, 47, 247, 0.3);
  border-left: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.08), transparent);
  border-radius: 10px;
  padding: 20px 20px;
  transition: border-color 220ms ease, transform 220ms ease;
}

.page-news .event-card:hover {
  border-color: var(--line);
  border-left-color: var(--neon);
  transform: translateX(4px);
}

.page-news .event-cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.page-news .event-cat::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.8);
}

.page-news .event-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.page-news .event-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.page-news .btn:hover {
  transform: translateY(-2px);
}

.page-news .btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.page-news .btn-primary:hover {
  box-shadow: 0 6px 24px rgba(123, 47, 247, 0.65);
}

.page-news .btn-outline {
  border: 2px solid var(--neon);
  color: var(--neon);
  background: transparent;
}

.page-news .btn-outline:hover {
  background: rgba(57, 255, 20, 0.1);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.page-news .btn-ghost {
  color: var(--muted);
  border: 1px solid rgba(168, 192, 224, 0.4);
  background: transparent;
  padding: 6px 14px;
  font-size: 13px;
}

.page-news .btn-ghost:hover {
  color: var(--neon);
  border-color: var(--neon);
}

.page-news .feedback-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: var(--container);
  margin: clamp(36px, 6vw, 60px) auto 30px;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
}

.page-news .notice-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--bg);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  margin-top: 2px;
}

.page-news .feedback-notice a {
  color: var(--neon);
  text-decoration: none;
  font-weight: 600;
}

.page-news .feedback-notice a:hover {
  text-decoration: underline;
}

.page-news .img-frame--4x3 {
  aspect-ratio: 4 / 3;
}

.page-news .img-frame--square {
  aspect-ratio: 1 / 1;
}

.page-news .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 640px) {
  .page-news .news-item {
    align-items: flex-start;
    gap: 20px;
  }

  .page-news .news-item-cat {
    min-width: 96px;
    text-align: center;
  }

  .page-news .report-card {
    grid-template-columns: 200px 1fr;
  }
}

@media (min-width: 860px) {
  .page-news .news-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .page-news .grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--news-grid-gap);
  }

  .page-news .report-card {
    grid-template-columns: 1fr;
  }

  .page-news .version-row {
    grid-template-columns: 180px 1fr 120px;
    grid-template-rows: auto;
    gap: 0 24px;
    align-items: start;
    padding: 28px 0;
  }

  .page-news .version-figure {
    display: block;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    border: 1px solid rgba(123, 47, 247, 0.5);
  }

  .page-news .version-figure .img-frame {
    border-radius: 0;
  }

  .page-news .version-num {
    position: static;
    align-self: end;
    text-align: right;
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1;
  }

  .page-news .news-weekly .weekly-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: var(--news-grid-gap);
  }

  .page-news .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 1024px) {
  .page-news .report-card {
    grid-template-columns: 170px 1fr;
  }

  .page-news .report-content {
    padding: 16px 18px 16px 0;
  }

  .page-news .report-thumb img {
    min-height: 100%;
  }

  .page-news .news-item-body p {
    max-width: 76%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
