.page-news {
  background:
    radial-gradient(720px 380px at 86% -6%, rgba(245, 197, 24, 0.14), transparent 62%),
    radial-gradient(640px 320px at -8% 24%, rgba(255, 127, 0, 0.1), transparent 55%),
    linear-gradient(166deg, #0a1a2f 0%, #061124 78%);
  color: var(--c-white);
  padding-bottom: 88px;
}

.page-news .news-hero {
  padding: 34px 0 28px;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-gray);
  margin-bottom: 24px;
  font-family: var(--font-number);
}

.page-news .breadcrumb a {
  color: var(--c-gray);
  text-decoration: none;
  transition: color 0.2s;
}

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

.page-news .breadcrumb__sep {
  opacity: 0.5;
}

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

.page-news .news-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 12px 0 14px;
  max-width: 840px;
}

.page-news .news-hero__sub {
  color: var(--c-gray);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 660px;
  margin: 0;
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-news .hero-stat {
  background: rgba(16, 35, 60, 0.72);
  border: 1px solid rgba(192, 200, 208, 0.18);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  box-shadow: var(--shadow-sm);
  transition: border 0.2s, transform 0.2s;
}

.page-news .hero-stat:hover {
  border-color: rgba(245, 197, 24, 0.5);
  transform: translateY(-2px);
}

.page-news .hero-stat__num {
  display: block;
  font-family: var(--font-number);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--c-yellow);
}

.page-news .hero-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--c-gray);
  letter-spacing: 0.06em;
}

.page-news .news-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 34px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 197, 24, 0.4) rgba(6, 17, 36, 0.4);
}

.page-news .news-filter__link {
  font-family: var(--font-number);
  font-size: 13px;
  white-space: nowrap;
  color: var(--c-gray);
  border: 1px solid rgba(192, 200, 208, 0.22);
  background: rgba(16, 35, 60, 0.4);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.page-news .news-filter__link:hover {
  color: var(--c-yellow);
  border-color: rgba(245, 197, 24, 0.5);
}

.page-news .news-filter__link.is-current {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  color: var(--c-black);
  font-weight: 700;
}

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

.page-news .news-layout__main,
.page-news .news-layout__side {
  min-width: 0;
}

.page-news .announce-block,
.page-news .report-block,
.page-news .special-block,
.page-news .story-block {
  scroll-margin-top: 120px;
  transition: box-shadow 0.3s;
}

.page-news .announce-block:target,
.page-news .report-block:target,
.page-news .special-block:target,
.page-news .story-block:target {
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.22);
  border-radius: var(--radius-lg);
}

.page-news .block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(192, 200, 208, 0.18);
}

.page-news .block-head__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-news .block-head__index {
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-black);
  background: var(--c-yellow);
  padding: 9px 12px 7px 13px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.page-news .report-block .block-head__index {
  background: var(--c-orange);
}

.page-news .special-block .block-head__index {
  background: var(--c-indigo);
  color: var(--c-white);
}

.page-news .story-block .block-head__index {
  background: var(--c-cyan);
  color: var(--c-white);
}

.page-news .block-head .section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
}

.page-news .block-head__mode {
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(192, 200, 208, 0.7);
}

.page-news .news-feature {
  background: rgba(16, 35, 60, 0.72);
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
}

.page-news .news-feature__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 18px 0;
}

.page-news .news-feature__batch {
  margin-left: auto;
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--c-gray);
}

.page-news .news-feature__media {
  position: relative;
  margin: 14px auto 0;
  width: calc(100% - 28px);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(6, 17, 36, 0.6);
}

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

.page-news .media-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(6, 17, 36, 0.76);
  color: var(--c-white);
  font-family: var(--font-number);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.page-news .news-feature__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.22;
  padding: 18px 18px 0;
  margin: 0;
}

.page-news .news-feature__text {
  padding: 10px 18px 0;
  margin: 0;
  color: #dfe5ec;
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-news .news-feature__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 18px;
  margin: 0;
  color: var(--c-gray);
  font-size: 13px;
  font-family: var(--font-number);
}

.page-news .meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  display: inline-block;
}

.page-news .batch-hint {
  color: rgba(245, 197, 24, 0.8);
}

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

.page-news .changelog--more {
  margin-top: 14px;
}

.page-news .changelog__item {
  position: relative;
  padding: 0 0 28px 28px;
  border-left: 1px solid rgba(245, 197, 24, 0.3);
}

.page-news .changelog--more .changelog__item {
  border-left-color: rgba(255, 127, 0, 0.42);
}

.page-news .changelog__item:last-child {
  padding-bottom: 4px;
}

.page-news .changelog__dot {
  position: absolute;
  top: 5px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--c-yellow);
  transform: rotate(45deg);
}

.page-news .changelog--more .changelog__dot {
  background: var(--c-orange);
}

.page-news .changelog__line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.page-news .changelog__time {
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--c-gray);
  transition: color 0.2s;
}

.page-news .changelog__item:hover .changelog__time {
  color: var(--c-yellow);
}

.page-news .changelog__item:hover .changelog__time::after {
  content: " · " attr(data-batch) "批次";
}

.page-news .changelog__title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0 0 8px;
}

.page-news .changelog__desc {
  font-size: 0.92rem;
  line-height: 1.72;
  color: #c8d0d9;
  margin: 0;
  overflow-wrap: break-word;
}

.page-news .changelog__desc a {
  color: var(--c-yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 197, 24, 0.4);
}

.page-news .changelog__desc a:hover {
  color: var(--c-orange);
  border-bottom-color: var(--c-orange);
}

.page-news .more-log {
  border: 1px dashed rgba(245, 197, 24, 0.4);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: 8px;
  background: rgba(6, 17, 36, 0.3);
}

.page-news .more-log + .more-log {
  margin-top: 16px;
}

.page-news .more-log summary {
  cursor: pointer;
  font-family: var(--font-number);
  font-size: 13px;
  color: var(--c-yellow);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.page-news .more-log summary::before {
  content: "+";
  font-size: 18px;
  line-height: 1;
}

.page-news .more-log[open] summary::before {
  content: "−";
}

.page-news .report-block {
  min-width: 0;
}

.page-news .report-card {
  background: rgba(16, 35, 60, 0.68);
  border: 1px solid rgba(192, 200, 208, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: border 0.2s, transform 0.2s, box-shadow 0.2s;
}

.page-news .report-card:hover {
  border-color: rgba(245, 197, 24, 0.55);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.page-news .report-card--compact {
  padding-bottom: 18px;
}

.page-news .report-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.page-news .report-card__sync {
  margin-left: auto;
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--c-gray);
  position: relative;
  transition: color 0.2s;
}

.page-news .report-card__sync:hover {
  color: var(--c-yellow);
}

.page-news .report-card__sync:hover::after {
  content: attr(data-tip);
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--c-bg-deep);
  border: 1px solid rgba(245, 197, 24, 0.4);
  color: var(--c-white);
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 3;
}

.page-news .report-card__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 0 14px;
  background: rgba(6, 17, 36, 0.6);
}

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

.page-news .report-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.28;
  margin: 0 0 8px;
}

.page-news .report-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.68;
  color: #d4dce5;
  margin: 0;
  overflow-wrap: break-word;
}

.page-news .report-card__more {
  margin-top: 12px;
}

.page-news .report-card__more summary {
  cursor: pointer;
  color: var(--c-orange);
  font-family: var(--font-number);
  font-size: 13px;
  list-style: none;
  transition: color 0.2s;
}

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

.page-news .report-card__more summary:hover {
  color: var(--c-yellow);
}

.page-news .report-card__more[open] summary {
  color: var(--c-yellow);
}

.page-news .report-card__data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  background: rgba(6, 17, 36, 0.55);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 10px;
}

.page-news .mini-stat {
  text-align: center;
}

.page-news .mini-stat__num {
  display: block;
  font-family: var(--font-number);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-yellow);
  line-height: 1;
}

.page-news .mini-stat__label {
  display: block;
  font-size: 12px;
  color: var(--c-gray);
  margin-top: 6px;
}

.page-news .report-card__note {
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-gray);
  margin: 6px 0 0;
}

.page-news .report-card__note a {
  color: var(--c-yellow);
  text-decoration: none;
}

.page-news .report-card__note a:hover {
  color: var(--c-orange);
}

.page-news .report-stack {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.page-news .report-stack .report-card {
  margin-bottom: 0;
}

.page-news .special-card {
  background: rgba(42, 59, 110, 0.38);
  border: 1px solid rgba(192, 200, 208, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  transition: border 0.2s, box-shadow 0.2s;
}

.page-news .special-card:hover {
  border-color: rgba(255, 127, 0, 0.5);
  box-shadow: var(--shadow-md);
}

.page-news .special-card__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: rgba(6, 17, 36, 0.6);
}

.page-news .special-card__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .special-card__body {
  padding: 16px;
}

.page-news .special-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 10px 0 8px;
}

.page-news .special-card__text {
  font-size: 0.92rem;
  line-height: 1.72;
  color: #d4dce5;
  margin: 0;
  overflow-wrap: break-word;
}

.page-news .special-card__text a {
  color: var(--c-yellow);
  text-decoration: none;
}

.page-news .special-card__text a:hover {
  color: var(--c-orange);
}

.page-news .story-card {
  background: linear-gradient(180deg, rgba(14, 77, 92, 0.42), rgba(14, 77, 92, 0.18));
  border: 1px solid rgba(192, 200, 208, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  transition: border 0.2s, box-shadow 0.2s;
}

.page-news .story-card:hover {
  border-color: rgba(245, 197, 24, 0.5);
  box-shadow: var(--shadow-md);
}

.page-news .story-card__media {
  position: relative;
  overflow: hidden;
  background: rgba(6, 17, 36, 0.6);
}

.page-news .story-card__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .story-card__body {
  padding: 16px;
}

.page-news .story-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 10px 0 8px;
}

.page-news .story-card__text {
  font-size: 0.92rem;
  line-height: 1.72;
  color: #d4dce5;
  margin: 0;
  overflow-wrap: break-word;
}

.page-news .story-card__text a {
  color: var(--c-yellow);
  text-decoration: none;
}

.page-news .story-card__text a:hover {
  color: var(--c-orange);
}

@media (min-width: 640px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: end;
    gap: 32px;
  }

  .page-news .news-hero__stats {
    gap: 14px;
  }
}

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

  .page-news .news-layout__side {
    display: grid;
    gap: 36px;
  }

  .page-news .block-head__mode {
    font-size: 13px;
  }

  .page-news .news-feature__title {
    font-size: 1.65rem;
  }

  .page-news .news-feature__media {
    width: calc(100% - 36px);
  }
}
