.page-news {
  --news-item-gap: 16px;
  --news-card-shadow: 0 10px 28px rgba(29, 29, 27, 0.1);
}

/* ===== Hero 区 ===== */
.page-news__hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #002a44 0%, var(--sport-blue) 58%, #0e4a6c 100%);
  padding: 36px 0 44px;
  color: #fff;
}

.page-news__hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--accent-orange) 0%, var(--gold) 70%, transparent 100%);
}

.page-news__hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -60px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  transform: rotate(16deg);
  pointer-events: none;
}

.page-news__hero .breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.page-news__hero .breadcrumb__link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.page-news__hero .breadcrumb__link:hover {
  color: var(--accent-orange);
}

.page-news__hero .breadcrumb__divider {
  margin: 0 8px;
  opacity: 0.5;
}

.page-news__hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-news__hero-title {
  margin: 16px 0 12px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.22;
  color: #fff;
  max-width: 640px;
}

.page-news__hero-lead {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

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

.page-news__stat {
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent-orange);
  padding: 12px 10px 10px;
}

.page-news__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 4px;
  font-family: var(--font-index);
  letter-spacing: 0.06em;
}

.page-news__stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

/* ===== 布局 ===== */
.page-news__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 36px;
  padding-bottom: 64px;
}

.page-news__aside {
  flex: 0 0 auto;
}

.page-news__aside-inner {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: 2px 4px 0 rgba(0, 59, 92, 0.06);
}

.page-news__aside-kicker {
  display: block;
  font-family: var(--font-index);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-minor);
  margin-bottom: 12px;
}

.page-news__aside-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 14px;
  scrollbar-width: thin;
}

.page-news__aside-link {
  display: inline-block;
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-major);
  background: var(--paper-base);
  border: 1px solid var(--line);
  padding: 7px 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.page-news__aside-link:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.page-news__aside-status {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.page-news__aside-copy {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-minor);
}

.page-news__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.page-news__section {
  scroll-margin-top: 96px;
}

/* ===== 章节头部 ===== */
.page-news .section-head {
  margin-bottom: 24px;
}

.page-news .section-head__index {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 64px;
  line-height: 0.9;
}

.page-news .section-head__desc {
  font-size: 14px;
}

/* ===== 图片 ===== */
.page-news__feature-img,
.page-news__tech-figure,
.page-news__member-figure {
  margin: 0 0 20px;
}

.page-news__feature-img img,
.page-news__tech-figure img,
.page-news__member-figure img,
.page-news__topic-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== 新闻条目 ===== */
.page-news__list {
  display: flex;
  flex-direction: column;
  gap: var(--news-item-gap);
}

.page-news__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--paper-base);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  padding: 16px 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-news__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--news-card-shadow);
  border-left-color: var(--accent-orange);
}

.page-news__item-index {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 32px;
  line-height: 1;
  color: var(--gold);
  min-width: 36px;
  text-align: right;
}

.page-news__item-body {
  min-width: 0;
  flex: 1;
}

.page-news__item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.page-news__item-time,
.page-news__item-author {
  font-family: var(--font-index);
  font-size: 12px;
  color: var(--ink-minor);
}

.page-news__item-title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--ink-major);
}

.page-news__item-excerpt {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-minor);
}

.page-news__item-author {
  font-size: 11px;
  opacity: 0.8;
}

.page-news__more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ===== 赛事专题 ===== */
.page-news__topic-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  background: var(--paper-base);
  border: 1px solid var(--line);
  box-shadow: var(--news-card-shadow);
  overflow: hidden;
}

.page-news__topic-figure {
  margin: 0;
}

.page-news__topic-body {
  padding: 18px 16px;
}

.page-news__card-kicker {
  display: block;
  font-family: var(--font-index);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.page-news__topic-title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--ink-major);
}

.page-news__topic-text {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-minor);
}

/* ===== 联系提示 ===== */
.page-news__notice {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: var(--sport-blue);
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-news__notice::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: rotate(20deg);
}

.page-news__notice .tag--gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.page-news__notice-title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
}

.page-news__notice-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

/* ===== 平板 ===== */
@media (min-width: 768px) {
  .page-news__hero {
    padding: 48px 0 56px;
  }

  .page-news__hero-title {
    font-size: 38px;
  }

  .page-news__hero-stats {
    gap: 16px;
  }

  .page-news__stat {
    padding: 18px 16px 14px;
  }

  .page-news__stat-num {
    font-size: 30px;
  }

  .page-news__aside-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .page-news__aside-link {
    text-align: center;
  }

  .page-news__topic-card {
    flex-direction: row;
  }

  .page-news__topic-figure {
    flex: 0 0 260px;
    max-width: 260px;
  }

  .page-news__topic-figure img {
    height: 100%;
    object-fit: cover;
  }

  .page-news__topic-body {
    flex: 1;
    padding: 24px;
  }

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

/* ===== 桌面 ===== */
@media (min-width: 1024px) {
  .page-news__layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
  }

  .page-news__aside {
    position: sticky;
    top: 140px;
  }

  .page-news__aside-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .page-news__aside-link {
    display: block;
    text-align: left;
    background: transparent;
    border: none;
    border-left: 3px solid var(--line);
    border-radius: 0;
    padding: 10px 12px;
    color: var(--ink-major);
  }

  .page-news__aside-link:hover {
    border-left-color: var(--accent-orange);
    color: var(--accent-orange);
    background: var(--paper-base);
  }

  .page-news__hero-title {
    font-size: 44px;
  }

  .page-news__hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: end;
  }

  .page-news__hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-news__stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .page-news__stat-label {
    margin: 0;
  }

  .page-news .section-head__index {
    font-size: 88px;
  }

  .page-news__item {
    padding: 20px 20px;
  }

  .page-news__item-index {
    font-size: 36px;
    min-width: 44px;
  }
}
