.page-news {
  --news-rail: 244px;
  --news-tag-data: #A9C0FF;
  --news-tag-live: #9C8CFF;
  --news-hair: rgba(200, 191, 168, 0.17);
  --news-hair-soft: rgba(200, 191, 168, 0.09);
  background: var(--sig-ink);
  color: var(--sig-body);
  font-family: var(--sig-sans);
  overflow-x: clip;
}

/* ---------- 首屏 ---------- */

.page-news .news-hero {
  position: relative;
  padding: clamp(26px, 4vw, 48px) 0 0;
  isolation: isolate;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -24%;
  right: -14%;
  width: min(780px, 82vw);
  height: 122%;
  background: linear-gradient(126deg, rgba(46, 107, 255, 0.28), rgba(122, 77, 255, 0.2) 50%, rgba(7, 17, 15, 0) 82%);
  clip-path: polygon(24% 0, 100% 0, 100% 72%, 0 100%);
  pointer-events: none;
}

.page-news .news-hero .sig-eyebrow {
  margin: 18px 0 12px;
}

.page-news .news-hero h1 {
  font-size: clamp(30px, 5.4vw, 58px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.022em;
  margin: 0;
  max-width: 20em;
  color: var(--sig-body);
}

.page-news .news-hero__lead {
  margin: clamp(16px, 2.4vw, 22px) 0 0;
  max-width: 40em;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: rgba(230, 241, 236, 0.78);
}

.page-news .news-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin: clamp(22px, 3vw, 32px) 0 0;
  padding: 0;
}

.page-news .news-hero__facts dt {
  font-family: var(--sig-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--sig-muted);
}

.page-news .news-hero__facts dd {
  margin: 5px 0 0;
  font-family: var(--sig-mono);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--sig-cyan);
  letter-spacing: -0.01em;
}

.page-news .news-hero__band {
  position: relative;
  margin: clamp(26px, 4vw, 46px) 0 0;
  padding: 0;
  height: clamp(124px, 21vw, 260px);
  overflow: hidden;
}

.page-news .news-hero__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 15, 0.08) 0%, rgba(7, 17, 15, 0.88) 100%);
  pointer-events: none;
}

.page-news .news-hero__band img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center 60%;
}

/* ---------- 主体栅格 ---------- */

.page-news .news-feed {
  padding: clamp(40px, 6vw, 76px) 0 clamp(48px, 7vw, 88px);
}

.page-news .news-feed__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 4vw, 42px);
}

@media (min-width: 980px) {
  .page-news .news-feed__layout {
    grid-template-columns: var(--news-rail) minmax(0, 1fr);
    gap: clamp(38px, 4.4vw, 68px);
  }
}

/* ---------- 左侧刻度列 ---------- */

.page-news .news-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

@media (min-width: 980px) {
  .page-news .news-rail {
    position: sticky;
    top: 94px;
    align-self: start;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    scrollbar-width: thin;
    padding-right: 4px;
  }
}

.page-news .news-rail__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--sig-body);
}

.page-news .news-scale {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--sig-carbon);
  border: 1px solid var(--news-hair);
  border-radius: 16px;
}

.page-news .news-scale__tick {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  font-family: var(--sig-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sig-muted);
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid transparent;
  transition: color 160ms var(--sig-ease), background 160ms var(--sig-ease), border-color 160ms var(--sig-ease);
}

.page-news .news-scale__tick.is-latest {
  color: var(--sig-cyan);
  border-color: rgba(53, 242, 208, 0.28);
}

.page-news .news-scale__tick.is-current {
  background: var(--sig-cyan);
  border-color: var(--sig-cyan);
  color: var(--sig-ink);
  font-weight: 800;
  box-shadow: 0 0 20px -6px var(--sig-cyan-soft);
}

.page-news .news-rail__jump {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-news .news-rail__jump a {
  font-family: var(--sig-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--sig-muted);
  text-decoration: none;
  padding: 7px 0 7px 12px;
  border-left: 1px solid var(--news-hair);
  transition: color 160ms var(--sig-ease), border-color 160ms var(--sig-ease), padding-left 160ms var(--sig-ease);
}

.page-news .news-rail__jump a:hover,
.page-news .news-rail__jump a:focus-visible {
  color: var(--sig-cyan);
  border-color: var(--sig-cyan);
  padding-left: 16px;
}

.page-news .news-rail__figure {
  display: none;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: var(--sig-carbon);
}

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

@media (min-width: 980px) {
  .page-news .news-rail__figure {
    display: block;
  }
}

.page-news .news-rail__hint {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--sig-muted);
  border-left: 2px solid var(--sig-cyan-soft);
  padding-left: 12px;
}

.page-news .news-rail__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

/* ---------- 条目流 ---------- */

.page-news .news-stream {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 60px);
  min-width: 0;
}

.page-news .news-block {
  min-width: 0;
}

.page-news .news-block__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--news-hair);
}

.page-news .news-block__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sig-orange);
  flex: 0 0 auto;
  transform: translateY(-3px);
}

.page-news .news-block__head h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.012em;
  color: var(--sig-body);
}

.page-news .news-block__stamp {
  margin-left: auto;
  font-family: var(--sig-mono);
  font-size: 11.5px;
  letter-spacing: 0.07em;
  color: var(--sig-muted);
  white-space: nowrap;
}

/* ---------- 单条条目 ---------- */

.page-news .news-item {
  position: relative;
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--news-hair-soft);
}

.page-news .news-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--sig-cyan), var(--sig-orange));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--sig-ease);
}

.page-news .news-item:hover::after,
.page-news .news-item:focus-within::after {
  transform: scaleX(1);
}

.page-news .news-item__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 9px;
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--sig-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 3px 10px;
  border-radius: var(--sig-radius-pill);
  border: 1px solid currentColor;
  white-space: nowrap;
}

.page-news .news-tag--report { color: var(--sig-cyan); }
.page-news .news-tag--transfer { color: var(--sig-orange); }
.page-news .news-tag--data { color: var(--news-tag-data); }
.page-news .news-tag--live { color: var(--news-tag-live); }

.page-news .news-item__round {
  font-family: var(--sig-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--sig-muted);
}

.page-news .news-item__title {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 19.5px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.008em;
  color: var(--sig-body);
}

.page-news .news-item__lead {
  margin: 9px 0 0;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.78;
  color: rgba(230, 241, 236, 0.66);
}

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

.page-news .news-item__score li {
  font-family: var(--sig-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sig-cyan);
  background: var(--sig-cyan-dim);
  border-radius: 8px;
  padding: 3px 10px;
}

.page-news .news-item__note {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--sig-cyan);
  border-left: 2px solid var(--sig-cyan-soft);
  transition: max-height 300ms var(--sig-ease), opacity 220ms var(--sig-ease),
    margin-top 300ms var(--sig-ease), padding-left 300ms var(--sig-ease);
}

.page-news .news-item:hover .news-item__note,
.page-news .news-item:focus-within .news-item__note {
  max-height: 14em;
  opacity: 1;
  margin-top: 13px;
  padding-left: 13px;
}

@media (hover: none) {
  .page-news .news-item__note {
    max-height: none;
    opacity: 1;
    margin-top: 13px;
    padding-left: 13px;
  }
}

/* ---------- 归档段 ---------- */

.page-news .news-archive__lead {
  margin: 22px 0 0;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(230, 241, 236, 0.68);
}

.page-news .news-archive__list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
}

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

.page-news .news-archive__list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px 0 15px 14px;
  border-left: 1px solid var(--news-hair);
  transition: border-color 180ms var(--sig-ease);
}

.page-news .news-archive__list li:hover {
  border-color: var(--sig-cyan);
}

.page-news .news-archive__range {
  font-family: var(--sig-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--sig-cyan);
  letter-spacing: 0.02em;
}

.page-news .news-archive__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(230, 241, 236, 0.62);
}

/* ---------- 转会时间线 ---------- */

.page-news .news-transfer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  margin-top: 24px;
}

@media (min-width: 780px) {
  .page-news .news-transfer {
    grid-template-columns: minmax(0, 290px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
  }
}

.page-news .news-transfer__media {
  margin: 0;
  border-radius: var(--sig-radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--sig-carbon);
}

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

.page-news .news-timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 26px;
  list-style: none;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--sig-cyan) 0%, rgba(53, 242, 208, 0.3) 46%, rgba(53, 242, 208, 0) 100%);
}

.page-news .news-timeline__node {
  position: relative;
  padding-bottom: 26px;
}

.page-news .news-timeline__node:last-child {
  padding-bottom: 0;
}

.page-news .news-timeline__node::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sig-ink);
  border: 2px solid var(--sig-cyan);
}

.page-news .news-timeline__stage {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--sig-body);
}

.page-news .news-timeline__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.page-news .news-timeline__items li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.page-news .news-timeline__status {
  flex: 0 0 auto;
  font-family: var(--sig-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: var(--sig-radius-pill);
  border: 1px solid currentColor;
}

.page-news .news-timeline__status--ok {
  color: var(--sig-cyan);
}

.page-news .news-timeline__status--wait {
  color: var(--sig-orange);
}

.page-news .news-timeline__text {
  flex: 1 1 220px;
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(230, 241, 236, 0.72);
}

.page-news .news-transfer__note {
  margin: 24px 0 0;
  max-width: 42em;
  font-size: 14px;
  line-height: 1.8;
  color: var(--sig-muted);
}

/* ---------- 球员数据 ---------- */

.page-news .news-players {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  margin-top: 24px;
}

@media (min-width: 780px) {
  .page-news .news-players {
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
  }
}

.page-news .news-players__media {
  margin: 0;
  border-radius: var(--sig-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sig-carbon);
}

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

.page-news .news-statlist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.page-news .news-statlist__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--news-hair-soft);
}

.page-news .news-statlist__row:first-child {
  border-top: 1px solid var(--news-hair);
  padding-top: 0;
}

.page-news .news-statlist__num {
  grid-row: span 2;
  font-family: var(--sig-mono);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--sig-cyan);
  align-self: start;
  padding-top: 2px;
}

.page-news .news-statlist__label {
  font-family: var(--sig-mono);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  color: var(--sig-muted);
}

.page-news .news-statlist__text {
  grid-column: 2;
  margin: 6px 0 0;
  font-size: 14.5px;
  line-height: 1.76;
  color: rgba(230, 241, 236, 0.7);
}

.page-news .news-players__link {
  margin: 20px 0 0;
}

.page-news .news-players__link a {
  display: inline-block;
  font-family: var(--sig-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--sig-cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--sig-cyan-soft);
  padding-bottom: 3px;
  transition: border-color 160ms var(--sig-ease), color 160ms var(--sig-ease);
}

.page-news .news-players__link a:hover,
.page-news .news-players__link a:focus-visible {
  border-color: var(--sig-cyan);
}

/* ---------- 更新节奏 ---------- */

.page-news .news-cadence {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--news-hair-soft);
  border: 1px solid var(--news-hair-soft);
  border-radius: 16px;
  overflow: hidden;
}

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

.page-news .news-cadence__item {
  background: var(--sig-carbon);
  padding: 22px 20px 24px;
}

.page-news .news-cadence__value {
  margin: 0;
  font-family: var(--sig-mono);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sig-orange);
}

.page-news .news-cadence__label {
  margin: 8px 0 0;
  font-family: var(--sig-mono);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  color: var(--sig-muted);
}

.page-news .news-cadence__text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.76;
  color: rgba(230, 241, 236, 0.66);
}

/* ---------- 尾部去向 ---------- */

.page-news .news-next {
  border-top: 1px solid var(--news-hair);
  padding-top: 24px;
}

.page-news .news-next .sig-eyebrow {
  margin: 0 0 16px;
}

.page-news .news-next__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--news-hair-soft);
  border-radius: 14px;
  overflow: hidden;
}

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

.page-news .news-next__grid a {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 16px 18px;
  background: var(--sig-carbon);
  color: var(--sig-body);
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: background 180ms var(--sig-ease), color 180ms var(--sig-ease);
}

.page-news .news-next__grid a:hover,
.page-news .news-next__grid a:focus-visible {
  background: rgba(53, 242, 208, 0.08);
  color: var(--sig-cyan);
}

@media (prefers-reduced-motion: reduce) {
  .page-news * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
