.page-news {
  --news-clip-chip: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background: var(--cream);
  color: var(--ink);
}

.page-news [id] {
  scroll-margin-top: 24px;
}

/* ---------- 页头 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 44px 0 104px;
}

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

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: var(--red);
  transform: rotate(18deg);
  opacity: .92;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 22px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 2% 100%);
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--gray);
  margin-bottom: 18px;
}

.page-news .breadcrumb a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 162, 97, .4);
  transition: color .2s ease, border-color .2s ease;
}

.page-news .breadcrumb a:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.page-news .page-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}

.page-news .page-title {
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  line-height: 1.06;
  margin: 0 0 18px;
  max-width: 12em;
}

.page-news .page-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(241, 250, 238, .86);
  max-width: 48em;
  margin: 0 0 28px;
}

.page-news .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(241, 250, 238, .16);
}

.page-news .hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-news .hero-stats dt {
  font-size: 13px;
  color: var(--gray);
}

.page-news .hero-stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--orange);
}

/* ---------- 通用章节 ---------- */
.page-news .section {
  padding: 64px 0;
}

.page-news .section-dark {
  background: var(--ink);
  color: var(--cream);
}

.page-news .section-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.page-news .section-index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: .9;
  color: var(--red);
}

.page-news .section-title {
  margin: 0;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.page-news .section-desc {
  max-width: 46em;
  color: var(--gray);
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.6;
}

.page-news .section-dark .section-desc {
  color: rgba(241, 250, 238, .68);
}

.page-news .section-dark .section-title {
  color: var(--cream);
}

.page-news .section-dark .section-index {
  color: var(--orange);
}

/* ---------- 01 专栏分类 ---------- */
.page-news .category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-news .category-chip {
  clip-path: var(--news-clip-chip);
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 20px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: background .22s ease, transform .14s ease;
}

.page-news .category-chip:hover {
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-2px);
}

.page-news .category-chip:focus-visible {
  outline: 3px solid var(--red-deep);
  outline-offset: 2px;
}

.page-news .chip-count {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, .86);
}

/* ---------- 02 最新文章 ---------- */
.page-news .article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .article-card {
  background: var(--white);
  border: 1px solid #DCE4EC;
  box-shadow: var(--shadow-red);
  border-radius: 2px;
  transition: box-shadow .22s ease, transform .22s ease;
}

.page-news .article-card:hover {
  box-shadow: 10px 10px 0 rgba(230, 57, 70, .14);
  transform: translateY(-2px);
}

.page-news .article-card:nth-child(even) {
  margin-left: 14px;
}

.page-news .article-card:nth-child(3n) {
  margin-left: 26px;
}

.page-news .article-details > summary {
  list-style: none;
}

.page-news .article-details > summary::-webkit-details-marker {
  display: none;
}

.page-news .article-summary {
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  gap: 8px 16px;
  align-items: start;
  padding: 18px;
  cursor: pointer;
}

.page-news .article-figure-wrap {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.page-news .article-figure-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.page-news .article-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: var(--red);
}

.page-news .article-copy {
  min-width: 0;
}

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

.page-news .article-tag {
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  letter-spacing: .08em;
}

.page-news .article-date {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: .05em;
}

.page-news .article-title {
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 6px;
  letter-spacing: .01em;
  transition: color .2s ease;
}

.page-news .article-card:hover .article-title {
  color: var(--red);
}

.page-news .article-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news .article-toggle {
  width: 30px;
  height: 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  border-radius: 2px;
  transition: transform .24s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.page-news .article-details[open] .article-toggle {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.page-news .article-body {
  padding: 18px;
  border-top: 1px dashed #CBD5E0;
  background: linear-gradient(135deg, rgba(244, 162, 97, .08), rgba(241, 250, 238, .3));
  animation: news-body-in .28s ease;
}

@keyframes news-body-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-news .article-body p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: #33415C;
}

.page-news .article-body p:last-child {
  margin-bottom: 0;
}

.page-news .article-figure {
  margin: 16px 0 0;
}

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

.page-news .article-figure figcaption {
  font-size: 12px;
  color: var(--gray);
  margin-top: 8px;
  padding-left: 10px;
  border-left: 3px solid var(--orange);
}

.page-news .text-link {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.page-news .data-highlight {
  background: var(--red);
  color: var(--white);
  padding: 1px 7px;
  cursor: help;
  font-family: var(--font-display);
  font-weight: 600;
  transition: background .2s ease;
}

.page-news .data-highlight:hover {
  background: var(--red-deep);
}

/* ---------- 03 本轮集锦 ---------- */
.page-news .highlights-section {
  padding: 72px 0;
}

.page-news .league-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-news .league-block {
  border-top: 3px solid var(--red);
  padding-top: 16px;
}

.page-news .league-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.page-news .league-badge {
  background: var(--red);
  color: var(--white);
  padding: 5px 12px;
  clip-path: var(--news-clip-chip);
  font-weight: 600;
}

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

.page-news .video-card {
  background: var(--ink-2);
  border: 1px solid rgba(241, 250, 238, .12);
  border-radius: 2px;
  transition: border-color .22s ease, background .22s ease;
}

.page-news .video-card:hover {
  border-color: rgba(244, 162, 97, .6);
  background: #14243A;
}

.page-news .video-card > summary {
  list-style: none;
}

.page-news .video-card > summary::-webkit-details-marker {
  display: none;
}

.page-news .video-summary {
  display: block;
  cursor: pointer;
}

.page-news .video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}

.page-news .video-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: opacity .3s ease, transform .32s ease;
}

.page-news .video-card:hover .video-frame img {
  transform: scale(1.03);
  opacity: .88;
}

.page-news .play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(230, 57, 70, .28);
  transition: background .2s ease, box-shadow .2s ease;
}

.page-news .play-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--white);
}

.page-news .video-card:hover .play-badge {
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(244, 162, 97, .3);
}

.page-news .video-headline {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px 16px;
  color: var(--cream);
}

.page-news .video-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .02em;
}

.page-news .video-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--gray);
}

.page-news .video-desc {
  margin: 0;
  padding: 14px 16px 16px;
  border-top: 1px dashed rgba(241, 250, 238, .2);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(241, 250, 238, .82);
}

/* ---------- 04 聚光灯 ---------- */
.page-news .spotlight-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-news .spotlight-card {
  background: var(--white);
  border: 1px solid #DCE4EC;
  box-shadow: var(--shadow-red);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr;
}

.page-news .spotlight-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 2px 2px 0 0;
}

.page-news .spotlight-body {
  padding: 22px;
}

.page-news .spotlight-title {
  font-size: 28px;
  line-height: 1.2;
  margin: 10px 0 12px;
  text-transform: uppercase;
}

.page-news .spotlight-summary {
  color: #33415C;
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 16px;
}

.page-news .tag {
  background: var(--orange);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  letter-spacing: .06em;
}

.page-news .spotlight-more summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--red);
  text-transform: uppercase;
  border-bottom: 2px solid rgba(230, 57, 70, .35);
  display: inline-flex;
  padding-bottom: 2px;
}

.page-news .spotlight-more[open] summary {
  color: var(--red-deep);
}

.page-news .spotlight-more p {
  margin: 14px 0 0;
  padding: 14px;
  background: var(--cream);
  font-size: 14px;
  line-height: 1.75;
  color: #33415C;
}

/* ---------- 05 继续浏览 ---------- */
.page-news .explore-section {
  background: var(--cream);
  border-top: 3px double var(--red);
}

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

.page-news .explore-item {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 20px;
  text-decoration: none;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .22s ease, transform .14s ease;
}

.page-news .explore-item::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 68px;
  height: 68px;
  background: var(--red);
  transform: rotate(24deg);
  opacity: .85;
}

.page-news .explore-item:hover {
  background: var(--ink-2);
  transform: translateY(-3px);
}

.page-news .explore-item__kicker {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

.page-news .explore-item__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 20em;
}

/* ---------- 桌面增强 ---------- */
@media (min-width: 720px) {
  .page-news .news-hero {
    padding: 56px 0 120px;
  }

  .page-news .category-strip {
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .page-news .section {
    padding: 84px 0;
  }

  .page-news .section-header {
    margin-bottom: 12px;
  }

  .page-news .section-index {
    font-size: 84px;
  }

  .page-news .section-title {
    font-size: 34px;
  }

  .page-news .section-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .page-news .news-hero {
    padding: 64px 0 140px;
  }

  .page-news .page-intro {
    max-width: 42em;
  }

  .page-news .article-list {
    gap: 20px;
  }

  .page-news .article-card:nth-child(even) {
    margin-left: 64px;
  }

  .page-news .article-card:nth-child(3n) {
    margin-left: 104px;
  }

  .page-news .article-summary {
    padding: 22px;
    grid-template-columns: 60px 1fr 34px;
    gap: 10px 20px;
  }

  .page-news .article-title {
    font-size: 21px;
  }

  .page-news .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .video-card--wide {
    grid-column: 1 / -1;
  }

  .page-news .video-card--wide .video-frame img {
    aspect-ratio: 21 / 9;
  }

  .page-news .spotlight-card {
    grid-template-columns: 7fr 5fr;
    align-items: center;
  }

  .page-news .spotlight-card--second {
    grid-template-columns: 5fr 7fr;
  }

  .page-news .spotlight-card--second .spotlight-media {
    order: 2;
  }

  .page-news .spotlight-card--second .spotlight-body {
    order: 1;
  }

  .page-news .spotlight-media img {
    border-radius: 2px 0 0 2px;
  }

  .page-news .spotlight-card--second .spotlight-media img {
    border-radius: 0 2px 2px 0;
  }

  .page-news .explore-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-news .explore-item {
    padding: 28px 24px;
  }
}
