.page-news {
  --news-card: rgba(20, 22, 26, 0.78);
  --news-hair: rgba(41, 242, 192, 0.16);
  --news-rise: rgba(41, 242, 192, 0.42);
  --news-line: rgba(41, 242, 192, 0.1);
  display: block;
}

/* ---------- 面包屑 ---------- */
.page-news .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 18px 0 14px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mute);
}

.page-news .crumbs a {
  color: var(--mute);
  text-decoration: none;
  transition: color 0.18s ease;
}

.page-news .crumbs a:hover {
  color: var(--cyan);
}

.page-news .crumbs__sep {
  margin: 0 8px;
  opacity: 0.55;
}

.page-news .crumbs__current {
  color: var(--mint);
}

/* ---------- 首屏拼贴 ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  border: 1px solid var(--news-hair);
  background: var(--stands);
  margin-bottom: clamp(30px, 5vw, 58px);
}

.page-news .news-hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}

.page-news .news-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  opacity: 0.32;
  display: block;
}

.page-news .news-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(158deg, rgba(11, 31, 26, 0.58) 0%, rgba(11, 31, 26, 0.95) 60%),
    repeating-linear-gradient(90deg, rgba(41, 242, 192, 0.07) 0 1px, transparent 1px 94px);
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3.8vw, 54px);
}

.page-news .news-hero h1 {
  margin: 14px 0 16px;
  max-width: 20em;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(34px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--mint);
}

.page-news .news-hero .lead {
  max-width: 58ch;
  margin: 0;
  color: rgba(233, 245, 241, 0.82);
}

.page-news .news-flash__heading {
  margin: clamp(28px, 4vw, 46px) 0 14px;
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cyan);
}

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

.page-news .news-flash__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
  border: 1px solid var(--news-hair);
  border-radius: var(--radius-m);
  background: rgba(11, 31, 26, 0.6);
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.page-news .news-flash__card:hover {
  transform: translateY(-2px);
  border-color: var(--news-rise);
  background: rgba(30, 58, 51, 0.62);
}

.page-news .news-flash__card--lead {
  border-left: 3px solid var(--cyan);
}

.page-news .news-flash__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
}

.page-news .news-flash__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.25;
  color: var(--mint);
}

.page-news .news-flash__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(233, 245, 241, 0.74);
}

/* ---------- 轮次更新记录 ---------- */
.page-news .news-band {
  position: relative;
  margin: 0 0 clamp(20px, 3vw, 32px);
  border: 1px solid var(--news-hair);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--stands);
  aspect-ratio: 16 / 9;
  max-height: 400px;
}

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

.page-news .news-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(202deg, rgba(11, 31, 26, 0.12), rgba(11, 31, 26, 0.82)),
    repeating-linear-gradient(0deg, rgba(41, 242, 192, 0.09) 0 1px, transparent 1px 30px);
}

.page-news .news-tabs {
  display: block;
}

.page-news .news-tabs .tabs__list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 14px;
  margin-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid var(--news-hair);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-news .news-tabs .tabs__list::-webkit-scrollbar {
  display: none;
}

.page-news .news-tabs .tabs__tab {
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 1px solid var(--news-hair);
  border-radius: 999px;
  background: transparent;
  color: rgba(233, 245, 241, 0.78);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.page-news .news-tabs .tabs__tab:hover {
  border-color: var(--news-rise);
  color: var(--mint);
}

.page-news .news-tabs .tabs__tab[aria-selected="true"] {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
  font-weight: 700;
}

.page-news .news-tabs .tabs__tab:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.page-news .news-tabs .tabs__panel:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 6px;
}

.page-news .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px 8px 18px 0;
  border-bottom: 1px solid var(--news-line);
  border-radius: var(--radius-s);
  transition: background-color 0.18s ease;
}

.page-news .timeline__item::before {
  content: "";
  position: absolute;
  left: 62px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--news-line);
}

.page-news .timeline__item:hover {
  background: rgba(30, 58, 51, 0.32);
}

.page-news .timeline__item.is-current {
  background: rgba(30, 58, 51, 0.42);
}

.page-news .timeline__item.is-current::before {
  width: 2px;
  background: var(--cyan);
}

.page-news .timeline__round {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding-right: 10px;
}

.page-news .timeline__num {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  color: var(--cyan);
}

.page-news .timeline__unit {
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--mute);
  white-space: nowrap;
}

.page-news .timeline__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 6px;
}

.page-news .timeline__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.page-news .timeline__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.3;
  color: var(--mint);
}

.page-news .timeline__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(233, 245, 241, 0.7);
}

/* ---------- 升降级观察 ---------- */
.page-news .zone-bar {
  display: flex;
  gap: 3px;
  margin: 0 0 clamp(20px, 3vw, 30px);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.page-news .zone-bar__seg {
  padding: 12px 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--mint);
}

.page-news .zone-bar__seg--up {
  flex: 2;
  background: rgba(240, 160, 48, 0.5);
  color: #2b1704;
  font-weight: 700;
}

.page-news .zone-bar__seg--play {
  flex: 3;
  background: rgba(240, 160, 48, 0.24);
}

.page-news .zone-bar__seg--mid {
  flex: 6;
  background: rgba(30, 58, 51, 0.92);
  color: rgba(233, 245, 241, 0.62);
}

.page-news .zone-bar__seg--down {
  flex: 3;
  background: rgba(217, 72, 47, 0.48);
}

.page-news .zone-cards {
  gap: 14px;
}

.page-news .zone-card {
  padding: 20px 20px 22px;
  border: 1px solid var(--news-hair);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius-m);
  background: var(--news-card);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.page-news .zone-card:hover {
  transform: translateY(-2px);
  border-color: var(--news-rise);
  border-top-color: var(--amber);
}

.page-news .zone-card__stage {
  margin: 0 0 10px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.page-news .zone-card__title {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--mint);
}

.page-news .zone-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(233, 245, 241, 0.72);
}

/* ---------- 防守表现专题 ---------- */
.page-news .defence {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.page-news .defence__figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--news-hair);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--stands);
  aspect-ratio: 4 / 3;
}

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

.page-news .defence__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(190deg, rgba(11, 31, 26, 0.12), rgba(11, 31, 26, 0.72)),
    repeating-linear-gradient(0deg, rgba(41, 242, 192, 0.09) 0 1px, transparent 1px 26px);
}

.page-news .defence__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .defence__stripes {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 12px 14px;
  border: 1px dashed var(--news-hair);
  border-radius: var(--radius-s);
  background: rgba(30, 58, 51, 0.3);
}

.page-news .defence__stripe {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: rgba(41, 242, 192, 0.8);
}

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

.page-news .defence__item {
  padding: 16px 18px;
  border-left: 2px solid var(--turf);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  background-image: linear-gradient(90deg, rgba(30, 58, 51, 0.58), rgba(30, 58, 51, 0));
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.page-news .defence__item:hover {
  border-left-color: var(--cyan);
  transform: translateX(2px);
}

.page-news .defence__item h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.32;
  color: var(--mint);
}

.page-news .defence__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(233, 245, 241, 0.72);
}

/* ---------- 梯队与替补 ---------- */
.page-news .youth {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.page-news .youth__figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--news-hair);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--stands);
  aspect-ratio: 4 / 3;
}

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

.page-news .youth__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(170deg, rgba(11, 31, 26, 0.1), rgba(11, 31, 26, 0.68)),
    repeating-linear-gradient(90deg, rgba(240, 160, 48, 0.09) 0 1px, transparent 1px 34px);
}

/* ---------- 持续收到更新 ---------- */
.page-news .follow {
  gap: 14px;
}

.page-news .follow__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 22px;
  border: 1px solid var(--news-hair);
  border-radius: var(--radius-m);
  background: var(--news-card);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.page-news .follow__item:hover {
  transform: translateY(-2px);
  background: rgba(30, 58, 51, 0.5);
}

.page-news .follow__idx {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--red);
}

.page-news .follow__item h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--mint);
}

.page-news .follow__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(233, 245, 241, 0.72);
}

.page-news .follow__item p a,
.page-news .note a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 242, 192, 0.35);
}

.page-news .follow__item p a:hover,
.page-news .note a:hover {
  border-bottom-color: var(--cyan);
}

.page-news .note {
  margin: clamp(18px, 3vw, 26px) 0 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--mute);
}

/* ---------- 页尾索引 ---------- */
.page-news .section--tight h2 {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  color: var(--mint);
}

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

/* ---------- 响应式 ---------- */
@media (min-width: 720px) {
  .page-news .news-flash {
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
  }

  .page-news .news-flash__card--lead {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
    justify-content: flex-start;
  }

  .page-news .news-flash__card:nth-child(2) {
    grid-column: 8 / span 5;
    grid-row: 1;
  }

  .page-news .news-flash__card:nth-child(3) {
    grid-column: 8 / span 5;
    grid-row: 2;
  }

  .page-news .zone-bar__seg {
    padding: 13px 10px;
    font-size: 12px;
  }
}

@media (min-width: 860px) {
  .page-news .defence {
    grid-template-columns: 5fr 7fr;
  }

  .page-news .youth {
    grid-template-columns: 7fr 5fr;
  }
}

@media (max-width: 560px) {
  .page-news .timeline__item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .page-news .timeline__item::before {
    left: 52px;
  }

  .page-news .timeline__body {
    padding-left: 4px;
  }

  .page-news .zone-bar {
    flex-wrap: wrap;
    border-radius: var(--radius-s);
  }

  .page-news .zone-bar__seg {
    flex: 1 1 46%;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-flash__card,
  .page-news .zone-card,
  .page-news .follow__item,
  .page-news .defence__item,
  .page-news .timeline__item {
    transition: none;
  }

  .page-news .news-flash__card:hover,
  .page-news .zone-card:hover,
  .page-news .follow__item:hover,
  .page-news .defence__item:hover {
    transform: none;
  }
}
<<<END>>>
