.page-news {
  --news-line: var(--color-bg-alt);
  --news-card-bg: rgba(255, 255, 255, 0.045);
}

.page-news .update-hero {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem 0 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, var(--color-bg-deep) 0%, var(--color-bg-alt) 100%);
  border-radius: 0 0 18px 18px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.page-news .hero-kicker {
  font-family: var(--font-tag);
  font-size: 0.78rem;
  color: var(--color-yellow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.page-news .update-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  color: var(--color-text);
  margin: 0.2rem 0 0.4rem;
  letter-spacing: 0.01em;
}

.page-news .hero-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.82);
  max-width: 66ch;
  margin: 0;
}

.page-news .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.page-news .hero-fact {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xs);
  padding: 0.38rem 0.72rem;
  font-size: 0.8rem;
  color: var(--color-text);
  font-family: var(--font-tag);
}

.page-news .hero-fact strong {
  color: var(--color-yellow);
  font-weight: 700;
  margin-right: 0.25rem;
  font-size: 0.95rem;
}

.page-news .quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.page-news .quick-links a {
  font-family: var(--font-tag);
  font-size: 0.8rem;
  padding: 0.32rem 0.75rem;
  background: var(--color-bg-alt);
  color: var(--color-text);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

.page-news .quick-links a:hover {
  background: var(--color-accent);
  color: var(--color-text);
}

.page-news .section-head {
  margin-bottom: 0.7rem;
}

.page-news .section-title {
  margin: 0;
}

.page-news .section-meta {
  font-size: 0.78rem;
  color: rgba(224, 224, 224, 0.6);
  margin: 0.2rem 0 0;
  font-family: var(--font-tag);
}

.page-news .timeline-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr);
}

.page-news .update-stream {
  min-width: 0;
}

.page-news .stream-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.page-news .stream-list {
  display: grid;
  gap: 1.25rem;
}

.page-news .timeline-batch {
  position: relative;
  padding-left: 1.1rem;
}

.page-news .timeline-batch::before {
  content: "";
  position: absolute;
  left: 0.26rem;
  top: 0.3rem;
  bottom: 0.4rem;
  width: 2px;
  background: var(--news-line);
  border-radius: 999px;
}

.page-news .batch-marker {
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.18);
  z-index: 2;
}

.page-news .batch-marker--coral {
  background: var(--color-coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.18);
}

.page-news .batch-marker--mint {
  background: var(--color-mint);
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.18);
}

.page-news .batch-marker--yellow {
  background: var(--color-yellow);
  box-shadow: 0 0 0 4px rgba(249, 200, 14, 0.2);
}

.page-news .batch-marker--lake {
  background: var(--color-lake);
  box-shadow: 0 0 0 4px rgba(69, 183, 209, 0.22);
}

.page-news .batch-card {
  background: var(--news-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow-card);
}

.page-news .batch-head {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.page-news .node-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--color-bg-deep);
  padding: 0.15rem;
  box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.3);
}

.page-news .batch-head-main {
  flex: 1 1 auto;
  min-width: 0;
}

.page-news .batch-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-news .batch-no {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--color-text);
}

.page-news .batch-zone {
  font-size: 0.76rem;
  color: var(--color-lake);
  margin: 0.2rem 0 0;
  line-height: 1.4;
}

.page-news .batch-count {
  flex: 0 0 auto;
  font-family: var(--font-tag);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-yellow);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-news .batch-entries {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.page-news .batch-entry {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-news .batch-entry:last-child {
  border-bottom: 0;
}

.page-news .entry-index {
  flex: 0 0 auto;
  font-family: var(--font-tag);
  font-size: 0.74rem;
  color: var(--color-accent);
  width: 1.5rem;
  text-align: right;
  font-weight: 700;
}

.page-news .entry-info {
  flex: 1 1 auto;
  min-width: 0;
}

.page-news .entry-name {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.9rem;
  display: block;
}

.page-news .entry-meta2 {
  display: block;
  font-size: 0.74rem;
  color: var(--color-text);
  opacity: 0.6;
  margin-top: 0.1rem;
}

.page-news .batch-entry .status-badge {
  flex: 0 0 auto;
}

.page-news .timeline-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.page-news .side-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.page-news .side-card--version {
  background: var(--color-bg-deep);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.page-news .adjust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .adjust-item {
  display: flex;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.page-news .adjust-item:last-child {
  border-bottom: 0;
}

.page-news .adjust-pin {
  flex: 0 0 auto;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 2px;
  margin-top: 0.4rem;
  transform: rotate(45deg);
  background: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.page-news .adjust-pin--yellow {
  background: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(249, 200, 14, 0.16);
}

.page-news .adjust-pin--mint {
  background: var(--color-mint);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.16);
}

.page-news .adjust-pin--lake {
  background: var(--color-lake);
  box-shadow: 0 0 0 3px rgba(69, 183, 209, 0.16);
}

.page-news .adjust-pin--orange {
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.16);
}

.page-news .adjust-body {
  flex: 1 1 auto;
  min-width: 0;
}

.page-news .adjust-title {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.9rem;
  margin: 0;
}

.page-news .adjust-desc {
  font-size: 0.78rem;
  color: rgba(224, 224, 224, 0.72);
  line-height: 1.55;
  margin: 0.15rem 0 0;
}

.page-news .version-graphic {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  object-fit: cover;
  background: var(--color-bg-deep);
}

.page-news .version-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .version-item {
  position: relative;
  padding: 0 0 1rem 1.3rem;
}

.page-news .version-item:last-child {
  padding-bottom: 0;
}

.page-news .version-item::before {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.25rem;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.page-news .version-item:last-child::before {
  display: none;
}

.page-news .version-node {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 50%;
  background: var(--color-lake);
  border: 2px solid var(--color-bg-deep);
  z-index: 2;
}

.page-news .version-node--current {
  background: var(--color-green);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
}

.page-news .version-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--color-yellow);
  font-size: 0.95rem;
  margin: 0;
}

.page-news .version-meta {
  font-size: 0.74rem;
  color: rgba(224, 224, 224, 0.55);
  margin: 0.1rem 0 0;
}

.page-news .version-desc {
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.78);
  line-height: 1.55;
  margin: 0.3rem 0 0;
}

.page-news .hot-section {
  margin-top: 1.5rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg-alt) 100%);
  border-radius: var(--radius);
}

.page-news .hot-section .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.page-news .hot-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.page-news .hot-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
}

.page-news .hot-banner-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, transparent 62%);
  color: var(--color-text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.page-news .hot-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
}

.page-news .hot-grid.is-grid-view {
  display: grid;
}

.page-news .hot-grid.is-list-view {
  display: block;
}

.page-news .hot-grid .grid-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-width: 0;
}

.page-news .hot-grid .card-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--color-bg-deep);
  overflow: hidden;
}

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

.page-news .hot-grid .card-cover .status-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

.page-news .hot-grid .card-body {
  padding: 0.75rem;
  color: var(--color-text-dark);
}

.page-news .hot-grid .card-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.page-news .hot-grid .card-tag-row .tag-chip {
  font-size: 0.66rem;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  color: inherit;
  border: 0;
}

.page-news .hot-grid .card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: inherit;
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-news .hot-grid .metric-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.page-news .hot-grid .metric-label {
  font-size: 0.72rem;
  opacity: 0.72;
}

.page-news .hot-grid .metric-track {
  flex: 1;
  height: 0.4rem;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.page-news .hot-grid .metric-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--color-accent);
}

.page-news .hot-grid .metric-value {
  font-family: var(--font-tag);
  font-size: 0.8rem;
  font-weight: 700;
}

.page-news .hot-grid .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.76rem;
}

.page-news .hot-grid .card-score {
  font-family: var(--font-tag);
  font-weight: 700;
  opacity: 0.8;
}

.page-news .cover-figure-mark {
  position: absolute;
  right: 0.55rem;
  bottom: 0.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
  letter-spacing: 0.05em;
}

.page-news .cover-figure--stripes {
  background: repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.18) 0 6px,
      transparent 6px 12px
    ),
    var(--color-bg-deep);
}

.page-news .cover-figure--rings {
  background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.3) 0 8px,
      transparent 10px
    )
    0 0 / 30px 30px,
    var(--color-bg-deep);
}

.page-news .cover-figure--grid {
  background: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px)
      0 0 / 24px 24px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) 0 0 /
      24px 24px,
    var(--color-bg-deep);
}

.page-news .cover-figure--sun {
  background: radial-gradient(
      circle at 30% 30%,
      var(--color-yellow) 0 24%,
      transparent 26%
    ),
    var(--color-bg-deep);
}

.page-news .cover-figure--mosaic {
  background: conic-gradient(
      from 120deg at 70% 30%,
      var(--color-coral),
      var(--color-yellow),
      var(--color-mint),
      var(--color-coral)
    ),
    var(--color-bg-deep);
}

.page-news .continue-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1rem;
}

.page-news .continue-nav .btn {
  text-decoration: none;
}

@media (min-width: 600px) {
  .page-news .hot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .hot-grid.is-list-view .grid-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.6rem;
    align-items: stretch;
    margin-bottom: 0.8rem;
  }

  .page-news .hot-grid.is-list-view .card-cover {
    aspect-ratio: auto;
    height: 100%;
    min-height: 96px;
  }

  .page-news .hot-grid.is-list-view .card-body {
    padding: 0.6rem 0.8rem 0.6rem 0;
  }
}

@media (min-width: 920px) {
  .page-news .timeline-layout {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-news .hot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-news .hot-grid.is-list-view .grid-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .page-news .update-hero {
    padding-left: 0;
    padding-right: 0;
  }
}
