.page-news {
  --news-label-w: 64px;
  --news-line-w: 30px;
  --news-gap: 12px;
  background: var(--night);
}

.page-news .page-news-top-image {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--divider);
}

.page-news .page-news-top-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-news .page-news-top-image .gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.2) 0%, rgba(11, 15, 25, 0.72) 62%, var(--night) 100%);
}

.page-news .page-news-header {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 84px;
  padding-bottom: 36px;
}

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

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

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

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

.page-news .page-news-header .section-eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.page-news .page-news-header h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 10px 0 12px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

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

.page-news .page-news-body {
  padding-top: 30px;
  padding-bottom: 64px;
}

.page-news .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-news .filter-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--divider);
  background: var(--steel);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-news .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-news .filter-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--night);
  font-weight: 700;
}

.page-news .news-timeline {
  position: relative;
  padding-top: 6px;
}

.page-news .timeline-group-heading {
  position: relative;
  z-index: 2;
  margin: 30px 0 20px;
  padding: 14px 16px 14px calc(var(--news-label-w) + var(--news-line-w) + var(--news-gap));
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(11, 15, 25, 0.95) 70%, var(--night) 100%);
  border-left: 3px solid var(--gold);
}

.page-news .timeline-group-heading .section-eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.page-news .timeline-group-heading h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 4px 0 0;
  color: var(--text);
  letter-spacing: -0.01em;
}

.page-news .news-entry {
  position: relative;
  display: grid;
  grid-template-columns: var(--news-label-w) var(--news-line-w) minmax(0, 1fr);
  gap: var(--news-gap);
  align-items: start;
  margin-bottom: 26px;
}

.page-news .entry-line {
  position: relative;
  align-self: stretch;
}

.page-news .entry-line::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: -26px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--divider), rgba(0, 184, 255, 0.35));
  transform: translateX(-50%);
}

.page-news .news-entry:last-of-type .entry-line::before {
  bottom: auto;
  height: 48px;
}

.page-news .entry-dot {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--night);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.page-news .is-data .entry-line::before {
  background: linear-gradient(180deg, var(--divider), rgba(0, 184, 255, 0.55));
}

.page-news .is-feature .entry-line::before {
  background: linear-gradient(180deg, var(--divider), rgba(240, 246, 252, 0.25));
}

.page-news .is-data .entry-dot {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 184, 255, 0.18);
}

.page-news .is-feature .entry-dot {
  background: var(--text);
  box-shadow: 0 0 0 3px rgba(240, 246, 252, 0.14);
}

.page-news .entry-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  border: 1px solid var(--divider);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(26, 32, 44, 0.72);
  padding: 12px 4px;
  color: var(--gold);
  font-family: var(--font-mono);
}

.page-news .is-data .entry-tag {
  color: var(--blue);
  border-left-color: var(--blue);
}

.page-news .is-feature .entry-tag {
  color: var(--text);
  border-left-color: var(--text);
}

.page-news .entry-tag .tag-cn {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.page-news .entry-tag .tag-en {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-news .entry-card {
  min-width: 0;
  background: var(--steel);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.page-news .entry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 18px 36px rgba(212, 175, 55, 0.06);
}

.page-news .is-data .entry-card:hover {
  border-color: rgba(0, 184, 255, 0.35);
  box-shadow: 0 18px 36px rgba(0, 184, 255, 0.08);
}

.page-news .is-feature .entry-card:hover {
  border-color: rgba(240, 246, 252, 0.2);
  box-shadow: 0 18px 36px rgba(240, 246, 252, 0.06);
}

.page-news .entry-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.page-news .entry-category {
  color: var(--gold);
  font-weight: 700;
}

.page-news .is-data .entry-category {
  color: var(--blue);
}

.page-news .entry-round {
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 2px 8px;
}

.page-news .entry-card h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text);
}

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

.page-news .entry-thumb,
.page-news .entry-chart,
.page-news .entry-thumb-sm {
  margin: 12px 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--night);
}

.page-news .entry-thumb img,
.page-news .entry-chart img,
.page-news .entry-thumb-sm img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .entry-chart {
  border: 1px solid var(--divider);
}

.page-news .entry-thumb-sm {
  max-width: 260px;
}

.page-news .entry-details {
  margin-top: 12px;
  border-top: 1px dashed var(--divider);
  padding-top: 12px;
}

.page-news .entry-details summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  list-style: none;
}

.page-news .entry-details summary::-webkit-details-marker {
  display: none;
}

.page-news .entry-details summary::before {
  content: "+";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-align: center;
  line-height: 14px;
  font-size: 12px;
}

.page-news .entry-details[open] summary::before {
  content: "–";
}

.page-news .entry-details p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.page-news .entry-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0;
}

.page-news .entry-stats .stat {
  background: rgba(11, 15, 25, 0.55);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
}

.page-news .entry-stats .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
}

.page-news .entry-stats .stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.page-news .btn-sm {
  padding: 7px 14px;
  font-size: 12px;
}

.page-news .news-visual-section {
  margin-top: 56px;
  border-top: 1px solid var(--divider);
  padding-top: 28px;
}

.page-news .news-visual-section .section-eyebrow {
  color: var(--gold);
}

.page-news .news-visual-section h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  margin: 6px 0 20px;
}

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

.page-news .bento-card {
  padding: 20px;
  border-radius: 12px;
}

.page-news .bento-card .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.page-news .bento-card .stat-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

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

.page-news .news-help-links {
  margin-top: 56px;
  border-top: 1px solid var(--divider);
  padding-top: 28px;
}

.page-news .news-help-links .section-eyebrow {
  color: var(--blue);
}

.page-news .news-help-links h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  margin: 6px 0 20px;
}

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

.page-news .quick-link-card {
  display: block;
  background: var(--steel);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  transform: translateY(0);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.page-news .quick-link-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  background: rgba(0, 184, 255, 0.06);
}

.page-news .quick-link-card .quick-link-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 1.05rem;
}

.page-news .quick-link-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 6px;
}

.page-news [data-filter-item].is-hidden {
  display: none;
}

@media (min-width: 768px) {
  .page-news {
    --news-label-w: 76px;
    --news-line-w: 40px;
    --news-gap: 16px;
  }

  .page-news .page-news-top-image {
    min-height: 400px;
  }

  .page-news .page-news-header {
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .page-news .page-news-header h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.2rem);
  }

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

  .page-news .page-news-body {
    padding-top: 44px;
  }

  .page-news .filter-group {
    gap: 12px;
  }

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

  .page-news .entry-card h3 {
    font-size: 1.24rem;
  }

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

  .page-news .bento-card.is-wide {
    grid-column: span 2;
  }

  .page-news .quick-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-news .quick-link-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
