/* ============ 赛事资讯页 ============ */
.page-news {
  --news-rail-w: 236px;
  --news-radius: 22px;
  display: block;
}

/* ---------- 面包屑 ---------- */
.page-news .news-crumbs {
  padding-top: 26px;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 22px 0 44px;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -32%;
  width: 92%;
  height: 124%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 78% 8%, rgba(76, 46, 107, .55), transparent 62%),
    linear-gradient(150deg, rgba(122, 30, 43, .32), transparent 72%);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 56%);
}

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

.page-news .news-hero h1 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 6.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ivory);
}

.page-news .news-hero .lede {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--muted);
}

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

.page-news .news-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  list-style: none;
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-soft);
}

.page-news .news-hero__facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 118px;
}

.page-news .news-hero__num {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--lime);
}

.page-news .news-hero__lbl {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.page-news .news-hero__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.page-news .news-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(205deg, rgba(198, 242, 78, .22), transparent 48%);
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: 44px 0 76px;
  }

  .page-news .news-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 48px;
  }

  .page-news .news-hero__media {
    transform: translateY(-16px);
  }
}

/* ---------- 通用栏目标题 ---------- */
.page-news .section-head {
  margin-bottom: 30px;
}

.page-news .section-head__title {
  letter-spacing: -.015em;
}

.page-news .section-head .lede {
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
}

/* ---------- 最新战报：侧栏 + 卡片流 ---------- */
.page-news .news-layout {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}

.page-news .news-rail {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, rgba(18, 58, 46, .62), rgba(11, 20, 16, .38));
  padding: 16px;
}

.page-news .news-rail__head {
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--muted);
}

.page-news .news-rail__head ~ .news-rail__head {
  margin-top: 22px;
}

.page-news .news-rail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-rail__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .news-rail__ticks a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  font-family: var(--font-data);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.page-news .news-rail__ticks a:hover,
.page-news .news-rail__ticks a:focus-visible {
  color: var(--ivory);
  border-color: var(--line);
  background: rgba(30, 92, 70, .32);
}

.page-news .tick__i {
  font-size: 10.5px;
  color: var(--lime);
}

@media (max-width: 1023px) {
  .page-news .news-rail__chips,
  .page-news .news-rail__ticks {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .page-news .news-rail__chips > *,
  .page-news .news-rail__ticks > li {
    flex: 0 0 auto;
  }

  .page-news .news-rail__chips::-webkit-scrollbar,
  .page-news .news-rail__ticks::-webkit-scrollbar {
    display: none;
  }
}

@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: var(--news-rail-w) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
  }

  .page-news .news-rail {
    position: sticky;
    top: 28px;
    padding: 20px;
  }

  .page-news .news-rail__chips,
  .page-news .news-rail__ticks {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .page-news .news-rail__ticks li {
    display: block;
  }
}

/* ---------- 联赛标签胶囊 ---------- */
.page-news .lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 4px 12px;
  border: 1px solid currentColor;
  border-radius: var(--pill);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .05em;
  line-height: 1.5;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.page-news .lg__n {
  font-size: 11px;
  opacity: .75;
}

.page-news a.lg:hover,
.page-news a.lg:focus-visible {
  transform: translateX(3px);
  background: rgba(255, 255, 255, .07);
}

.page-news .lg--eng {
  color: var(--lime);
  background: rgba(198, 242, 78, .1);
}

.page-news .lg--esp {
  color: var(--orange);
  background: rgba(255, 138, 61, .1);
}

.page-news .lg--ita {
  color: var(--yellow);
  background: rgba(242, 199, 68, .1);
}

.page-news .lg--ger {
  color: var(--muted);
  background: rgba(143, 167, 155, .12);
}

.page-news .lg--fra {
  color: var(--ivory);
  background: rgba(237, 234, 224, .08);
}

.page-news .lg--ucl {
  color: #B79BE0;
  background: rgba(76, 46, 107, .45);
}

/* ---------- 分组头 ---------- */
.page-news .news-group + .news-group {
  margin-top: 46px;
}

.page-news .news-group__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.page-news .news-group__num {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--lime);
}

.page-news .news-group__title {
  flex: 1 1 auto;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ivory);
}

.page-news .news-group__count {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

/* ---------- 资讯卡片 ---------- */
.page-news .news-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-news .news-card {
  position: relative;
  display: flex;
  padding: 16px 16px 16px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--news-radius);
  background: linear-gradient(158deg, rgba(18, 58, 46, .5), rgba(11, 20, 16, .32));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.page-news .news-card:hover,
.page-news .news-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line);
  background: linear-gradient(158deg, rgba(18, 58, 46, .82), rgba(11, 20, 16, .5));
}

.page-news .news-card__time {
  flex: 0 0 30px;
  align-self: stretch;
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid var(--line);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
  transition: border-color .3s ease, color .3s ease;
}

.page-news .news-card:hover .news-card__time,
.page-news .news-card:focus-within .news-card__time {
  border-left-color: var(--lime);
  color: var(--lime);
}

.page-news .news-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding-left: 14px;
}

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

.page-news .news-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -.005em;
  color: var(--ivory);
}

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

.page-news .news-card__data {
  margin: 2px 0 0;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ivory);
  opacity: .82;
}

.page-news .news-card__data b {
  font-weight: 600;
  color: var(--lime);
}

.page-news .card-flag {
  display: inline-block;
  width: 8px;
  height: 11px;
  margin-right: 3px;
  border-radius: 2px;
  vertical-align: -1px;
}

.page-news .card-flag--yellow {
  background: var(--yellow);
}

.page-news .card-flag--red {
  background: var(--red);
}

.page-news .news-card__thumb {
  position: relative;
  margin: 14px 0 0;
  border-radius: 14px;
  overflow: hidden;
}

.page-news .news-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 10 / 7;
}

.page-news .news-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(210deg, rgba(198, 242, 78, .2), transparent 55%);
}

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

  .page-news .news-card--wide,
  .page-news .news-card--media {
    grid-column: 1 / -1;
  }

  .page-news .news-card--media .news-card__body {
    flex-direction: row-reverse;
    align-items: center;
    gap: 24px;
  }

  .page-news .news-card--media .news-card__text {
    flex: 1 1 auto;
  }

  .page-news .news-card--media .news-card__thumb {
    flex: 0 0 36%;
    margin: 0;
  }
}

/* ---------- 赛季阶段 ---------- */
.page-news .stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-news .stage-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 58, 46, .55), rgba(11, 20, 16, .35));
}

.page-news .stage-card--tint {
  border-color: rgba(76, 46, 107, .85);
  background: linear-gradient(160deg, rgba(76, 46, 107, .5), rgba(11, 20, 16, .42));
}

.page-news .stage-card__range {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--orange);
}

.page-news .stage-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ivory);
}

.page-news .stage-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.74;
  color: var(--muted);
}

.page-news .stage-card__meta {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--line-soft);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--ivory);
  opacity: .72;
}

.page-news .stage-card--lead {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

.page-news .stage-card--lead .stage-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.page-news .stage-card--lead .stage-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-news .stage-card--lead .stage-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 20, 16, .75));
}

.page-news .stage-card--lead .stage-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}

@media (min-width: 760px) {
  .page-news .stage-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }

  .page-news .stage-card {
    grid-column: span 3;
  }

  .page-news .stage-card--lead {
    grid-column: span 6;
    flex-direction: row;
    align-items: stretch;
  }

  .page-news .stage-card--lead .stage-card__media {
    flex: 0 0 46%;
  }

  .page-news .stage-card--lead .stage-card__body {
    flex: 1 1 auto;
    justify-content: center;
    padding: 30px;
  }
}

@media (min-width: 1100px) {
  .page-news .stage-card {
    grid-column: span 2;
  }

  .page-news .stage-card--lead {
    grid-column: span 4;
  }
}

/* ---------- 联赛脉络列表 ---------- */
.page-news .thread-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .thread {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(14, 42, 34, .4);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.page-news .thread:hover {
  transform: translateX(4px);
  border-color: var(--line);
  background: rgba(18, 58, 46, .75);
}

.page-news .thread__idx {
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--lime);
}

.page-news .thread__main {
  flex: 1 1 240px;
  min-width: 0;
}

.page-news .thread__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ivory);
}

.page-news .thread__desc {
  margin: 5px 0 0;
  font-size: 13.5px;
  line-height: 1.66;
  color: var(--muted);
}

.page-news .thread .lg {
  margin-left: auto;
}

/* ---------- 方法笔记 ---------- */
.page-news .note-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-news .note-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(14, 42, 34, .38);
}

.page-news .note-card__idx {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--orange);
}

.page-news .note-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
  color: var(--ivory);
}

.page-news .note-card__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: var(--muted);
}

.page-news .note-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .note-card__media {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
}

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

.page-news .note-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(200deg, rgba(255, 138, 61, .18), transparent 55%);
}

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

  .page-news .note-card--feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 30px;
    padding: 24px;
  }
}

/* ---------- 读者参与 ---------- */
.page-news .pitch-wrap {
  display: grid;
  gap: 22px;
}

.page-news .pitch-main .section-head__title {
  margin-top: 8px;
}

.page-news .pitch-main .lede {
  margin-top: 14px;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
}

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

.page-news .pitch-list li {
  padding: 16px 18px;
  border-left: 2px solid var(--line);
  border-radius: 0 14px 14px 0;
  background: rgba(18, 58, 46, .32);
}

.page-news .pitch-list h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ivory);
}

.page-news .pitch-list p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--muted);
}

.page-news .pitch-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(76, 46, 107, .42), rgba(11, 20, 16, .42));
}

.page-news .pitch-side__label {
  margin: 0;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--muted);
}

.page-news .pitch-side__big {
  margin: 2px 0 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--lime);
}

.page-news .pitch-side__note {
  margin: 6px 0 20px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

.page-news .pitch-side .btn + .btn {
  margin-top: 10px;
}

@media (min-width: 900px) {
  .page-news .pitch-wrap {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
    gap: 36px;
    align-items: start;
  }
}

/* ---------- 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-news .news-card,
  .page-news .thread,
  .page-news .lg,
  .page-news .news-card__time,
  .page-news .news-rail__ticks a {
    transition: none;
  }

  .page-news .news-card:hover,
  .page-news .news-card:focus-within,
  .page-news .thread:hover,
  .page-news a.lg:hover,
  .page-news a.lg:focus-visible {
    transform: none;
  }
}
