/* ===== 赛事日志 /journal/ ===== */
.page-news {
  --newsx-gap: clamp(22px, 4vw, 48px);
  --newsx-rule: rgba(42, 74, 107, .38);
  background: var(--ky-night);
  color: var(--ky-white);
}

.page-news [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s var(--ky-ease), transform .6s var(--ky-ease);
}

@media (prefers-reduced-motion: reduce) {
  .page-news [data-reveal] {
    transition: none;
  }
}

/* ---------- 首屏 ---------- */
.newsx-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5.6vw, 60px) 0 clamp(34px, 7vw, 86px);
  border-bottom: 1px solid var(--newsx-rule);
}

.newsx-hero__bg {
  position: absolute;
  inset: 0;
}

.newsx-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
}

.newsx-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 38, .28) 0%, rgba(7, 20, 38, .86) 56%, var(--ky-night) 100%),
    repeating-linear-gradient(90deg, rgba(42, 74, 107, .22) 0 1px, transparent 1px 96px);
}

.newsx-hero__inner {
  position: relative;
  z-index: 1;
}

.newsx-hero h1 {
  margin: 16px 0 0;
  max-width: 16em;
  font-size: clamp(30px, 7.6vw, 62px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.02em;
}

.newsx-hero__lead {
  margin: 20px 0 0;
  max-width: 58ch;
  font-size: clamp(15px, 3.2vw, 18px);
  line-height: 1.78;
  color: var(--ky-mist);
}

.newsx-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.newsx-index a {
  display: inline-block;
  padding: 9px 15px;
  border: 1px solid var(--ky-line);
  color: var(--ky-mist);
  font-family: var(--ky-font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
  transition: color .25s var(--ky-ease), border-color .25s var(--ky-ease), background-color .25s var(--ky-ease);
}

.newsx-index a:hover,
.newsx-index a:focus-visible {
  color: var(--ky-white);
  border-color: var(--ky-orange);
  background: rgba(255, 107, 26, .1);
}

.newsx-hero__status {
  margin: 26px 0 0;
  font-size: 13px;
  color: var(--ky-mist);
}

.newsx-hero__status .ky-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- 通用区块 ---------- */
.newsx-block {
  padding: clamp(42px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--newsx-rule);
}

.newsx-block:last-of-type {
  border-bottom: 0;
}

.newsx-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 62ch;
}

.newsx-head h2 {
  margin: 0;
  font-size: clamp(22px, 4.8vw, 36px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.01em;
}

.newsx-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ky-mist);
}

.newsx-more {
  margin: var(--newsx-gap) 0 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--ky-mist);
}

.newsx-more a {
  color: var(--ky-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 26, .45);
}

.newsx-more a:hover,
.newsx-more a:focus-visible {
  border-bottom-color: var(--ky-orange);
}

/* ---------- 公告时间轴 ---------- */
.newsx-timeline {
  display: grid;
  gap: var(--newsx-gap);
  margin-top: var(--newsx-gap);
}

.newsx-timeline__media {
  position: relative;
}

.newsx-timeline__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.newsx-tl {
  position: relative;
  padding: 0 0 30px 30px;
}

.newsx-tl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ky-orange);
  background: var(--ky-night);
  transform: rotate(45deg);
}

.newsx-tl::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 24px;
  bottom: 0;
  width: 1px;
  background: var(--ky-line-soft);
}

.newsx-tl:last-child {
  padding-bottom: 0;
}

.newsx-tl:last-child::after {
  display: none;
}

.newsx-tl__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.newsx-tl__slot {
  font-family: var(--ky-font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ky-mist);
}

.newsx-tl__meta {
  display: grid;
  grid-template-columns: 4.5em minmax(0, 1fr);
  gap: 6px 14px;
  margin: 12px 0 0;
  font-size: 14px;
}

.newsx-tl__meta dt {
  font-family: var(--ky-font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ky-mist);
  padding-top: 3px;
}

.newsx-tl__meta dd {
  margin: 0;
  line-height: 1.7;
  color: var(--ky-white);
  overflow-wrap: break-word;
}

/* ---------- 复盘 ---------- */
.newsx-tally {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: var(--newsx-gap) 0 0;
  font-size: 14px;
  color: var(--ky-mist);
}

.newsx-tally__num {
  font-family: var(--ky-font-mono);
  font-size: clamp(34px, 8vw, 54px);
  font-weight: 700;
  line-height: 1;
  color: var(--ky-green);
}

.newsx-tally__unit {
  font-size: 14px;
  color: var(--ky-mist);
}

.newsx-banner {
  margin: calc(var(--newsx-gap) * .72) 0 0;
}

.newsx-reviews {
  display: grid;
  gap: 14px;
  margin-top: var(--newsx-gap);
}

.newsx-review {
  position: relative;
  border: 1px solid var(--ky-line-soft);
  background: var(--ky-ink);
}

.newsx-review::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 24px solid var(--ky-orange);
  border-left: 24px solid transparent;
}

.newsx-review > summary {
  list-style: none;
  cursor: pointer;
}

.newsx-review > summary::-webkit-details-marker {
  display: none;
}

.newsx-review__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 16px;
}

.newsx-review__id {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.newsx-review__round {
  font-family: var(--ky-font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--ky-white);
}

.newsx-review__place {
  font-family: var(--ky-font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ky-mist);
}

.newsx-review__gd {
  font-family: var(--ky-font-mono);
  font-size: clamp(36px, 9vw, 52px);
  font-weight: 700;
  line-height: .9;
}

.newsx-review__gd--plus {
  color: var(--ky-green);
}

.newsx-review__gd--minus {
  color: var(--ky-red);
}

.newsx-review__gd--zero {
  color: var(--ky-mist);
}

.newsx-review__body {
  padding: 0 20px 20px;
  border-top: 1px solid var(--ky-line-faint);
}

.newsx-review__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding-top: 16px;
}

.newsx-review__stat dt {
  margin: 0 0 4px;
  font-family: var(--ky-font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ky-mist);
}

.newsx-review__stat dd {
  margin: 0;
  font-family: var(--ky-font-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--ky-white);
}

.newsx-review__note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ky-mist);
}

/* ---------- 专题系列 ---------- */
.newsx-series__media {
  margin: var(--newsx-gap) 0 0;
}

.newsx-series {
  margin-top: calc(var(--newsx-gap) * .8);
  border-top: 1px solid var(--ky-line-soft);
}

.newsx-series__row {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ky-line-faint);
}

.newsx-series__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ky-white);
}

.newsx-series__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ky-mist);
}

.newsx-series__cadence {
  font-family: var(--ky-font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ky-amber);
}

/* ---------- 榜单更新 ---------- */
.newsx-board {
  display: grid;
  gap: 14px;
  margin-top: var(--newsx-gap);
}

.newsx-board__item {
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--ky-orange);
}

.newsx-board__name {
  margin: 0;
  font-family: var(--ky-font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--ky-white);
}

.newsx-board__change {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ky-mist);
}

/* ---------- 订阅与回访 ---------- */
.newsx-path {
  display: grid;
  gap: var(--newsx-gap);
  margin-top: var(--newsx-gap);
}

.newsx-path__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2px;
}

.newsx-path__step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ky-line-faint);
}

.newsx-path__step:first-child {
  border-top: 1px solid var(--ky-line-faint);
}

.newsx-path__no {
  font-family: var(--ky-font-mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ky-orange);
}

.newsx-path__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ky-white);
}

.newsx-path__text {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ky-mist);
}

.newsx-sub {
  align-self: start;
  padding: 24px 22px;
  border: 1px solid var(--ky-line-soft);
  background: var(--ky-steppe);
}

.newsx-sub__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ky-white);
}

.newsx-sub__text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ky-mist);
}

.newsx-sub__mail {
  font-family: var(--ky-font-mono);
  font-size: 13px;
  color: var(--ky-white);
  overflow-wrap: anywhere;
}

.newsx-sub .ky-btn {
  margin-top: 18px;
}

.newsx-sub__hint {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ky-mist);
}

.newsx-sub__hint a {
  color: var(--ky-amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 162, 77, .45);
}

.newsx-sub__hint a:hover,
.newsx-sub__hint a:focus-visible {
  border-bottom-color: var(--ky-amber);
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .newsx-reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsx-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .newsx-timeline {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.55fr);
    align-items: start;
  }

  .newsx-timeline__media {
    position: sticky;
    top: calc(var(--ky-header-h) + 24px);
  }

  .newsx-path {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }

  .newsx-series__row {
    grid-template-columns: 128px minmax(0, 1fr) 180px;
    align-items: baseline;
    gap: 6px 20px;
  }

  .newsx-series__cadence {
    text-align: right;
  }
}

@media (min-width: 1120px) {
  .newsx-reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
<<<END>>>
