/* ============================================================
   赛场资讯  /information/
   ============================================================ */

.page-news {
  --nw-cut: 18px;
  --nw-pad: 20px;
  color: var(--yk-cream);
}

@media (min-width: 768px) {
  .page-news {
    --nw-cut: 28px;
    --nw-pad: 28px;
  }
}

/* ---------- 面包屑 ---------- */

.page-news .nw-crumb {
  padding: 20px 0 0;
}

.page-news .nw-crumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--yk-font-mono);
  font-size: 12px;
  letter-spacing: .06em;
}

.page-news .nw-crumb__item a {
  color: var(--yk-mist);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s var(--yk-ease), border-color .18s var(--yk-ease);
}

.page-news .nw-crumb__item a:hover {
  color: var(--yk-cyan);
  border-bottom-color: var(--yk-cyan);
}

.page-news .nw-crumb__sep {
  color: var(--yk-line);
}

.page-news .nw-crumb__item--current {
  color: var(--yk-cream);
}

/* ---------- 页头 ---------- */

.page-news .nw-head {
  position: relative;
  padding: 36px 0 34px;
  border-bottom: 1px solid var(--yk-line);
}

.page-news .nw-head::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  max-width: 380px;
  height: 3px;
  background: var(--yk-orange);
  transform: skewX(-26deg);
  transform-origin: right center;
}

.page-news .nw-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 88px;
  height: 2px;
  background: var(--yk-cyan);
}

.page-news .nw-head__kicker {
  margin: 0 0 18px;
  font-family: var(--yk-font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--yk-cyan);
}

.page-news .nw-head h1 {
  margin: 0 0 22px;
  max-width: 20ch;
  font-weight: 900;
  font-size: clamp(30px, 7.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--yk-cream);
}

.page-news .nw-head__lede {
  margin: 0;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.85;
  color: var(--yk-mist);
}

/* ---------- 置顶条目 ---------- */

.page-news .nw-top {
  padding: 40px 0 6px;
}

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

.page-news .nw-top__card {
  position: relative;
  padding: 26px 22px 26px;
  background: var(--yk-ink-2);
  border-top: 3px solid var(--yk-cyan);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--nw-cut)), calc(100% - var(--nw-cut)) 100%, 0 100%);
}

.page-news .nw-top__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.page-news .nw-top__when {
  font-family: var(--yk-font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--yk-stone);
}

.page-news .nw-top__title {
  margin: 0 0 16px;
  font-weight: 900;
  font-size: clamp(21px, 4.6vw, 30px);
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--yk-cream);
}

.page-news .nw-top__text {
  margin: 0 0 14px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--yk-mist);
}

.page-news .nw-top__cta {
  margin: 22px 0 0;
}

/* ---------- 标签 ---------- */

.page-news .nw-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid currentColor;
  background: transparent;
  font-family: var(--yk-font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  line-height: 1.6;
  white-space: nowrap;
  color: var(--yk-stone);
}

.page-news .nw-tag--cyan { color: var(--yk-cyan); }
.page-news .nw-tag--orange { color: var(--yk-orange); }
.page-news .nw-tag--clay { color: var(--yk-clay); }
.page-news .nw-tag--moss { color: var(--yk-moss); }
.page-news .nw-tag--stone { color: var(--yk-stone); }

/* ---------- 图片容器 ---------- */

.page-news .nw-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--yk-ink-3);
  border: 1px solid var(--yk-line);
}

.page-news .nw-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
}

.page-news .nw-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(45deg, rgba(59, 232, 200, .06) 0 1px, transparent 1px 14px);
}

/* ---------- 标签筛选与条目列表 ---------- */

.page-news .nw-feed {
  padding: 60px 0 8px;
  border-top: 1px solid var(--yk-line);
  margin-top: 48px;
}

.page-news .nw-feed__head {
  margin-bottom: 22px;
}

.page-news .nw-feed__head h2 {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(22px, 4.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--yk-cream);
}

.page-news .nw-feed__note {
  margin: 0;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.8;
  color: var(--yk-mist);
}

.page-news .nw-tabs__bar {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--yk-line);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-news .nw-tabs__bar::-webkit-scrollbar {
  display: none;
}

.page-news .nw-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  padding: 14px 15px 12px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--yk-mist);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  transition: color .18s var(--yk-ease), border-color .18s var(--yk-ease);
}

.page-news .nw-tab:first-child {
  padding-left: 0;
}

.page-news .nw-tab:hover {
  color: var(--yk-cream);
}

.page-news .nw-tab:focus-visible {
  outline: 2px solid var(--yk-cyan);
  outline-offset: -3px;
}

.page-news .nw-tab[aria-selected="true"] {
  color: var(--yk-cyan);
  border-bottom-color: var(--yk-cyan);
}

.page-news .nw-tab__n {
  font-family: var(--yk-font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--yk-stone);
  transition: color .18s var(--yk-ease);
}

.page-news .nw-tab[aria-selected="true"] .nw-tab__n {
  color: var(--yk-cyan);
}

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

.page-news .nw-item {
  display: grid;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid var(--yk-line);
}

.page-news .nw-item__title {
  margin: 12px 0 8px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  color: var(--yk-cream);
}

.page-news .nw-item__desc {
  margin: 0;
  max-width: 66ch;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--yk-mist);
}

.page-news .nw-item__side {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--yk-font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--yk-stone);
}

.page-news .nw-item__time {
  color: var(--yk-moss);
}

/* ---------- 字段说明 ---------- */

.page-news .nw-fields {
  display: grid;
  gap: 28px;
  padding: 72px 0 8px;
  border-top: 1px solid var(--yk-line);
  margin-top: 56px;
}

.page-news .nw-fields__kicker {
  margin: 0 0 12px;
  font-family: var(--yk-font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--yk-orange);
}

.page-news .nw-fields__title {
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(23px, 4.8vw, 34px);
  line-height: 1.22;
  letter-spacing: -.025em;
  color: var(--yk-cream);
}

.page-news .nw-fields__text {
  margin: 0 0 14px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--yk-mist);
}

.page-news .nw-compare {
  display: grid;
  margin: 24px 0 22px;
  border: 1px solid var(--yk-line);
  background: var(--yk-ink-2);
}

.page-news .nw-compare__cell {
  padding: 18px 18px 20px;
}

.page-news .nw-compare__cell + .nw-compare__cell {
  border-top: 1px solid var(--yk-line);
}

.page-news .nw-compare__k {
  display: block;
  margin-bottom: 10px;
  font-family: var(--yk-font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--yk-clay);
}

.page-news .nw-compare__v {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--yk-cream);
}

.page-news .nw-fields__cta {
  margin: 0;
}

/* ---------- 赛季专栏 ---------- */

.page-news .nw-columns {
  padding: 72px 0 8px;
  border-top: 1px solid var(--yk-line);
  margin-top: 56px;
}

.page-news .nw-columns__kicker {
  margin: 0 0 12px;
  font-family: var(--yk-font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--yk-cyan);
}

.page-news .nw-columns__title {
  margin: 0 0 16px;
  font-weight: 900;
  font-size: clamp(26px, 5.6vw, 42px);
  line-height: 1.14;
  letter-spacing: -.03em;
  color: var(--yk-cream);
}

.page-news .nw-columns__lede {
  margin: 0 0 32px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--yk-mist);
}

.page-news .nw-columns__media {
  margin-bottom: 34px;
}

.page-news .nw-col {
  border-top: 1px solid var(--yk-line);
}

.page-news .nw-col:last-child {
  border-bottom: 1px solid var(--yk-line);
}

.page-news .nw-col__heading {
  margin: 0;
}

.page-news .nw-col__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
  padding: 24px 0;
  border: 0;
  background: none;
  text-align: left;
  color: var(--yk-cream);
  font-family: inherit;
  cursor: pointer;
  transition: color .18s var(--yk-ease);
}

.page-news .nw-col__trigger:hover .nw-col__title {
  color: var(--yk-cyan);
}

.page-news .nw-col__trigger:focus-visible {
  outline: 2px solid var(--yk-cyan);
  outline-offset: 4px;
}

.page-news .nw-col__num {
  flex: 0 0 auto;
  padding-top: 6px;
  font-family: var(--yk-font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--yk-cyan);
}

.page-news .nw-col__title {
  flex: 1 1 auto;
  font-weight: 800;
  font-size: clamp(18px, 3.6vw, 26px);
  line-height: 1.32;
  letter-spacing: -.02em;
  transition: color .18s var(--yk-ease);
}

.page-news .nw-col__icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 8px;
}

.page-news .nw-col__icon::before,
.page-news .nw-col__icon::after {
  content: "";
  position: absolute;
  background: var(--yk-cyan);
  transition: transform .2s var(--yk-ease), opacity .2s var(--yk-ease);
}

.page-news .nw-col__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.page-news .nw-col__icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%) scaleY(1);
}

.page-news .nw-col__trigger[aria-expanded="true"] .nw-col__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.page-news .nw-col__panel {
  padding: 0 0 26px;
}

.page-news .nw-col__panel p {
  margin: 0 0 14px;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.9;
  color: var(--yk-mist);
}

.page-news .nw-col__panel p:last-child {
  margin-bottom: 0;
}

/* ---------- 上手三步 ---------- */

.page-news .nw-start {
  display: grid;
  gap: 30px;
  padding: 72px 0 8px;
  border-top: 1px solid var(--yk-line);
  margin-top: 56px;
}

.page-news .nw-start__title {
  margin: 0 0 26px;
  font-weight: 900;
  font-size: clamp(23px, 4.8vw, 34px);
  line-height: 1.22;
  letter-spacing: -.025em;
  color: var(--yk-cream);
}

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

.page-news .nw-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--yk-line);
}

.page-news .nw-step:last-child {
  border-bottom: 1px solid var(--yk-line);
}

.page-news .nw-step__num {
  font-family: var(--yk-font-mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--yk-cyan);
}

.page-news .nw-step__title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.45;
  color: var(--yk-cream);
}

.page-news .nw-step__body p {
  margin: 0;
  max-width: 54ch;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--yk-mist);
}

.page-news .nw-start__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

/* ---------- 订阅与反馈 ---------- */

.page-news .nw-sub {
  position: relative;
  margin: 64px 0 72px;
  padding: 30px 22px 32px;
  background: var(--yk-ink-2);
  border-left: 3px solid var(--yk-orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--nw-cut) 100%, 0 calc(100% - var(--nw-cut)));
}

.page-news .nw-sub__title {
  margin: 0 0 14px;
  font-weight: 900;
  font-size: clamp(21px, 4.4vw, 30px);
  line-height: 1.24;
  letter-spacing: -.025em;
  color: var(--yk-cream);
}

.page-news .nw-sub__text {
  margin: 0 0 14px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--yk-mist);
}

.page-news .nw-sub__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--yk-line);
}

.page-news .nw-sub__key {
  font-family: var(--yk-font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--yk-stone);
}

.page-news .nw-sub__val {
  font-family: var(--yk-font-mono);
  font-size: 13.5px;
  letter-spacing: .02em;
  color: var(--yk-cyan);
  word-break: break-all;
}

.page-news .nw-sub__copy {
  flex: 0 0 auto;
  padding: 5px 12px;
  border: 1px solid var(--yk-line);
  background: transparent;
  color: var(--yk-cream);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
  transition: color .18s var(--yk-ease), border-color .18s var(--yk-ease);
}

.page-news .nw-sub__copy:hover {
  color: var(--yk-orange);
  border-color: var(--yk-orange);
}

.page-news .nw-sub__copy:focus-visible {
  outline: 2px solid var(--yk-cyan);
  outline-offset: 2px;
}

.page-news .nw-sub__copy[data-state="done"] {
  color: var(--yk-moss);
  border-color: var(--yk-moss);
}

.page-news .nw-sub__links {
  margin: 20px 0 0;
  font-size: 14.5px;
}

.page-news .nw-sub__links a {
  color: var(--yk-cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--yk-line);
  transition: border-color .18s var(--yk-ease);
}

.page-news .nw-sub__links a:hover {
  border-bottom-color: var(--yk-cyan);
}

/* ---------- 桌面栅格 ---------- */

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

  .page-news .nw-item__side {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
  }

  .page-news .nw-compare {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .nw-compare__cell + .nw-compare__cell {
    border-top: 0;
    border-left: 1px solid var(--yk-line);
  }
}

@media (min-width: 900px) {
  .page-news .nw-top {
    padding-top: 52px;
  }

  .page-news .nw-top__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    gap: 44px;
    align-items: center;
  }

  .page-news .nw-top__card {
    padding: 32px 34px 34px;
  }

  .page-news .nw-fields {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
  }

  .page-news .nw-fields__figure {
    position: sticky;
    top: 96px;
  }

  .page-news .nw-start {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }

  .page-news .nw-start__figure {
    max-width: 380px;
  }

  .page-news .nw-columns__lede {
    max-width: 64ch;
  }

  .page-news .nw-sub {
    padding: 40px 44px 42px;
  }
}
<<<END>>>
