/* ===== 赛场笔记 · /notes/ ===== */
.page-news {
  position: relative;
  padding-bottom: 88px;
}

.page-news img {
  max-width: 100%;
}

.page-news .notes-crumb {
  padding-top: 24px;
}

/* ---- 刊头 ---- */
.page-news .notes-masthead {
  position: relative;
  padding: 28px 0 36px;
  border-bottom: var(--edge);
  overflow: hidden;
}

.page-news .notes-masthead::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -90px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.32) 0%, rgba(200, 16, 46, 0) 66%);
  pointer-events: none;
  z-index: 0;
}

.page-news .notes-masthead > * {
  position: relative;
  z-index: 1;
}

.page-news .notes-masthead .display-title {
  margin: 12px 0 16px;
  max-width: 20ch;
}

.page-news .notes-lede {
  max-width: 62ch;
  margin: 0;
  color: var(--c-gray-soft);
  font-size: var(--fs-16);
  line-height: 1.7;
}

.page-news .notes-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--c-gray);
  font-size: var(--fs-12);
  letter-spacing: 0.06em;
}

.page-news .notes-meta .num {
  color: var(--c-yellow);
  font-size: var(--fs-20);
  font-weight: 600;
  margin-right: 6px;
}

/* ---- 置顶专题 ---- */
.page-news .spotlight {
  margin-top: 44px;
}

.page-news .spotlight__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.page-news .spotlight__hint {
  margin: 0;
  color: var(--c-gray);
  font-size: var(--fs-12);
  letter-spacing: 0.08em;
}

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

.page-news .spot-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-news .spot-slide {
  display: none;
}

.page-news .spot-slide--1 {
  display: block;
}

.page-news .spotlight:has(#spot-2:checked) .spot-slide--1,
.page-news .spotlight:has(#spot-3:checked) .spot-slide--1 {
  display: none;
}

.page-news .spotlight:has(#spot-2:checked) .spot-slide--2,
.page-news .spotlight:has(#spot-3:checked) .spot-slide--3 {
  display: block;
}

.page-news .spot-fig {
  position: relative;
  margin: 0;
  border: var(--edge);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--c-ink);
}

.page-news .spot-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.74) contrast(1.08);
}

.page-news .spot-fig .media-frame__cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
}

.page-news .spot-slide__panel {
  position: relative;
  margin-top: -56px;
  padding: 24px 24px 28px;
  max-width: 640px;
  border-left: 4px solid var(--c-red);
  background: linear-gradient(140deg, rgba(200, 16, 46, 0.9) 0%, rgba(10, 10, 12, 0.95) 62%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}

.page-news .spot-slide--setpiece .spot-slide__panel {
  margin-top: 0;
  max-width: none;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left-color: var(--c-green);
  background: linear-gradient(135deg, rgba(31, 191, 107, 0.2) 0%, rgba(10, 10, 12, 0.96) 58%), var(--c-ink);
}

.page-news .spot-slide--penalty .spot-slide__panel {
  margin-top: 0;
  max-width: none;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left-color: var(--c-yellow);
  background: linear-gradient(135deg, rgba(255, 197, 61, 0.18) 0%, rgba(10, 10, 12, 0.96) 58%), var(--c-ink);
}

.page-news .spot-slide__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 2px 8px;
  border: 1px solid var(--c-yellow);
  color: var(--c-yellow);
  font-size: var(--fs-12);
  letter-spacing: 0.1em;
}

.page-news .spot-slide__title {
  margin: 14px 0 10px;
  font-size: var(--fs-28);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--c-white);
}

.page-news .spot-slide__text {
  margin: 0;
  max-width: 56ch;
  color: var(--c-gray-soft);
  font-size: var(--fs-16);
  line-height: 1.7;
}

.page-news .spot-nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.page-news .spot-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border: var(--edge);
  color: var(--c-gray);
  font-size: var(--fs-12);
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-news .spot-nav__item:hover {
  border-color: var(--c-yellow);
  color: var(--c-yellow);
}

.page-news .spotlight:has(#spot-1:checked) .spot-nav__item[for="spot-1"],
.page-news .spotlight:has(#spot-2:checked) .spot-nav__item[for="spot-2"],
.page-news .spotlight:has(#spot-3:checked) .spot-nav__item[for="spot-3"] {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}

/* ---- 4:8 分屏 ---- */
.page-news .notes-shell {
  margin-top: 60px;
  display: grid;
  gap: 44px;
}

.page-news .notes-rail {
  display: grid;
  gap: 32px;
  align-content: start;
}

/* ---- 栏目筛选 ---- */
.page-news .notes-filter .flt {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-news .notes-filter .tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.page-news .notes-filter .tag {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255, 197, 61, 0.5);
  color: var(--c-yellow);
  font-size: var(--fs-12);
  letter-spacing: 0.08em;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-news .notes-filter .tag:hover {
  background: rgba(255, 197, 61, 0.12);
  border-color: var(--c-yellow);
}

.page-news #flt-all:checked ~ .tag-group label[for="flt-all"],
.page-news #flt-index:checked ~ .tag-group label[for="flt-index"],
.page-news #flt-setpiece:checked ~ .tag-group label[for="flt-setpiece"],
.page-news #flt-injury:checked ~ .tag-group label[for="flt-injury"],
.page-news #flt-penalty:checked ~ .tag-group label[for="flt-penalty"],
.page-news #flt-venue:checked ~ .tag-group label[for="flt-venue"],
.page-news #flt-tier:checked ~ .tag-group label[for="flt-tier"],
.page-news #flt-behind:checked ~ .tag-group label[for="flt-behind"],
.page-news #flt-feature:checked ~ .tag-group label[for="flt-feature"] {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}

.page-news .notes-shell:has(#flt-index:checked) .note:not(.note--index),
.page-news .notes-shell:has(#flt-setpiece:checked) .note:not(.note--setpiece),
.page-news .notes-shell:has(#flt-injury:checked) .note:not(.note--injury),
.page-news .notes-shell:has(#flt-penalty:checked) .note:not(.note--penalty),
.page-news .notes-shell:has(#flt-venue:checked) .note:not(.note--venue),
.page-news .notes-shell:has(#flt-tier:checked) .note:not(.note--tier),
.page-news .notes-shell:has(#flt-behind:checked) .note:not(.note--behind),
.page-news .notes-shell:has(#flt-feature:checked) .note:not(.note--feature) {
  display: none;
}

/* ---- 左栏区块 ---- */
.page-news .rail-block {
  border-top: var(--edge);
  padding-top: 18px;
}

.page-news .rail-block__title {
  margin: 0 0 14px;
  color: var(--c-gray);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.page-news .pick-list {
  display: grid;
  gap: 14px;
}

.page-news .pick {
  display: block;
  padding-left: 14px;
  border-left: 2px solid var(--c-red);
  color: var(--c-white);
  font-size: var(--fs-14);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .pick:hover {
  color: var(--c-neon);
  border-left-color: var(--c-neon);
}

.page-news .pick span {
  display: block;
  margin-top: 4px;
  color: var(--c-gray);
  font-family: var(--font-mono);
  font-size: var(--fs-12);
}

.page-news .rail-note {
  margin: 0 0 16px;
  color: var(--c-gray);
  font-size: var(--fs-14);
  line-height: 1.7;
}

/* ---- 条目流 ---- */
.page-news .notes-feed {
  display: grid;
  border-top: var(--edge);
}

.page-news .note {
  position: relative;
  padding: 26px 0 30px;
  border-bottom: var(--edge);
}

.page-news .note__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-size: var(--fs-12);
}

.page-news .note__round {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--c-yellow);
  letter-spacing: 0.08em;
}

.page-news .note__cat {
  padding: 2px 8px;
  border: var(--edge);
  color: var(--c-white);
  letter-spacing: 0.1em;
}

.page-news .note__time {
  color: var(--c-gray);
  letter-spacing: 0.06em;
}

.page-news .note__title {
  margin: 12px 0 8px;
  color: var(--c-white);
  font-size: var(--fs-20);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.page-news .note__excerpt {
  margin: 0;
  max-width: 64ch;
  color: var(--c-gray-soft);
  font-size: var(--fs-16);
  line-height: 1.7;
}

.page-news .note__fig {
  margin: 18px 0 2px;
  max-width: 720px;
}

.page-news .note__more {
  margin-top: 12px;
}

.page-news .note__more p {
  margin: 0;
  max-width: 62ch;
  padding-left: 14px;
  border-left: 2px solid var(--c-green);
  color: var(--c-gray);
  font-size: var(--fs-14);
  line-height: 1.7;
}

/* ---- 往期归档 ---- */
.page-news .archive {
  margin-top: 72px;
  padding-top: 32px;
  border-top: var(--edge);
}

.page-news .archive .section-title {
  margin: 10px 0 0;
}

.page-news .archive-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.page-news .archive-item {
  padding: 20px 18px 22px;
  border-top: var(--edge);
  border-left: 4px solid var(--c-red);
  background: linear-gradient(160deg, rgba(200, 16, 46, 0.14) 0%, rgba(10, 10, 12, 0.42) 72%);
}

.page-news .archive-item__phase {
  display: block;
  color: var(--c-yellow);
  font-size: var(--fs-12);
  letter-spacing: 0.12em;
}

.page-news .archive-item h3 {
  margin: 10px 0 8px;
  color: var(--c-white);
  font-size: var(--fs-16);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.page-news .archive-item p {
  margin: 0;
  color: var(--c-gray);
  font-size: var(--fs-14);
  line-height: 1.7;
}

/* ---- 订阅 ---- */
.page-news .subscribe {
  position: relative;
  margin-top: 72px;
  padding: 40px 24px 44px;
  border: var(--edge);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.2) 0%, rgba(10, 10, 12, 0.94) 54%), var(--c-ink);
}

.page-news .subscribe::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(42, 46, 54, 0.5) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(42, 46, 54, 0.5) 0 1px, transparent 1px 24px);
  opacity: 0.5;
  pointer-events: none;
}

.page-news .subscribe > * {
  position: relative;
  z-index: 1;
}

.page-news .subscribe .section-title {
  margin: 10px 0 0;
}

.page-news .subscribe__facts {
  display: grid;
  gap: 16px;
  margin: 26px 0 22px;
}

.page-news .subscribe__facts div {
  padding-top: 12px;
  border-top: 2px solid var(--c-red);
  color: var(--c-gray);
  font-size: var(--fs-14);
  line-height: 1.6;
}

.page-news .subscribe__facts .num {
  display: block;
  margin-bottom: 4px;
  color: var(--c-white);
  font-size: var(--fs-28);
  font-weight: 600;
}

.page-news .subscribe__text {
  margin: 0;
  max-width: 68ch;
  color: var(--c-gray-soft);
  font-size: var(--fs-14);
  line-height: 1.8;
}

.page-news .subscribe__mail {
  color: var(--c-cyan);
  word-break: break-all;
  font-size: var(--fs-14);
}

.page-news .subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ---- 悬停展开摘要层（仅在支持悬停的宽屏启用） ---- */
@media (hover: hover) and (min-width: 960px) {
  .page-news .note::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 30px;
    width: 3px;
    height: 22px;
    background: var(--c-neon);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .page-news .note:hover::before {
    opacity: 1;
  }

  .page-news .note__more {
    display: grid;
    grid-template-rows: 0fr;
    margin-top: 0;
    opacity: 0;
    transition: grid-template-rows 0.32s ease, opacity 0.32s ease, margin-top 0.32s ease;
  }

  .page-news .note__more > p {
    overflow: hidden;
    min-height: 0;
  }

  .page-news .note:hover .note__more,
  .page-news .note:focus-within .note__more {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 12px;
  }
}

/* ---- 桌面分屏与栅格 ---- */
@media (min-width: 720px) {
  .page-news .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .subscribe {
    padding: 48px 36px 52px;
  }

  .page-news .subscribe__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 960px) {
  .page-news .notes-shell {
    grid-template-columns: minmax(240px, 4fr) minmax(0, 8fr);
    gap: 56px;
    align-items: start;
  }

  .page-news .note__title {
    font-size: var(--fs-28);
  }
}

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

/* ---- 窄屏收敛 ---- */
@media (max-width: 560px) {
  .page-news .spot-slide__panel {
    margin-top: -28px;
    padding: 20px 16px 24px;
    clip-path: none;
  }

  .page-news .spot-slide--setpiece .spot-slide__panel,
  .page-news .spot-slide--penalty .spot-slide__panel {
    margin-top: 0;
    min-height: 180px;
  }

  .page-news .notes-meta {
    gap: 10px 22px;
  }

  .page-news .notes-meta .num {
    font-size: var(--fs-16);
  }

  .page-news .subscribe {
    padding: 30px 18px 34px;
  }

  .page-news .subscribe__facts .num {
    font-size: var(--fs-20);
  }
}
