.page-news {
  --page-card-gap: 18px;
}

.page-news .news-hero {
  padding-top: 18px;
}

.page-news .breadcrumbs {
  font-size: 13px;
  color: var(--text-secondary);
}

.page-news .news-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--page-card-gap);
  margin-top: 14px;
}

.page-news .news-intro h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: 0.02em;
  margin: 16px 0 12px;
}

.page-news .news-hero-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 64ch;
  margin: 0 0 18px;
}

.page-news .news-stat-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.12), transparent 55%),
    var(--panel);
}

.page-news .news-stat-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--neon-green);
}

.page-news .stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.page-news .stat-item strong {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--neon-green);
}

.page-news .trending-bar {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 16px 2px 8px;
  margin-top: 20px;
  scrollbar-width: none;
}

.page-news .trending-bar::-webkit-scrollbar {
  display: none;
}

.page-news .trend-chip {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 6px 2px 8px;
  border-bottom: 3px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.page-news .trend-chip.is-current {
  color: var(--neon-green);
  border-bottom-color: var(--neon-green);
}

.page-news .trend-chip:hover {
  color: var(--electric-blue);
}

.page-news .section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 34px 0 16px;
  position: relative;
  padding-top: 14px;
}

.page-news .section-heading::before {
  content: '';
  width: 42px;
  height: 4px;
  background: linear-gradient(90deg, var(--data-orange), transparent);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 0 100%);
}

.page-news .section-heading h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--text-white);
  margin: 0;
}

.page-news .section-heading p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.page-news .news-live-grid,
.page-news .news-data-grid,
.page-news .archive-grid,
.page-news .news-links-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--page-card-gap);
}

.page-news .news-tab-col {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.page-news .tab-trigger {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: left;
  color: var(--text-secondary);
  background: var(--panel);
  border: 1px solid var(--grid-line);
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease;
}

.page-news .tab-trigger.is-active {
  color: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: inset 0 -2px 0 var(--neon-green);
}

.page-news .tab-trigger:hover {
  color: var(--electric-blue);
}

.page-news .news-feed-col {
  min-width: 0;
}

.page-news .feed-list {
  border-top: 1px solid var(--grid-line);
}

.page-news .feed-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px 12px;
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--grid-line);
  position: relative;
}

.page-news .feed-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 84px;
  height: 2px;
  background: linear-gradient(90deg, var(--data-orange), transparent);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 0 100%);
}

.page-news .speed-line {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 28px;
  height: auto;
  align-self: start;
  margin-top: 6px;
}

.page-news .feed-body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.page-news .feed-has-image .feed-media {
  grid-column: 1 / -1;
  grid-row: 2;
}

.page-news .feed-has-image .feed-score {
  grid-column: 2;
  grid-row: 3;
}

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

.page-news .feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.page-news .feed-cat {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--electric-blue);
}

.page-news .feed-time {
  font-size: 12px;
  color: var(--data-orange);
}

.page-news .feed-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-white);
  margin: 6px 0 8px;
}

.page-news .feed-body p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 10px;
  max-width: 72ch;
}

.page-news .feed-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.page-news .stat-num {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
  color: var(--data-orange);
}

.page-news .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-left: 5px;
}

.page-news .feed-score {
  background: var(--panel);
  border-left: 2px solid var(--data-orange);
  padding: 8px 12px;
  align-self: start;
  justify-self: start;
}

.page-news .feed-score dl {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
}

.page-news .feed-score dt {
  font-size: 11px;
  color: var(--text-secondary);
}

.page-news .feed-score dd {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--neon-green);
  margin: 0;
}

.page-news .data-card {
  overflow: hidden;
  background: var(--panel);
  min-width: 0;
}

.page-news .data-card-head img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .data-card-body {
  padding: 16px 18px 20px;
}

.page-news .data-card-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--water-news);
  color: var(--electric-blue);
  padding: 4px 8px;
  border: 1px solid var(--grid-line);
  margin-bottom: 10px;
}

.page-news .data-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-white);
  margin: 0 0 10px;
}

.page-news .data-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.page-news .data-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  border-top: 1px solid var(--grid-line);
  padding-top: 12px;
}

.page-news .data-points .stat-num {
  font-size: 22px;
}

.page-news .chart-hint {
  margin-top: 14px;
  padding: 10px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid var(--grid-line);
}

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

.page-news .series-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.page-news .series-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 8px 10px;
  border: 1px solid var(--grid-line);
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--panel);
  transition: color 180ms ease, border-color 180ms ease;
}

.page-news .series-step.is-current {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(0, 255, 135, 0.08);
}

.page-news .series-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.page-news .series-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  background: var(--panel);
  padding: 18px 16px;
  scroll-margin-top: 90px;
}

.page-news .series-index {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1;
  color: var(--data-orange);
}

.page-news .series-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-white);
  margin: 6px 0 8px;
}

.page-news .series-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 12px;
  max-width: 70ch;
}

.page-news .series-next {
  display: inline-block;
  font-size: 13px;
  color: var(--electric-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-news .series-next:hover {
  border-bottom-color: var(--electric-blue);
}

.page-news .series-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--data-orange);
  padding-left: 14px;
  align-self: start;
}

.page-news .series-stat strong {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--neon-green);
  line-height: 1;
}

.page-news .series-stat span {
  font-size: 12px;
  color: var(--text-secondary);
}

.page-news .archive-spotlight {
  overflow: hidden;
  background: var(--panel);
  min-width: 0;
}

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

.page-news .archive-spot-body {
  padding: 16px 18px 20px;
}

.page-news .archive-spot-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-white);
  margin: 8px 0 10px;
}

.page-news .archive-spot-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.page-news .archive-spot-stat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  border-top: 1px solid var(--grid-line);
  padding-top: 12px;
}

.page-news .archive-spot-stat span {
  font-size: 12px;
  color: var(--text-secondary);
}

.page-news .archive-spot-stat strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--data-orange);
  margin-right: 6px;
}

.page-news .archive-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grid-line);
}

.page-news .archive-index {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--electric-blue);
}

.page-news .archive-item-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-white);
  margin: 0 0 6px;
}

.page-news .archive-item-body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.page-news .archive-year {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  padding-top: 2px;
}

.page-news .archive-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-news .glass-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  background: var(--panel-glass);
  border: 1px solid var(--grid-line);
  padding: 18px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.page-news .glass-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--electric-blue));
  opacity: 0.12;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.page-news .glass-card:hover {
  border-color: var(--neon-green);
  transform: translateY(-2px);
}

.page-news .glass-card-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.4;
  color: var(--neon-green);
  margin-bottom: 8px;
}

.page-news .glass-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

@media (min-width: 1024px) {
  .page-news .news-hero-inner {
    align-items: center;
  }

  .page-news .news-intro h1 {
    font-size: 34px;
  }

  .page-news .news-stat-block {
    padding: 24px 28px;
  }

  .page-news .trending-bar {
    padding-bottom: 12px;
  }

  .page-news .section-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }

  .page-news .news-live-grid,
  .page-news .news-data-grid,
  .page-news .archive-grid,
  .page-news .news-links-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .page-news .offset-1 {
    margin-left: 8.3333%;
  }

  .page-news .col-span-3 {
    grid-column: span 3 / span 3;
  }

  .page-news .col-span-4 {
    grid-column: span 4 / span 4;
  }

  .page-news .col-span-5 {
    grid-column: span 5 / span 5;
  }

  .page-news .col-span-6 {
    grid-column: span 6 / span 6;
  }

  .page-news .col-span-7 {
    grid-column: span 7 / span 7;
  }

  .page-news .col-span-8 {
    grid-column: span 8 / span 8;
  }

  .page-news .col-span-9 {
    grid-column: span 9 / span 9;
  }

  .page-news .news-tab-col {
    flex-direction: column;
    gap: 8px;
    overflow: visible;
    background: var(--panel);
    padding: 14px 12px;
    border-left: 3px solid var(--neon-green);
    position: sticky;
    top: 130px;
    align-self: start;
  }

  .page-news .tab-trigger {
    width: 100%;
  }

  .page-news .feed-item {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }

  .page-news .feed-has-image {
    grid-template-columns: 40px 176px minmax(0, 1fr) auto;
  }

  .page-news .feed-has-image .feed-media {
    grid-column: 2;
    grid-row: 1;
  }

  .page-news .feed-has-image .feed-body {
    grid-column: 3;
    grid-row: 1;
  }

  .page-news .feed-has-image .feed-score {
    grid-column: 4;
    grid-row: 1;
  }

  .page-news .feed-body {
    grid-column: 2;
    grid-row: 1;
  }

  .page-news .feed-score {
    grid-column: 3;
    grid-row: 1;
  }

  .page-news .speed-line {
    grid-column: 1;
    grid-row: 1;
    width: 40px;
  }

  .page-news .feed-media img {
    height: auto;
  }

  .page-news .data-card-body {
    padding: 18px 22px 24px;
  }

  .page-news .series-steps {
    margin-top: 0;
  }

  .page-news .series-card {
    grid-template-columns: 48px minmax(0, 1fr) 130px;
    gap: 16px;
    padding: 20px 22px;
  }

  .page-news .series-index {
    font-size: 38px;
  }

  .page-news .series-stat {
    justify-self: end;
  }

  .page-news .news-links-grid > * {
    min-height: 148px;
  }

  .page-news .glass-card {
    padding: 24px;
  }
}

.page-news {
  --water-news: currentColor;
}
