/* ===================== 赛事日志页 page-news ===================== */
.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  font-size: 13px;
}

.page-news .breadcrumb a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: var(--transition);
}

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

.page-news .breadcrumb span[aria-current="page"] {
  color: var(--c-neon);
  font-weight: 700;
}

.page-news .breadcrumb [aria-hidden="true"] {
  color: rgba(255, 255, 255, .35);
}

/* ---- 首屏 ---- */
.page-news .news-hero {
  background: var(--c-deep);
  color: var(--c-white);
  padding: calc(var(--header-h-mobile) + 36px) 0 72px;
  position: relative;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(57, 255, 20, .10) 0, transparent 34%),
    radial-gradient(circle at 86% 28%, rgba(255, 107, 53, .16) 0, transparent 30%);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: linear-gradient(105deg, var(--c-orange) 0 74%, var(--c-neon) 74% 100%);
  z-index: 2;
}

.page-news .news-hero .container {
  position: relative;
  z-index: 1;
}

.page-news .news-hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

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

.page-news .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--c-neon);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.page-news .news-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 8vw, 56px);
  line-height: 1.02;
  margin: 0 0 14px;
  color: var(--c-white);
  letter-spacing: .01em;
}

.page-news .news-hero h1 em {
  font-style: normal;
  display: block;
  margin-top: 6px;
  color: var(--c-orange);
  font-family: var(--font-body);
  font-size: .38em;
  font-weight: 700;
  letter-spacing: .24em;
}

.page-news .news-hero-meta {
  margin: 0 0 14px;
  font-family: var(--font-num);
  font-size: 14px;
  color: var(--c-neon);
}

.page-news .news-hero-lead {
  margin: 0 0 28px;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .8);
}

/* 数据统计条 */
.page-news .news-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  max-width: 520px;
}

.page-news .hero-stat {
  background: var(--c-deep-2);
  padding: 14px 8px;
  text-align: center;
}

.page-news .hero-stat .stat-number {
  display: block;
  font-family: var(--font-num);
  font-size: 24px;
  line-height: 1.1;
  color: var(--c-orange);
}

.page-news .hero-stat .stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}

/* 框景头条 */
.page-news .news-feature {
  display: grid;
  background: var(--c-deep-2);
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 6px solid var(--c-orange);
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}

.page-news .news-feature-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.page-news .news-feature-media .data-tag {
  position: absolute;
  left: 14px;
  top: 14px;
}

.page-news .news-feature-body {
  padding: 24px 22px 28px;
}

.page-news .news-feature-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-num);
  font-size: 12px;
}

.page-news .news-feature-id {
  color: rgba(255, 255, 255, .5);
  letter-spacing: .12em;
}

.page-news .news-feature-date {
  color: var(--c-neon);
  font-weight: 700;
}

.page-news .news-feature-body h2 {
  font-family: var(--font-head);
  font-size: 26px;
  line-height: 1.2;
  color: var(--c-white);
  margin: 0 0 12px;
}

.page-news .news-feature-body p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
}

/* ---- 分类筛选 ---- */
.page-news .news-filter {
  background: var(--c-light);
  padding: 56px 0 28px;
}

.page-news .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-deep);
}

.page-news .section-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.1;
  color: var(--c-deep);
}

.page-news .section-head .eyebrow {
  margin-bottom: 6px;
  color: var(--c-orange);
}

.page-news .section-head .side-note {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--c-gray);
}

.page-news .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-deep);
  background: var(--c-white);
  border: 1.5px solid var(--c-deep);
  box-shadow: 3px 3px 0 var(--c-deep);
  text-decoration: none;
  transition: var(--transition);
}

.page-news .filter-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--c-deep);
}

.page-news .filter-btn.is-active {
  background: var(--c-orange);
  border-color: var(--c-orange);
  box-shadow: 3px 3px 0 var(--c-deep);
}

/* ---- 最新动态 / 时间轴 ---- */
.page-news .news-latest {
  background: var(--c-white);
  padding: 56px 0 72px;
}

.page-news .timeline {
  position: relative;
}

.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-orange) 0%, var(--c-neon) 55%, var(--c-border) 100%);
}

.page-news .timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 36px;
}

.page-news .timeline-item:last-child {
  margin-bottom: 0;
}

.page-news .timeline-dot {
  position: absolute;
  left: -50px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-white);
  border: 5px solid var(--c-orange);
  box-shadow: 0 0 0 4px var(--c-white);
}

.page-news .timeline-week {
  position: absolute;
  left: -51px;
  top: 0;
  width: 26px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-deep);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow: 2px 2px 0 rgba(6, 19, 43, .06);
}

/* 档案卡 */
.page-news .news-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-border);
  padding: 24px;
  box-shadow: var(--shadow-1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.page-news .news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.page-news .news-card--schedule {
  border-top-color: var(--c-orange);
}

.page-news .news-card--data {
  border-top-color: var(--c-neon);
}

.page-news .news-card--feature {
  border-top-color: var(--c-deep);
}

.page-news .news-card--review {
  border-top-color: var(--c-orange);
}

.page-news .news-card--dark {
  background: var(--c-deep);
  border-color: var(--c-deep);
  border-top-color: var(--c-neon);
  color: var(--c-white);
}

.page-news .news-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: -24px -24px 20px;
}

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

.page-news .news-card-media .data-tag {
  position: absolute;
  left: 12px;
  top: 12px;
}

.page-news .news-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.page-news .news-card-id {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--c-gray);
}

.page-news .news-card-time {
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-orange);
}

.page-news .news-card--dark .news-card-id {
  color: rgba(255, 255, 255, .5);
}

.page-news .news-card--dark .news-card-time {
  color: var(--c-neon);
}

.page-news .news-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 21px;
  line-height: 1.3;
  color: var(--c-dark);
}

.page-news .news-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-gray);
}

.page-news .news-card--dark h3 {
  color: var(--c-white);
}

.page-news .news-card--dark p {
  color: rgba(255, 255, 255, .78);
}

.page-news .news-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: var(--transition);
}

.page-news .news-link:hover {
  color: var(--c-deep);
}

.page-news .news-card--dark .news-link {
  color: var(--c-neon);
}

.page-news .news-card--dark .news-link:hover {
  color: var(--c-white);
  border-color: var(--c-white);
}

/* ---- 专题回顾 ---- */
.page-news .news-special {
  background: var(--c-deep);
  color: var(--c-white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-news .news-special::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 280px;
  height: 280px;
  border: 26px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-special .section-head {
  border-bottom-color: rgba(255, 255, 255, .22);
}

.page-news .news-special .section-head h2 {
  color: var(--c-white);
}

.page-news .news-special .section-head .eyebrow {
  color: var(--c-neon);
}

.page-news .news-special .section-head .side-note {
  color: rgba(255, 255, 255, .56);
}

.page-news .special-grid {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-news .special-card {
  background: var(--c-deep-2);
  border: 1px solid rgba(255, 255, 255, .14);
  border-top: 4px solid transparent;
  padding: 26px 24px;
  transition: transform var(--transition), border-color var(--transition);
}

.page-news .special-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--c-orange);
  border-color: rgba(255, 107, 53, .55);
}

.page-news .special-card--featured {
  border-top-color: var(--c-orange);
}

.page-news .special-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.page-news .special-no {
  font-family: var(--font-num);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--c-neon);
}

.page-news .special-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.28;
  color: var(--c-white);
}

.page-news .special-card p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
}

.page-news .special-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.page-news .special-link:hover {
  border-color: var(--c-orange);
  color: var(--c-neon);
}

/* ---- 服务条 ---- */
.page-news .news-service {
  background: var(--c-deep-2);
  border-top: 4px solid var(--c-orange);
}

.page-news .service-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 0;
}

.page-news .service-text {
  margin: 0;
  max-width: 34em;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
}

.page-news .service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-service .btn-ghost {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, .5);
}

/* ---- 焦点可见性 ---- */
.page-news a:focus-visible,
.page-news .filter-btn:focus-visible {
  outline: 3px solid var(--c-neon);
  outline-offset: 2px;
}

/* ---- 桌面端布局 ---- */
@media (min-width: 768px) {
  .page-news .news-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 88px;
  }

  .page-news .news-hero-grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 48px;
  }

  .page-news .news-feature {
    grid-template-columns: 1.05fr 1fr;
  }

  .page-news .news-feature-body {
    padding: 28px 24px;
  }

  .page-news .news-feature-body h2 {
    font-size: 28px;
  }

  .page-news .news-filter {
    padding-top: 64px;
  }

  .page-news .timeline-item {
    padding-left: 160px;
  }

  .page-news .timeline::before {
    left: 28px;
  }

  .page-news .timeline-dot {
    left: -142px;
    top: 24px;
  }

  .page-news .timeline-week {
    left: -112px;
    top: 4px;
    width: 88px;
    height: auto;
    min-height: 30px;
    writing-mode: horizontal-tb;
    justify-content: flex-start;
    padding-left: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-left: 4px solid var(--c-orange);
    letter-spacing: .08em;
  }

  .page-news .news-latest {
    padding-top: 64px;
  }

  .page-news .special-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .page-news .service-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1100px) {
  .page-news .news-feature-body {
    padding: 36px 32px;
  }

  .page-news .news-feature-body h2 {
    font-size: 32px;
  }
}
