.page-news {
  --cat-europe: #FF8A3D;
  --cat-domestic: #6FDCB4;
  --cat-setpiece: #A3B0E8;
  --cat-release: #C3CDEA;
  --cat-archive: #9AA6C8;
  display: block;
  padding-bottom: 64px;
}

.page-news .breadcrumbs {
  margin: 22px 0 14px;
}

/* ---------- 首屏框景 ---------- */
.page-news .trends-hero {
  padding-top: 8px;
}

.page-news .hero-frame {
  position: relative;
  padding: clamp(22px, 4vw, 46px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(255, 90, 31, 0.12), transparent 58%),
    radial-gradient(90% 80% at 100% 100%, rgba(53, 192, 142, 0.08), transparent 60%),
    linear-gradient(180deg, #0E1734 0%, #060B1F 78%);
}

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

.page-news .hero-main {
  min-width: 0;
}

.page-news .hero-lead {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink-body);
}

.page-news .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-news .hero-side {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--hair-soft);
  border-radius: var(--r-md);
  background: rgba(23, 34, 74, 0.6);
}

.page-news .hero-side__head {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
}

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

.page-news .board__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--hair-soft);
}

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

.page-news .board__key {
  font-size: 14px;
  color: var(--ink-dim);
}

.page-news .board__val {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
}

.page-news .board-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 18px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--hair-soft);
  list-style: none;
  font-size: 13px;
  color: var(--ink-dim);
}

.page-news .board-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.page-news .dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.page-news .dot--safe { background: var(--safe); }
.page-news .dot--mid { background: var(--grid); }
.page-news .dot--danger { background: var(--danger); }

@media (min-width: 900px) {
  .page-news .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
    gap: 44px;
  }
}

/* ---------- 战绩窗口 ---------- */
.page-news .form-window {
  padding-top: 56px;
}

.page-news .window-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}

.page-news .window-card {
  padding: 22px 20px 24px;
  border: 1px solid var(--hair-soft);
  border-top-width: 3px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(23, 34, 74, 0.55), rgba(14, 23, 52, 0.55));
}

.page-news .window-card--six { border-top-color: var(--brand); }
.page-news .window-card--ten { border-top-color: var(--brand-soft); }
.page-news .window-card--season { border-top-color: var(--safe); }

.page-news .window-card__label {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}

.page-news .window-card__num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 12px;
  color: var(--ink);
}

.page-news .window-card--season .data-num--xl { color: var(--safe); }

.page-news .window-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-body);
}

.page-news .window-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: rgba(23, 34, 74, 0.45);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-body);
}

.page-news .window-note a {
  color: var(--brand-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 760px) {
  .page-news .window-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ---------- 条目列表 ---------- */
.page-news .entry-section {
  padding-top: 64px;
}

.page-news .filter-bar {
  margin: 26px 0 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.page-news .entry-list {
  margin-top: 8px;
  border-top: 1px solid var(--hair);
}

.page-news .entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hair-soft);
}

.page-news .entry__num {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  transition: color 240ms ease;
}

.page-news .entry.is-visible .entry__num {
  color: var(--brand);
}

.page-news .entry__body {
  min-width: 0;
}

.page-news .entry__media {
  margin: 0 0 20px;
  border: 1px solid var(--hair-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--raise);
}

.page-news .entry__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: cover;
}

.page-news .entry--lead .entry__media img {
  aspect-ratio: 14 / 9;
}

.page-news .entry__media--wide img {
  aspect-ratio: 3 / 2;
}

.page-news .entry__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 12px;
  color: var(--ink-dim);
  font-size: 13px;
}

.page-news .entry__title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-news .entry__summary {
  margin: 0 0 16px;
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-body);
}

.page-news .entry__aside {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--hair-soft);
  border-radius: var(--r-md);
  background: rgba(14, 23, 52, 0.55);
}

.page-news .aside-head {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
}

.page-news .aside-head + .aside-list {
  margin-bottom: 18px;
}

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

.page-news .aside-list__item {
  padding: 10px 0;
  border-bottom: 1px dashed var(--hair-soft);
}

.page-news .aside-list__item:last-child {
  border-bottom: 0;
}

.page-news .aside-list__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.page-news .aside-list__key {
  font-size: 14px;
  color: var(--ink-dim);
}

.page-news .aside-list__val {
  font-family: var(--mono);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.page-news .aside-hint {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-dim);
  transition: max-height 260ms ease, opacity 200ms ease, margin-top 240ms ease;
}

.page-news .aside-list__item:hover .aside-hint,
.page-news .aside-list__item:focus-within .aside-hint {
  max-height: 96px;
  opacity: 1;
  margin-top: 8px;
}

.page-news .pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .expand {
  margin-top: 6px;
}

@media (min-width: 960px) {
  .page-news .entry {
    grid-template-columns: 56px minmax(0, 1fr) 290px;
    gap: 34px;
    padding: 38px 0;
  }

  .page-news .entry__num {
    padding-top: 6px;
  }

  .page-news .entry__aside {
    padding: 0 0 0 24px;
    border: 0;
    border-left: 1px solid var(--hair-soft);
    border-radius: 0;
    background: transparent;
  }
}

/* ---------- 分类标签 ---------- */
.page-news .tag--europe {
  color: var(--cat-europe);
  background: rgba(255, 90, 31, 0.14);
  border-color: rgba(255, 90, 31, 0.34);
}

.page-news .tag--domestic {
  color: var(--cat-domestic);
  background: rgba(53, 192, 142, 0.14);
  border-color: rgba(53, 192, 142, 0.3);
}

.page-news .tag--setpiece {
  color: var(--cat-setpiece);
  background: rgba(110, 130, 216, 0.18);
  border-color: rgba(110, 130, 216, 0.36);
}

.page-news .tag--release {
  color: var(--cat-release);
  background: rgba(154, 166, 200, 0.14);
  border-color: rgba(154, 166, 200, 0.3);
}

.page-news .tag--archive {
  color: var(--cat-archive);
  background: rgba(59, 74, 122, 0.28);
  border-color: rgba(59, 74, 122, 0.55);
}

/* ---------- 赛季年报 ---------- */
.page-news .report {
  padding-top: 68px;
}

.page-news .report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.page-news .report-cover {
  margin: 0;
  border: 1px solid var(--hair-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--raise);
}

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

.page-news .report-cover .media-frame__cap {
  display: block;
  padding: 10px 14px;
  border-top: 1px solid var(--hair-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

.page-news .report-body__lead {
  margin: 14px 0 26px;
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-body);
}

.page-news .report-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hair-soft);
}

.page-news .report-list__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair-soft);
}

.page-news .report-list__num {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.page-news .report-list__title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-news .report-list__content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-body);
}

.page-news .report-actions {
  margin-top: 26px;
}

@media (min-width: 900px) {
  .page-news .report-grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 44px;
  }

  .page-news .report-cover {
    position: sticky;
    top: calc(var(--brandbar-h) + 76px);
  }
}

/* ---------- 归档 ---------- */
.page-news .archive {
  padding-top: 68px;
}

.page-news .archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
  padding: 0;
  list-style: none;
}

.page-news .archive-tags .tag {
  padding: 7px 14px;
  font-size: 13px;
}

.page-news .archive-list {
  border-top: 1px solid var(--hair);
}

.page-news .archive-item {
  margin: 0;
  border-bottom: 1px solid var(--hair-soft);
}

.page-news .archive-item .expand__trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px 16px;
  width: 100%;
  padding: 20px 0;
  text-align: left;
}

.page-news .archive-item__phase {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.page-news .archive-item__title {
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-news .archive-item .expand__inner p {
  margin: 0 0 16px;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-body);
}

@media (min-width: 760px) {
  .page-news .archive-item .expand__trigger {
    grid-template-columns: 120px auto minmax(0, 1fr);
  }

  .page-news .archive-item .expand__icon {
    grid-column: 2;
    grid-row: 1;
  }

  .page-news .archive-item__phase {
    grid-column: 1;
    grid-row: 1;
  }

  .page-news .archive-item__title {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .entry__num,
  .page-news .aside-hint {
    transition: none;
  }
}
