/* ===== 赛季动态 /stories/ ===== */
.page-news {
  --news-rail: 22px;
  --news-border: 1px solid var(--line);
}

@media (min-width: 640px) {
  .page-news {
    --news-rail: 26px;
  }
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(28px, 5vw, 58px) clamp(20px, 3vw, 36px);
}

.page-news .news-hero .glow {
  opacity: .55;
}

.page-news .news-hero__grid {
  display: grid;
  gap: 26px;
}

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
    gap: 48px;
    align-items: end;
  }
}

.page-news .news-hero__title {
  margin: 14px 0 18px;
  text-wrap: balance;
}

.page-news .news-hero__lede {
  max-width: 60ch;
  margin: 0;
}

.page-news .news-hero__side {
  border: var(--news-border);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(31, 58, 110, .5), rgba(10, 14, 26, .74));
  padding: 18px 20px;
  box-shadow: var(--shadow-tile);
}

.page-news .news-hero__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-hero__facts li {
  display: grid;
  grid-template-columns: 5.6em minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  color: var(--text-soft);
  padding-bottom: 11px;
  border-bottom: 1px dashed var(--line);
}

.page-news .news-hero__facts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-news .news-hero__facts .mono {
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: .02em;
}

/* ---------- 时间线 ---------- */
.page-news .news-stream {
  position: relative;
  padding-left: var(--news-rail);
  display: grid;
  gap: 24px;
}

.page-news .news-stream::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan) 0%, rgba(0, 240, 255, .3) 42%, var(--line) 100%);
}

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

.page-news .news-item__dot {
  position: absolute;
  left: calc(var(--news-rail) * -1);
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, .16);
}

.page-news .news-item--lead .news-item__dot {
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 240, 255, .18);
}

/* 首条大卡：暖纸白 */
.page-news .news-lead {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(20, 17, 13, .045) 1px, transparent 1px);
  background-size: 5px 5px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-plate);
  transition: transform .18s ease, box-shadow .18s ease;
}

@media (min-width: 780px) {
  .page-news .news-lead {
    grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
  }
}

.page-news .news-lead:hover {
  transform: translateY(-3px);
}

.page-news .news-lead__media {
  margin: 0;
  position: relative;
  background: var(--ink-soft);
}

.page-news .news-lead__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 240, 255, .16), rgba(10, 14, 26, .5));
  pointer-events: none;
}

.page-news .news-lead__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
}

.page-news .news-lead__body {
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page-news .news-lead__tags,
.page-news .news-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  width: 100%;
}

.page-news .news-lead .tag {
  background: rgba(20, 17, 13, .07);
  color: var(--ink);
  border: 1px solid rgba(20, 17, 13, .2);
}

.page-news .news-lead .tag--orange {
  background: rgba(255, 107, 0, .16);
  color: #A84500;
  border-color: rgba(255, 107, 0, .38);
}

.page-news .news-lead__time {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(20, 17, 13, .62);
}

.page-news .news-lead__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(21px, 3.4vw, 30px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: .01em;
}

.page-news .news-lead__text {
  margin: 0;
  color: rgba(20, 17, 13, .78);
  font-size: 15px;
  line-height: 1.72;
}

/* 紧凑条目 */
.page-news .news-card {
  position: relative;
  border: var(--news-border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(16, 26, 49, .88), rgba(10, 14, 26, .94));
  padding: 18px 20px 22px;
  box-shadow: var(--shadow-tile);
  transition: transform .18s ease, border-color .18s ease;
}

.page-news .news-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transition: width .22s ease;
}

.page-news .news-card:hover,
.page-news .news-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.page-news .news-card:hover::after,
.page-news .news-card:focus-within::after {
  width: 26px;
}

.page-news .news-card__time {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--gray);
}

.page-news .news-card__title {
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
}

.page-news .news-card__text {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text-soft);
}

.page-news .news-card__foot {
  margin: 0;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--gray);
}

/* ---------- 版本线 ---------- */
.page-news .news-updates {
  display: grid;
  gap: 32px;
}

@media (min-width: 940px) {
  .page-news .news-updates {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
}

.page-news .news-log {
  border-top: var(--news-border);
}

.page-news .news-log__row {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: var(--news-border);
}

@media (min-width: 700px) {
  .page-news .news-log__row {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }
}

.page-news .news-log__ver {
  margin: 0;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--cyan);
}

.page-news .news-log__title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.page-news .news-log__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text-soft);
}

.page-news .news-updates__figure {
  margin: 0;
  border: var(--news-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: var(--shadow-tile);
}

.page-news .news-updates__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .news-updates__figure figcaption {
  padding: 12px 16px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-soft);
  border-top: var(--news-border);
}

/* ---------- 专题 ---------- */
.page-news .news-topics__banner {
  position: relative;
  margin: 0 0 28px;
  border: var(--news-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
}

.page-news .news-topics__banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 2;
  object-fit: cover;
}

@media (max-width: 700px) {
  .page-news .news-topics__banner img {
    aspect-ratio: 3 / 2;
  }
}

.page-news .news-topics__banner figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(10, 14, 26, .94));
}

.page-news .news-topics {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .page-news .news-topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .page-news .news-topics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-news .news-topic {
  position: relative;
  display: flex;
  flex-direction: column;
  border: var(--news-border);
  border-radius: var(--radius);
  padding: 20px 18px 22px;
  background: linear-gradient(200deg, rgba(16, 26, 49, .72), rgba(10, 14, 26, .92));
  transition: transform .18s ease, border-color .18s ease;
}

.page-news .news-topic::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 26px;
  height: 2px;
  background: var(--cyan);
}

.page-news .news-topic:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.page-news .news-topic__idx {
  margin: 8px 0 14px;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--cyan);
}

.page-news .news-topic__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
}

.page-news .news-topic__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-soft);
  flex: 1 1 auto;
}

.page-news .news-topic__meta {
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--gray);
}

/* ---------- 说明维护 ---------- */
.page-news .news-help {
  display: grid;
  gap: 32px;
}

@media (min-width: 940px) {
  .page-news .news-help {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 56px;
    align-items: start;
  }
}

.page-news .news-help__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-news .news-help__intro h2,
.page-news .news-help__intro .lede {
  margin: 0;
}

.page-news .news-help__intro .lede {
  max-width: 46ch;
}

.page-news .news-help__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .page-news .news-help__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-news .news-help__list li {
  border: var(--news-border);
  border-left: 2px solid var(--cyan);
  border-radius: var(--radius);
  background: rgba(10, 14, 26, .55);
  padding: 16px 18px;
}

.page-news .news-help__tag {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--cyan);
}

.page-news .news-help__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.page-news .news-help__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--text-soft);
}

/* ---------- 转会窗口 ---------- */
.page-news .news-window {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .page-news .news-window {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
  }
}

.page-news .news-window__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-news .news-window__text h2,
.page-news .news-window__text .lede {
  margin: 0;
}

.page-news .news-window__points {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .news-window__points li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
}

.page-news .news-window__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

.page-news .news-window__figure {
  position: relative;
  margin: 0;
  border: var(--news-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: var(--shadow-tile);
}

.page-news .news-window__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(215deg, rgba(255, 107, 0, .18), transparent 55%);
  pointer-events: none;
}

.page-news .news-window__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ---------- 按主题浏览 ---------- */
.page-news .news-index {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-index a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: var(--news-border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.page-news .news-index a:hover,
.page-news .news-index a:focus-visible {
  border-color: var(--line-strong);
  color: var(--cyan);
  background: rgba(0, 240, 255, .06);
}

.page-news .news-index .mono {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--cyan);
}

.page-news .news-index__more {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

.page-news .news-index__more a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
