.page-news {
  --news-gutter: clamp(1.25rem, 4vw, 40px);
  --news-radius: 20px 6px 20px 6px;
  --news-font-num: "Source Serif 4", Georgia, "Times New Roman", serif;
  background: var(--paper);
}

.page-news *,
.page-news *::before,
.page-news *::after {
  box-sizing: border-box;
}

.page-news .container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 28px);
}

.page-news .section-spacing {
  padding-top: clamp(2.5rem, 7vw, 5rem);
}

.page-news img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== 刊头 ===== */
.page-news .news-head {
  padding-top: clamp(1.5rem, 5vh, 3.5rem);
  padding-bottom: clamp(1.25rem, 3vw, 2.5rem);
}

.page-news .news-head-grid {
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

.page-news .news-head-main h1 {
  margin: 0;
  color: var(--sapphire);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.page-news .news-kicker {
  margin: 0 0 .5rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--red);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-news .news-kicker::before {
  content: "";
  width: 28px;
  height: 4px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.page-news .news-kicker--light {
  color: var(--yellow);
}

.page-news .news-kicker--aside::before {
  background: var(--red);
}

.page-news .news-head-lead {
  margin: 0;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
}

/* ===== 头条更新 ===== */
.page-news .spotlight-card {
  position: relative;
  display: grid;
  gap: 0;
  background: var(--white);
  border-radius: var(--news-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}

.page-news .spotlight-card::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  background: var(--yellow);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: .9;
  z-index: 2;
  pointer-events: none;
}

.page-news .spotlight-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--deep);
}

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

.page-news .spotlight-body {
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .85rem;
}

.page-news .spotlight-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -.01em;
}

.page-news .spotlight-summary {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.8;
}

.page-news .spotlight-meta {
  margin-top: .5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .85rem;
}

.page-news .meta-cat {
  color: var(--sapphire);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
}

/* ===== 栏目索引区域 ===== */
.page-news .index-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.page-news .index-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--news-radius);
  padding: 1.5rem 1.25rem;
  position: sticky;
  top: 1rem;
  box-shadow: 0 6px 16px rgba(26, 26, 26, .05);
}

.page-news .index-aside h2,
.page-news .stream-title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.page-news .index-aside h2 {
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.page-news .index-nav {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.page-news .index-nav li {
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.page-news .index-nav li:last-child {
  border-bottom: 0;
}

.page-news .index-nav a {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  padding: .85rem 0;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s ease;
}

.page-news .index-nav a:hover {
  color: var(--red);
}

.page-news .index-num {
  font-family: var(--news-font-num);
  font-size: .78rem;
  color: var(--blue);
  font-weight: 600;
}

.page-news .index-count {
  font-family: var(--news-font-num);
  font-size: .8rem;
  color: var(--ink-soft);
  background: var(--paper);
  padding: .2rem .55rem;
  border-radius: 999px;
}

.page-news .index-stream {
  display: grid;
  gap: 2.5rem;
}

.page-news .stream-group {
  display: grid;
  gap: .75rem;
}

.page-news .stream-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.page-news .stream-title-line {
  width: 34px;
  height: 5px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.page-news .stream-title h3 {
  font-size: 1.5rem;
  font-weight: 900;
}

/* ===== 文章行 ===== */
.page-news .article-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.1rem;
  padding: 1.35rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px 4px 14px 4px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}

.page-news .article-row--featured {
  grid-template-columns: auto 1fr;
}

.page-news .article-row--wide {
  grid-template-columns: auto 1fr;
}

.page-news .article-row:hover {
  border-color: var(--yellow);
}

.page-news .article-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%);
}

.page-news .article-row--featured::before,
.page-news .article-row:has(.tag-cat--blue)::before {
  background: var(--blue);
}

.page-news .article-index {
  font-family: var(--news-font-num);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--yellow);
  min-width: 2.2rem;
  padding-top: .15rem;
  text-align: right;
}

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

.page-news .article-body h4 {
  margin: .55rem 0 .45rem;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 800;
}

.page-news .article-body p {
  margin: 0 0 .6rem;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.75;
}

.page-news .article-more {
  margin-top: .5rem;
  border-top: 1px dashed var(--line);
  padding-top: .5rem;
  font-size: .88rem;
}

.page-news .article-more summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 700;
  font-size: .85rem;
}

.page-news .article-more p {
  margin: .6rem 0 0;
  color: var(--ink-soft);
}

.page-news .article-media {
  grid-column: 2;
}

.page-news .article-media img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px 3px 10px 3px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-news .text-link {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: .86rem;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}

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

.page-news .chart-wrap {
  grid-column: 2;
  padding-top: .75rem;
}

.page-news .chart-wrap img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px 4px 12px 4px;
  border: 1px solid var(--line);
  object-fit: cover;
}

/* ===== 标签 ===== */
.page-news .tag-cat {
  display: inline-block;
  padding: .3rem .7rem .3rem .85rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  border-radius: 4px 2px 4px 2px;
  line-height: 1.2;
}

.page-news .tag-cat--red {
  background: var(--red);
  color: var(--white);
}

.page-news .tag-cat--blue {
  background: var(--blue);
  color: var(--white);
}

.page-news .tag-cat--yellow {
  background: var(--yellow);
  color: var(--ink);
}

/* ===== 赛季专题 ===== */
.page-news .season-panel {
  margin-top: clamp(3rem, 8vw, 5.5rem);
  background: var(--deep);
  position: relative;
  overflow: hidden;
  scale: unset;
}

.page-news .season-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(179, 32, 44, .18) 0, rgba(179, 32, 44, .18) 18px, transparent 18px, transparent 42px);
  pointer-events: none;
  z-index: 0;
}

.page-news .season-panel::after {
  content: "12";
  position: absolute;
  right: -30px;
  bottom: -60px;
  font-family: var(--news-font-num);
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
  z-index: 0;
}

.page-news .season-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.page-news .season-copy {
  color: var(--white);
}

.page-news .season-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  line-height: 1.25;
  color: var(--white);
  font-weight: 900;
  max-width: 600px;
}

.page-news .season-copy p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, .86);
  line-height: 1.85;
  max-width: 600px;
  font-size: .95rem;
}

.page-news .round-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 1.8rem;
}

.page-news .round-dot {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: .78rem;
  text-align: center;
  padding: .55rem .25rem;
  border-radius: 999px;
  white-space: nowrap;
}

.page-news .round-dot--hot {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.page-news .season-media {
  border-radius: var(--news-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, .22);
}

.page-news .season-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 7 / 4;
  object-fit: cover;
}

/* ===== 分页 ===== */
.page-news .news-pagination {
  text-align: center;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.page-news .pagination-label {
  display: block;
  font-size: .8rem;
  color: var(--ink-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-news .pagination-row {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.page-news .pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-family: var(--news-font-num);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50% 16px 50% 16px;
  text-decoration: none;
  transition: all .2s ease;
}

.page-news .pagination-num:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.page-news .pagination-current {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.page-news .pagination-hint {
  margin: 0 auto;
  max-width: 460px;
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.7;
}

/* ===== 中等屏幕：平板 ===== */
@media (min-width: 48rem) {
  .page-news .news-head-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }

  .page-news .spotlight-card {
    grid-template-columns: 1.2fr 1fr;
  }

  .page-news .spotlight-body {
    padding: 2rem 2rem 2.2rem;
  }

  .page-news .index-layout {
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
  }

  .page-news .index-aside {
    padding: 1.75rem 1.4rem;
  }

  .page-news .article-row--featured,
  .page-news .article-row--wide {
    grid-template-columns: auto 1fr 300px;
    align-items: center;
  }

  .page-news .article-media,
  .page-news .chart-wrap {
    grid-column: 3;
  }

  .page-news .season-inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
  }

  .page-news .round-strip {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ===== 大屏：桌面 ===== */
@media (min-width: 64rem) {
  .page-news .section-spacing {
    padding-top: 5.5rem;
  }

  .page-news .index-layout {
    grid-template-columns: 280px 1fr;
    gap: 3.25rem;
  }

  .page-news .article-row {
    padding: 1.5rem 1.75rem;
  }

  .page-news .article-index {
    font-size: 3rem;
  }

  .page-news .round-strip {
    grid-template-columns: repeat(12, 1fr);
  }

  .page-news .season-inner {
    padding-block: 5rem;
  }
}
