.page-news {
  --news-gap: clamp(18px, 3vw, 28px);
  --news-card-bg: #0D1B2A;
  --news-card-bg-alt: #0B1F3A;
  --news-border: 2px solid rgba(192, 192, 192, 0.55);
  --news-shadow: 8px 8px 0 rgba(0, 0, 0, 0.42);
  --news-shadow-soft: 4px 4px 0 rgba(0, 0, 0, 0.3);
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0;
}

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

/* ===== 面包屑与页眉 ===== */
.page-news .breadcrumb {
  margin-bottom: clamp(20px, 4vw, 36px);
}

.news-masthead {
  position: relative;
  padding: clamp(24px, 5vw, 44px) clamp(20px, 4vw, 40px);
  background: var(--c-bg-deep);
  border: var(--bw) solid var(--c-silver);
  border-radius: var(--radius);
  box-shadow: var(--news-shadow);
  overflow: hidden;
}

.news-masthead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-neon) 0%, var(--c-orange) 100%);
}

.news-masthead__index {
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.news-masthead__title {
  font-family: var(--f-title);
  font-size: clamp(26px, 4.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  transform: skewX(-5deg);
  transform-origin: left center;
  margin: 0 0 18px;
  color: var(--c-white);
  max-width: 960px;
}

.news-masthead__desc {
  font-family: var(--f-body);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 740px;
  margin: 0 0 22px;
}

.news-masthead__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--c-blue);
  border-top: 1px dashed rgba(192, 192, 192, 0.35);
  padding-top: 16px;
}

.news-masthead__meta span {
  position: relative;
  padding-left: 14px;
}

.news-masthead__meta span::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: var(--c-neon);
  font-size: 10px;
  top: 2px;
}

/* ===== 滚动快讯 ===== */
.news-ticker {
  display: flex;
  align-items: stretch;
  border: var(--bw) solid var(--c-silver);
  border-left: 0;
  border-right: 0;
  background: var(--c-bg-deep);
  margin: clamp(22px, 4vw, 36px) 0 clamp(28px, 5vw, 48px);
  overflow: hidden;
}

.news-ticker__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-bg);
  background: var(--c-neon);
  border-right: var(--bw) solid var(--c-silver);
}

.news-ticker__track {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 42px;
}

.news-ticker__text {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  line-height: 42px;
  padding-left: 100%;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-white);
  animation: news-ticker-move 36s linear infinite;
}

.news-ticker__text::first-letter {
  color: var(--c-neon);
}

@keyframes news-ticker-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ===== 章节节奏 ===== */
.news-section + .news-section {
  margin-top: calc(var(--news-gap) * 2.2);
  border-top: 1px solid rgba(192, 192, 192, 0.18);
  padding-top: calc(var(--news-gap) * 1.6);
}

.news-section .section-subtitle {
  margin-top: 10px;
  margin-bottom: clamp(22px, 4vw, 34px);
  max-width: 780px;
}

/* ===== 布局总纲 ===== */
.news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.news-layout__main {
  min-width: 0;
}

.news-layout__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== 头条文章 ===== */
.article-card {
  background: var(--news-card-bg);
  border: var(--news-border);
  border-radius: var(--radius);
  box-shadow: var(--news-shadow);
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--news-shadow-soft);
}

.article-card--featured .media-frame--hero {
  border-radius: 0;
  border: 0;
  border-bottom: var(--bw) solid var(--c-silver);
}

.article-card__body {
  padding: clamp(18px, 3vw, 28px);
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.article-card__date {
  font-size: 13px;
  color: var(--c-muted);
}

.article-card__title {
  font-family: var(--f-title);
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--c-white);
  transform: skewX(-3deg);
  transform-origin: left center;
}

.article-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0 0 16px;
  max-width: 72ch;
}

.article-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

/* ===== 标签 ===== */
.article-tag {
  display: inline-block;
  padding: 4px 10px 3px;
  font-size: 12px;
  font-family: var(--f-mono);
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid var(--c-silver);
  border-radius: 999px;
  background: rgba(192, 192, 192, 0.08);
  color: var(--c-white);
  line-height: 1.4;
}

.article-tag--neon {
  color: var(--c-neon);
  border-color: rgba(57, 255, 20, 0.5);
  background: rgba(57, 255, 20, 0.08);
}

.article-tag--orange {
  color: var(--c-orange);
  border-color: rgba(255, 107, 0, 0.5);
  background: rgba(255, 107, 0, 0.08);
}

/* ===== 栏目索引 ===== */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 20px;
  padding: 12px 16px;
  border: 1px dashed rgba(192, 192, 192, 0.3);
  border-radius: 10px;
  background: rgba(13, 27, 42, 0.6);
}

.news-filter__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  margin-right: 4px;
}

.news-filter__item {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-silver);
  padding: 3px 12px;
  border: 1px solid rgba(192, 192, 192, 0.35);
  border-radius: 999px;
  background: transparent;
  cursor: default;
}

.news-filter__item.is-active {
  color: var(--c-bg);
  background: var(--c-neon);
  border-color: var(--c-neon);
  font-weight: 700;
}

/* ===== 新闻列表 ===== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item {
  display: flex;
  gap: 16px;
  padding: 20px 12px 20px 16px;
  background: rgba(13, 27, 42, 0.72);
  border: 1px solid rgba(192, 192, 192, 0.25);
  border-left: 4px solid var(--c-silver);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  border-left-color: var(--c-neon);
  border-top-color: rgba(192, 192, 192, 0.45);
  box-shadow: var(--news-shadow-soft);
}

.news-item__index {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--c-muted);
  padding-top: 4px;
  min-width: 24px;
  text-align: right;
}

.news-item__body {
  min-width: 0;
  flex: 1;
}

.news-item__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.news-item__date {
  font-size: 12px;
  color: var(--c-muted);
}

.news-item__title {
  font-family: var(--f-title);
  font-size: 16px;
  line-height: 1.4;
  color: var(--c-white);
  margin: 0 0 8px;
}

.news-item__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0 0 10px;
}

.news-item__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12px;
  color: var(--c-blue);
}

.news-item__stats span {
  border-left: 2px solid rgba(57, 255, 20, 0.6);
  padding-left: 8px;
}

/* ===== 侧栏卡 ===== */
.toc-card,
.hot-card {
  background: var(--news-card-bg);
  border: var(--news-border);
  border-radius: var(--radius);
  box-shadow: var(--news-shadow-soft);
  overflow: hidden;
}

.toc-card__header,
.hot-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.25);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toc-card__list,
.hot-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-card__list li {
  border-bottom: 1px dashed rgba(192, 192, 192, 0.16);
}

.toc-card__list li:last-child,
.hot-card__list li:last-child {
  border-bottom: 0;
}

.toc-card__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  color: var(--c-white);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.toc-card__list a span {
  color: var(--c-neon);
  font-size: 12px;
  min-width: 22px;
}

.toc-card__list a:hover {
  background: rgba(57, 255, 20, 0.06);
  color: var(--c-neon);
}

.hot-card__list li {
  border-bottom: 1px dashed rgba(192, 192, 192, 0.16);
}

.hot-card__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--c-silver);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.45;
  transition: background 0.2s ease, color 0.2s ease;
}

.hot-card__list a:hover {
  background: rgba(255, 107, 0, 0.06);
  color: var(--c-orange);
}

.hot-card__rank {
  color: var(--c-orange);
  font-size: 12px;
  min-width: 22px;
}

/* ===== 数据小卡 ===== */
.stat-card {
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--news-shadow-soft);
}

.stat-card__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #4A3A1C;
}

.stat-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(74, 58, 28, 0.25);
}

.stat-card__row:last-of-type {
  border-bottom: 0;
}

.stat-card__num {
  font-size: 22px;
  font-weight: 700;
  color: #4A3A1C;
}

.stat-card__unit {
  font-size: 12px;
  color: #6B5A3C;
}

.stat-card__note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #6B5A3C;
}

/* ===== 周末连看：对阵卡片 ===== */
.match-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap);
  margin-bottom: var(--news-gap);
}

.match-card {
  background: var(--news-card-bg);
  border: var(--news-border);
  border-radius: var(--radius);
  box-shadow: var(--news-shadow);
  overflow: hidden;
  position: relative;
}

.match-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-neon) 0%, var(--c-orange) 100%);
  opacity: 0.75;
}

.match-card__strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-card__day {
  color: var(--c-neon);
  font-weight: 700;
}

.match-card__round {
  color: var(--c-muted);
}

.match-card__matchup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 22px 18px 16px;
}

.match-card__team {
  font-family: var(--f-title);
  font-size: 17px;
  line-height: 1.25;
  color: var(--c-white);
  flex: 1;
  text-align: center;
}

.match-card__vs {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-neon);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.5);
  border-radius: 999px;
  padding: 4px 12px;
}

.match-card__note {
  padding: 0 18px 14px;
  font-size: 13px;
  line-height: 1.55;
}

.match-card__mini-stat {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 0 18px 20px;
  font-size: 12px;
  color: var(--c-blue);
}

/* ===== 周末连看：对比面板 ===== */
.compare-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--news-card-bg-alt);
  border: var(--news-border);
  border-radius: var(--radius);
  box-shadow: var(--news-shadow);
  overflow: hidden;
}

.compare-panel__media {
  border: 0;
  border-bottom: var(--bw) solid var(--c-silver);
  border-radius: 0;
}

.compare-panel__body {
  padding: clamp(20px, 3vw, 30px);
}

.compare-panel__tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.compare-panel__title {
  font-family: var(--f-title);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.3;
  color: var(--c-white);
  margin: 0 0 14px;
  transform: skewX(-3deg);
  transform-origin: left center;
}

.compare-panel__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0 0 20px;
}

.compare-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--c-silver);
  line-height: 1.4;
}

.compare-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-bg);
  background: var(--c-neon);
  border-radius: 6px;
}

/* ===== 复盘报告 ===== */
.review-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap);
}

.review-layout__media {
  border: var(--news-border);
  border-radius: var(--radius);
  box-shadow: var(--news-shadow-soft);
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-item {
  padding: 22px;
  background: var(--news-card-bg);
  border: var(--news-border);
  border-radius: var(--radius);
  box-shadow: var(--news-shadow-soft);
}

.review-item__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-item__date {
  font-size: 12px;
  color: var(--c-muted);
}

.review-item__title {
  font-family: var(--f-title);
  font-size: 17px;
  line-height: 1.35;
  color: var(--c-white);
  margin: 0 0 10px;
}

.review-item__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0 0 16px;
}

.review-item__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.review-stat {
  flex: 1 1 120px;
  border-left: 3px solid var(--c-neon);
  padding-left: 12px;
}

.review-stat dt {
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.review-stat dd {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
  margin: 0;
}

/* ===== 赛事日历 ===== */
.calendar-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap);
}

.calendar-layout__media {
  border: var(--news-border);
  border-radius: var(--radius);
  box-shadow: var(--news-shadow-soft);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 12px;
}

.calendar-day {
  background: var(--news-card-bg);
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calendar-day:hover {
  border-color: rgba(57, 255, 20, 0.45);
  box-shadow: var(--news-shadow-soft);
}

.calendar-day__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-neon);
}

.calendar-day__count {
  font-size: 11px;
  color: var(--c-orange);
  letter-spacing: 0.05em;
}

.calendar-day__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calendar-day__list li {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--c-silver);
  padding-left: 12px;
  position: relative;
}

.calendar-day__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 7px;
  color: var(--c-neon);
}

/* ===== 编辑精选 ===== */
.picks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--news-gap);
}

.pick-card {
  display: flex;
  gap: 16px;
  background: var(--news-card-bg);
  border: var(--news-border);
  border-radius: var(--radius);
  box-shadow: var(--news-shadow-soft);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--news-shadow);
}

.pick-card__num {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
  min-width: 32px;
}

.pick-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.pick-card__title {
  font-family: var(--f-title);
  font-size: 16px;
  line-height: 1.4;
  color: var(--c-white);
  margin: 0;
}

.pick-card__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}

.pick-card__link {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.5);
  padding-bottom: 2px;
  margin-top: 4px;
}

.pick-card__link:hover {
  color: var(--c-white);
  border-bottom-color: var(--c-white);
}

/* ===== 响应式：平板以上 ===== */
@media (min-width: 700px) {
  .match-pair {
    grid-template-columns: 1fr 1fr;
  }

  .compare-panel {
    grid-template-columns: 5fr 6fr;
  }

  .compare-panel__media {
    border-bottom: 0;
    border-right: var(--bw) solid var(--c-silver);
  }

  .review-layout {
    grid-template-columns: 7fr 9fr;
    align-items: start;
  }

  .news-list {
    gap: 14px;
  }

  .news-item {
    padding-left: 20px;
  }
}

/* ===== 响应式：桌面 ===== */
@media (min-width: 1000px) {
  .news-layout {
    grid-template-columns: 7fr 5fr;
    gap: 32px;
    align-items: start;
  }

  .news-layout__side {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    max-height: calc(100vh - var(--header-h) - 48px);
    overflow: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--c-silver) transparent;
  }

  .news-layout__side::-webkit-scrollbar {
    width: 4px;
  }

  .news-layout__side::-webkit-scrollbar-thumb {
    background: var(--c-silver);
    border-radius: 4px;
  }

  .calendar-layout {
    grid-template-columns: 4fr 8fr;
    align-items: start;
  }

  .picks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

/* ===== 动效降级 ===== */
@media (prefers-reduced-motion: reduce) {
  .news-ticker__text {
    animation: none;
    position: static;
    display: block;
    white-space: normal;
    line-height: 1.6;
    padding: 10px 16px;
  }

  .article-card,
  .pick-card,
  .news-item,
  .calendar-day {
    transition: none;
  }
}
