.page-news {
  --news-gold: var(--c-gold);
  --news-gold-light: var(--c-gold-light);
  --news-deep: var(--c-deep);
  --news-main: var(--c-main);
  --news-white: var(--c-white);
  --news-stone: var(--c-stone);
  --news-moss: var(--c-moss);
  --news-terra: var(--c-terra);

  background: var(--news-white);
  overflow-x: clip;
  color: var(--news-stone);
}

/* ===== 报头 ===== */
.page-news__masthead {
  position: relative;
  background: linear-gradient(105deg, var(--news-deep) 0%, #12355E 55%, var(--news-main) 100%);
  color: var(--news-white);
  padding: 32px 0 44px;
  overflow: hidden;
}
.page-news__masthead::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -30px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(217, 166, 46, 0.28);
  border-radius: 32px;
  transform: rotate(45deg);
  background: rgba(217, 166, 46, 0.08);
}
.page-news__masthead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--news-gold) 0%, var(--news-gold) 280px, transparent 280px);
}
.page-news__masthead-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.page-news__masthead .breadcrumb__item {
  color: rgba(247, 250, 252, 0.75);
}
.page-news__masthead h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.25;
  margin: 6px 0 0;
  color: var(--news-white);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.page-news__masthead-desc {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(247, 250, 252, 0.82);
  max-width: 780px;
}
.page-news__masthead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.page-news__masthead-aside {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-left: 3px solid var(--news-gold);
  background: rgba(10, 31, 60, 0.35);
}
.page-news__round-badge {
  font-family: var(--font-mono);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  color: var(--news-gold);
}
.page-news__round-caption {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(247, 250, 252, 0.85);
}

/* ===== 全景横幅 ===== */
.page-news__panorama {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--news-deep);
}
.page-news__panorama img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 赛程日历 ===== */
.page-news__schedule {
  background: var(--news-deep);
  padding: 48px 0 56px;
  color: var(--news-white);
}
.page-news__schedule-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.page-news__schedule-head h2 {
  font-size: 26px;
  margin: 0;
  color: var(--news-white);
  font-family: var(--font-heading);
  line-height: 1.3;
}
.page-news__schedule-desc {
  margin: 8px 0 0;
  color: rgba(247, 250, 252, 0.7);
  font-size: 14px;
  font-family: var(--font-mono);
}
.page-news__schedule-badge {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid rgba(107, 143, 113, 0.65);
  color: var(--news-moss);
  border-radius: 999px;
  background: rgba(107, 143, 113, 0.14);
  white-space: nowrap;
}
.page-news__calendar {
  display: flex;
  gap: 16px;
  margin: 28px -16px 0;
  padding: 4px 16px 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--news-gold) rgba(247, 250, 252, 0.16);
}
.page-news__calendar::-webkit-scrollbar {
  height: 8px;
}
.page-news__calendar::-webkit-scrollbar-track {
  background: rgba(247, 250, 252, 0.12);
  border-radius: 4px;
}
.page-news__calendar::-webkit-scrollbar-thumb {
  background: var(--news-gold);
  border-radius: 4px;
}

.page-news__cal-day {
  flex: 0 0 250px;
  scroll-snap-align: start;
  position: relative;
  background: var(--news-white);
  color: var(--news-stone);
  border-radius: var(--radius-cut);
  border-left: 5px solid var(--news-gold);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(6, 18, 36, 0.35);
}
.page-news__cal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(27, 79, 138, 0.18);
}
.page-news__cal-round {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--news-main);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.page-news__cal-no {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--news-gold);
}
.page-news__cal-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 0;
}
.page-news__cal-team {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--news-deep);
}
.page-news__cal-vs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--news-stone);
  opacity: 0.55;
}
.page-news__cal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 8px;
}
.page-news__cal-time {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--news-main);
  font-size: 14px;
  white-space: nowrap;
}
.page-news__cal-venue {
  text-align: right;
  line-height: 1.4;
}
.page-news__cal-status {
  position: absolute;
  top: -8px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(107, 143, 113, 0.16);
  color: var(--news-moss);
  border: 1px solid rgba(107, 143, 113, 0.5);
}
.page-news__cal-status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--news-moss);
}
.page-news__calendar-tip {
  margin-top: 10px;
  text-align: center;
  color: rgba(247, 250, 252, 0.55);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

/* ===== 文章区 ===== */
.page-news__articles-area {
  background: var(--news-white);
}
.page-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  padding: 48px 0 64px;
}

.page-news__category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}
.page-news__cat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 18px 10px 22px;
  color: var(--news-main);
  background: var(--news-white);
  border: 1px solid rgba(27, 79, 138, 0.22);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 14px 100%);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.page-news__cat-chip:hover,
.page-news__cat-chip:focus-visible {
  background: var(--news-gold);
  border-color: var(--news-gold);
  color: var(--news-deep);
}

.page-news__cat-group {
  margin-top: 34px;
  scroll-margin-top: 80px;
}
.page-news__cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(27, 79, 138, 0.08);
}
.page-news__cat-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--news-deep);
  margin: 0;
  position: relative;
  padding-left: 14px;
}
.page-news__cat-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, var(--news-gold), var(--news-gold-light));
  border-radius: 2px;
}
.page-news__cat-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--news-stone);
}

.page-news__article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 22px 24px;
  background: var(--news-white);
  border: 1px solid rgba(27, 79, 138, 0.12);
  border-left: 3px solid var(--news-main);
  border-radius: var(--radius-cut);
  box-shadow: 0 4px 14px rgba(10, 31, 60, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-bottom: 16px;
}
.page-news__article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 31, 60, 0.1);
  border-left-color: var(--news-gold);
}
.page-news__article-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  color: rgba(217, 166, 46, 0.9);
  position: relative;
  top: -2px;
}
.page-news__article-body {
  min-width: 0;
}
.page-news__article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.page-news__article-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--news-stone);
  padding-left: 8px;
  border-left: 1px solid rgba(74, 85, 104, 0.24);
}
.page-news__article-title {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.5;
  color: var(--news-deep);
  margin: 0;
}
.page-news__article-summary {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--news-stone);
}

.page-news__edition-wrap {
  background: var(--news-deep);
  border-radius: var(--radius-cut);
  padding: 18px;
}
.page-news__edition-wrap .page-news__article {
  background: #FBFCFD;
}

.page-news__feature-poster {
  border-radius: var(--radius-cut);
  overflow: hidden;
  margin-bottom: 16px;
  height: 190px;
  border: 1px solid rgba(27, 79, 138, 0.1);
}
.page-news__feature-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 侧边栏 ===== */
.page-news__aside {
  min-width: 0;
}
.page-news__tech-card {
  background: var(--news-deep);
  padding: 16px;
  border-radius: var(--radius-cut);
  color: var(--news-white);
  margin-bottom: 20px;
}
.page-news__tech-media {
  border-radius: 12px;
  overflow: hidden;
  height: 170px;
}
.page-news__tech-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news__tech-caption {
  margin-top: 14px;
}
.page-news__tech-caption p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247, 250, 252, 0.85);
}
.page-news__aside-nav,
.page-news__aside-facts {
  background: var(--news-white);
  border: 1px solid rgba(27, 79, 138, 0.12);
  border-radius: var(--radius-cut);
  padding: 22px;
  margin-bottom: 20px;
}
.page-news__aside-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--news-deep);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--news-gold);
}
.page-news__aside-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 2px;
  border-bottom: 1px dashed rgba(27, 79, 138, 0.15);
  color: var(--news-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s, padding-left 0.2s;
}
.page-news__aside-nav a::after {
  content: "→";
  font-family: var(--font-mono);
  color: var(--news-gold);
}
.page-news__aside-nav a:hover {
  color: var(--news-deep);
  padding-left: 6px;
}
.page-news__facts {
  margin: 0;
  padding: 0;
}
.page-news__facts > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(27, 79, 138, 0.12);
  font-size: 14px;
}
.page-news__facts dt {
  color: var(--news-stone);
}
.page-news__facts dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--news-main);
  white-space: nowrap;
}
.page-news__aside-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--news-stone);
  margin: 14px 0 0;
}

/* ===== 订阅与反馈 ===== */
.page-news__subscribe {
  background: linear-gradient(100deg, var(--news-main) 0%, var(--news-deep) 100%);
  color: var(--news-white);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-news__subscribe::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(217, 166, 46, 0.3);
  border-radius: 34px;
  transform: rotate(45deg);
  background: rgba(217, 166, 46, 0.06);
}
.page-news__subscribe-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.page-news__subscribe-copy h2 {
  font-size: 26px;
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.3;
}
.page-news__subscribe-copy > p {
  margin: 12px 0 0;
  line-height: 1.7;
  color: rgba(247, 250, 252, 0.82);
  font-size: 15px;
}
.page-news__subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.page-news__subscribe-media {
  border-radius: var(--radius-cut);
  overflow: hidden;
  border: 3px solid rgba(217, 166, 46, 0.45);
  height: 200px;
}
.page-news__subscribe-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 平板与桌面断点 ===== */
@media (min-width: 768px) {
  .page-news__masthead {
    padding: 38px 0 50px;
  }
  .page-news__masthead-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
  }
  .page-news__masthead h1 {
    font-size: 34px;
  }
  .page-news__masthead-aside {
    display: flex;
  }
  .page-news__panorama {
    height: 300px;
  }
  .page-news__schedule {
    padding: 58px 0 64px;
  }
  .page-news__cal-day {
    flex: 0 0 280px;
  }
  .page-news__feature-poster {
    height: 240px;
  }
  .page-news__subscribe {
    padding: 60px 0 68px;
  }
  .page-news__subscribe-media {
    height: 240px;
  }
}

@media (min-width: 992px) {
  .page-news__layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    align-items: start;
  }
  .page-news__subscribe-media {
    height: 260px;
  }
}

@media (min-width: 1200px) {
  .page-news__aside {
    position: sticky;
    top: 24px;
  }
}

/* ===== 弱动效兼容 ===== */
@media (prefers-reduced-motion: reduce) {
  .page-news__article,
  .page-news__cat-chip {
    transition: none;
  }
  .page-news__cal-day,
  .page-news__article {
    scroll-snap-stop: normal;
  }
}
