/* ===== 赛事动态页专属样式 ===== */
.page-news {
  --news-line: rgba(123, 168, 146, 0.24);
  --news-chip-bg: rgba(123, 168, 146, 0.14);
  --news-panel-edge: rgba(200, 164, 92, 0.28);
  overflow-x: hidden;
}

/* ---- 面包屑 ---- */
.page-news .breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted-green);
}
.page-news .breadcrumb__list a {
  color: var(--muted-green);
  text-decoration: none;
  transition: color 0.25s ease;
}
.page-news .breadcrumb__list a:hover {
  color: var(--gold-accent);
}
.page-news .breadcrumb__sep {
  color: var(--gold-accent);
}

/* ---- 页首研究板 ---- */
.page-news .page-intro--news {
  padding-top: 24px;
  position: relative;
}
.page-news .page-intro__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-news .page-intro__text {
  background: var(--pitch-base);
  border-left: 4px solid var(--gold-accent);
  padding: 28px 22px 34px;
  position: relative;
  z-index: 2;
}
.page-news .page-intro__kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-accent);
}
.page-news .page-intro__text h1 {
  margin: 0 0 18px;
  font-family: var(--font-headline);
  font-weight: 900;
  line-height: 1.18;
  color: var(--cream-text);
}
.page-news .page-intro__main {
  display: block;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.page-news .page-intro__sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  font-weight: 700;
  color: var(--gold-soft);
}
.page-news .page-intro__lead {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-text);
  max-width: 46ch;
  opacity: 0.9;
}
.page-news .page-intro__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--muted-green);
  margin-bottom: 22px;
}
.page-news .page-intro__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-accent);
}
.page-news .page-intro__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.page-news .page-intro__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .page-intro__geo {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 19, 12, 0.62);
  border: 1px solid rgba(200, 164, 92, 0.3);
  border-radius: 50%;
}
.page-news .page-intro__geo svg {
  width: 60%;
  height: 60%;
}

/* ---- 板块标题补充 ---- */
.page-news .section-head {
  margin-bottom: 28px;
}
.page-news .section-head__text {
  flex: 1 1 auto;
  min-width: 0;
}
.page-news .section-head__desc {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-green);
}

/* ---- 横向时间带 ---- */
.page-news .news-timeline {
  margin-top: 56px;
  background: var(--pitch-base);
  padding: 56px 0 64px;
  position: relative;
  clip-path: polygon(0 14px, 100% 0, 100% calc(100% - 14px), 0 100%);
}
.page-news .news-timeline__track {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--gold-accent) rgba(123, 168, 146, 0.18);
}
.page-news .news-timeline__list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 6px 24px 24px;
  width: max-content;
  min-width: 100%;
}
.page-news .news-timeline__item {
  flex: 0 0 clamp(250px, 60vw, 340px);
  scroll-snap-align: start;
}
.page-news .news-timeline__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 224px;
  padding: 26px 24px 24px;
  background: var(--ink-deep);
  border: 1px solid var(--news-panel-edge);
  text-decoration: none;
  color: var(--cream-text);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}
.page-news .news-timeline__item:nth-child(even) .news-timeline__card {
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}
.page-news .news-timeline__card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-accent);
}
.page-news .news-timeline__num {
  font-family: var(--font-data);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-accent);
  margin-bottom: 18px;
}
.page-news .news-timeline__tag {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gold-soft);
  background: var(--news-chip-bg);
  border: 1px solid rgba(200, 164, 92, 0.22);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.page-news .news-timeline__heading {
  margin: 0 0 8px;
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--cream-text);
}
.page-news .news-timeline__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-green);
}

/* ---- 快讯筛选 ---- */
.page-news .news-feed {
  padding: var(--space-section) 0 0;
  position: relative;
}
.page-news .news-feed .main-wrap {
  position: relative;
}
.page-news .news-feed .main-wrap::before {
  content: "12";
  position: absolute;
  right: 8px;
  top: 60px;
  font-family: var(--font-data);
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 800;
  line-height: 1;
  color: rgba(123, 168, 146, 0.055);
  pointer-events: none;
  z-index: 0;
}
.page-news .news-filter {
  position: relative;
  z-index: 1;
}
.page-news .news-filter__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 8px;
}
.page-news .news-filter__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.page-news .news-filter__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  color: var(--cream-text);
  background: var(--news-chip-bg);
  border: 1px solid var(--news-line);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.page-news .news-filter__chip:hover {
  border-color: var(--gold-accent);
}
.page-news .news-filter__count {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--muted-green);
  transition: color 0.25s ease;
}

/* 筛选标签激活态 */
.page-news #news-cat-all:checked ~ .news-filter__bar label[for="news-cat-all"],
.page-news #news-cat-version:checked ~ .news-filter__bar label[for="news-cat-version"],
.page-news #news-cat-report:checked ~ .news-filter__bar label[for="news-cat-report"],
.page-news #news-cat-mobile:checked ~ .news-filter__bar label[for="news-cat-mobile"],
.page-news #news-cat-data:checked ~ .news-filter__bar label[for="news-cat-data"] {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--ink-deep);
}
.page-news #news-cat-all:checked ~ .news-filter__bar label[for="news-cat-all"] .news-filter__count,
.page-news #news-cat-version:checked ~ .news-filter__bar label[for="news-cat-version"] .news-filter__count,
.page-news #news-cat-report:checked ~ .news-filter__bar label[for="news-cat-report"] .news-filter__count,
.page-news #news-cat-mobile:checked ~ .news-filter__bar label[for="news-cat-mobile"] .news-filter__count,
.page-news #news-cat-data:checked ~ .news-filter__bar label[for="news-cat-data"] .news-filter__count {
  color: rgba(7, 19, 12, 0.7);
}

/* 键盘聚焦态 */
.page-news #news-cat-all:focus-visible ~ .news-filter__bar label[for="news-cat-all"],
.page-news #news-cat-version:focus-visible ~ .news-filter__bar label[for="news-cat-version"],
.page-news #news-cat-report:focus-visible ~ .news-filter__bar label[for="news-cat-report"],
.page-news #news-cat-mobile:focus-visible ~ .news-filter__bar label[for="news-cat-mobile"],
.page-news #news-cat-data:focus-visible ~ .news-filter__bar label[for="news-cat-data"] {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

/* 筛选逻辑 */
.page-news .news-filter__input:checked ~ .news-filter__list .news-entry {
  display: none;
}
.page-news #news-cat-all:checked ~ .news-filter__list .news-entry,
.page-news #news-cat-version:checked ~ .news-filter__list .news-entry[data-topic="version"],
.page-news #news-cat-report:checked ~ .news-filter__list .news-entry[data-topic="report"],
.page-news #news-cat-mobile:checked ~ .news-filter__list .news-entry[data-topic="mobile"],
.page-news #news-cat-data:checked ~ .news-filter__list .news-entry[data-topic="data"] {
  display: grid;
}

/* ---- 快讯条目 ---- */
.page-news .news-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--news-line);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.page-news .news-entry:last-child {
  border-bottom: none;
}
.page-news .news-entry__figure {
  margin: 0;
  position: relative;
}
.page-news .news-entry__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .news-entry__figure-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
  width: 100%;
  background: linear-gradient(135deg, var(--pitch-light), var(--ink-deep));
  border: 1px solid rgba(200, 164, 92, 0.2);
  position: relative;
}
.page-news .news-entry__figure-placeholder--caution {
  border-color: rgba(226, 98, 59, 0.42);
  background: linear-gradient(135deg, rgba(226, 98, 59, 0.18), var(--ink-deep));
}
.page-news .news-entry__placeholder-mark {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--cream-text);
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: 1px solid rgba(200, 164, 92, 0.4);
  background: rgba(7, 19, 12, 0.4);
}
.page-news .news-entry__figure-placeholder--caution .news-entry__placeholder-mark {
  border-color: rgba(226, 98, 59, 0.5);
}
.page-news .news-entry__placeholder-line {
  width: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}
.page-news .news-entry__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.page-news .news-entry__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--news-line);
  background: var(--news-chip-bg);
  color: var(--gold-soft);
}
.page-news .news-entry__tag--version {
  color: var(--gold-soft);
  border-color: rgba(200, 164, 92, 0.42);
}
.page-news .news-entry__tag--report {
  color: var(--cream-text);
  border-color: rgba(241, 234, 216, 0.3);
}
.page-news .news-entry__tag--mobile {
  color: var(--muted-green);
  border-color: rgba(123, 168, 146, 0.4);
}
.page-news .news-entry__tag--data {
  color: var(--gold-accent);
  border-color: rgba(200, 164, 92, 0.3);
}
.page-news .news-entry__index {
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--muted-green);
  letter-spacing: 0.1em;
}
.page-news .news-entry__title {
  margin: 0 0 10px;
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--cream-text);
}
.page-news .news-entry__summary {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted-green);
}
.page-news .news-entry__link {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--gold-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.page-news .news-entry__link:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}
.page-news .news-entry__facts {
  background: var(--pitch-base);
  border-left: 3px solid var(--gold-accent);
  padding: 18px 18px 16px;
  font-family: var(--font-data);
}
.page-news .news-entry__fact-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-green);
  margin-bottom: 4px;
}
.page-news .news-entry__fact-value {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream-text);
}
.page-news .news-entry__fact-meta {
  display: block;
  font-size: 12px;
  color: var(--gold-soft);
}

/* ---- 专题研究 ---- */
.page-news .news-research {
  padding: var(--space-section) 0 0;
}
.page-news .news-research__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}
.page-news .news-research__feature {
  background: var(--pitch-base);
  border: 1px solid var(--news-panel-edge);
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.page-news .news-research__figure {
  margin: 0;
  position: relative;
}
.page-news .news-research__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .news-research__figure-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 12px;
  background: var(--overlay-dark);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}
.page-news .news-research__feature-body {
  padding: 26px 24px 28px;
}
.page-news .news-research__tag {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--news-chip-bg);
  color: var(--gold-soft);
  border: 1px solid var(--news-panel-edge);
}
.page-news .news-research__tag--gold {
  background: rgba(200, 164, 92, 0.14);
  border-color: rgba(200, 164, 92, 0.4);
  color: var(--gold-soft);
}
.page-news .news-research__tag--green {
  color: var(--muted-green);
  border-color: rgba(123, 168, 146, 0.4);
  background: rgba(123, 168, 146, 0.1);
}
.page-news .news-research__feature-body h3 {
  margin: 14px 0 12px;
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--cream-text);
}
.page-news .news-research__feature-body p {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted-green);
}
.page-news .news-research__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-news .news-research__item {
  display: flex;
  gap: 18px;
  padding: 22px 20px;
  background: rgba(15, 61, 46, 0.42);
  border: 1px solid var(--news-line);
  border-left: 3px solid var(--gold-accent);
  transition: background 0.3s ease;
}
.page-news .news-research__item:hover {
  background: var(--pitch-base);
}
.page-news .news-research__num {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-accent);
}
.page-news .news-research__item-body h3 {
  margin: 10px 0 6px;
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--cream-text);
}
.page-news .news-research__item-body p {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-green);
}
.page-news .news-research__link {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--gold-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.page-news .news-research__link:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}

/* ---- 订阅与支持 ---- */
.page-news .news-support {
  margin: 32px 0 24px;
  background: var(--pitch-base);
  padding: clamp(2.8rem, 7vw, 4.5rem) 0;
  clip-path: polygon(0 14px, 100% 0, 100% calc(100% - 14px), 0 100%);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.page-news .news-support__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.page-news .news-support__kicker {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.page-news .news-support__intro h2 {
  margin: 10px 0 16px;
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--cream-text);
}
.page-news .news-support__intro p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted-green);
}
.page-news .news-support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-news .news-support__contacts {
  background: var(--ink-deep);
  border: 1px solid var(--news-panel-edge);
  padding: 24px 22px;
  align-self: start;
}
.page-news .news-support__contacts-title {
  margin: 0 0 16px;
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-soft);
}
.page-news .news-support__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .news-support__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--news-line);
}
.page-news .news-support__list li:last-child {
  border-bottom: none;
}
.page-news .news-support__label {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-green);
}
.page-news .news-support__list strong {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream-text);
  line-height: 1.5;
}
.page-news .news-support__trust {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--news-line);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-green);
}

/* ---- 桌面端 ---- */
@media (min-width: 800px) {
  .page-news .page-intro--news {
    padding-top: 32px;
  }
  .page-news .page-intro__panel {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 0;
    align-items: stretch;
  }
  .page-news .page-intro__text {
    margin-right: -4%;
    padding: 48px 64px 56px 40px;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  }
  .page-news .page-intro__visual {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 4% 100%);
  }
  .page-news .page-intro__geo {
    width: 112px;
    height: 112px;
    right: 36px;
    bottom: 36px;
  }
  .page-news .page-intro__lead {
    font-size: 17px;
  }

  .page-news .news-entry {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr) minmax(0, 220px);
    gap: 28px;
    align-items: stretch;
  }
  .page-news .news-entry__figure {
    align-self: center;
  }
  .page-news .news-entry__facts {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 860px) {
  .page-news .news-support__panel {
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    gap: 40px;
    align-items: end;
  }
  .page-news .news-support__list {
    column-count: 2;
    column-gap: 24px;
  }
  .page-news .news-support__list li {
    break-inside: avoid;
  }
}

@media (min-width: 900px) {
  .page-news .news-research__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: stretch;
  }
  .page-news .news-research__feature {
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .page-news .news-research__feature-body {
    padding: 28px 28px 30px;
  }
}

@media (min-width: 1280px) {
  .page-news .news-timeline__list {
    padding-left: calc((100vw - var(--content-max)) / 2);
    padding-right: calc((100vw - var(--content-max)) / 2);
  }
}

/* ---- 减少动态 ---- */
@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
