.page-news {
  --news-accent: #FF6A00;
  --news-electric: #00D4FF;
  --news-deep: #060F29;
  --news-blue: #0D2A54;
  --news-border: #1A3A6E;
  --news-text-sub: #E6EFFC;
  --news-muted: #3D4B63;
  background: var(--color-bg);
  color: var(--color-white);
  overflow-x: hidden;
}

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

/* ===== 面包屑 ===== */
.page-news .breadcrumbs {
  margin-bottom: 28px;
}

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

.page-news .breadcrumbs__link {
  color: var(--news-text-sub);
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease;
}

.page-news .breadcrumbs__link:hover {
  color: var(--news-electric);
}

.page-news .breadcrumbs__link--current {
  color: var(--news-electric);
  pointer-events: none;
}

.page-news .breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  color: var(--news-muted);
  margin-right: 8px;
}

/* ===== 英雄区 ===== */
.page-news .news-hero {
  position: relative;
  padding: 36px 0 56px;
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 212, 255, 0.14), transparent 42%),
    linear-gradient(135deg, var(--news-deep) 0%, var(--color-bg) 70%);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(0, 212, 255, 0.05) 14px 16px);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-news .news-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
}

.page-news .news-hero__kind {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--news-electric);
  border-left: 3px solid var(--news-accent);
  padding-left: 10px;
}

.page-news .news-hero h1 {
  font-family: var(--font-headline);
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 10px 0 16px;
  color: var(--color-white);
}

.page-news .news-hero__content p {
  color: var(--news-text-sub);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

.page-news .news-hero__panel {
  position: relative;
  background: var(--news-deep);
  border: 1px solid rgba(0, 212, 255, 0.18);
  padding: 26px 22px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.page-news .news-hero__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--news-accent);
}

.page-news .news-hero__panel-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--news-text-sub);
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
  padding-left: 6px;
}

.page-news .news-hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-news .news-hero__stats li {
  border-left: 2px solid rgba(0, 212, 255, 0.5);
  padding-left: 12px;
}

.page-news .news-hero__stats strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 26px;
  line-height: 1.1;
  color: var(--news-accent);
}

.page-news .news-hero__stats strong span {
  font-size: 15px;
  margin-left: 2px;
  letter-spacing: 0;
}

.page-news .news-hero__stats li > span:last-child {
  display: block;
  font-size: 13px;
  color: var(--news-text-sub);
  margin-top: 4px;
}

/* ===== 章节标题 ===== */
.page-news .section-head {
  margin-bottom: 32px;
}

.page-news .section-head--split {
  display: grid;
  gap: 12px;
  align-items: end;
}

.page-news .section-head__title {
  font-family: var(--font-headline);
  font-size: 30px;
  line-height: 1.1;
  margin: 8px 0 0;
  letter-spacing: 0.01em;
}

.page-news .section-head__desc {
  color: var(--news-text-sub);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
  margin: 0;
}

/* ===== 筛选器 ===== */
.page-news .news-scope {
  margin-top: 8px;
}

.page-news .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.page-news .filter-btn {
  background: transparent;
  border: 1px solid var(--news-border);
  color: var(--news-text-sub);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.page-news .filter-btn:hover {
  border-color: var(--news-electric);
  color: var(--color-white);
}

.page-news .filter-btn.is-active {
  background: var(--news-accent);
  border-color: var(--news-accent);
  color: var(--color-bg);
  font-weight: 700;
}

/* ===== 头条卡片 ===== */
.page-news .news-feature {
  display: grid;
  gap: 0;
  background: linear-gradient(140deg, var(--news-blue) 0%, #081936 100%);
  border: 1px solid var(--news-border);
  overflow: hidden;
  margin-bottom: 28px;
}

.page-news .news-feature__media {
  min-height: 240px;
  position: relative;
}

.page-news .news-feature__media img {
  width: 100%;
  height: auto;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.page-news .news-feature__body {
  padding: 28px 24px 32px;
}

.page-news .news-feature h3 {
  font-family: var(--font-headline);
  font-size: 26px;
  line-height: 1.15;
  margin: 14px 0 12px;
  letter-spacing: 0.01em;
}

.page-news .news-feature p {
  color: var(--news-text-sub);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 24px;
}

/* ===== 文章标签 ===== */
.page-news .news-tag {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  border-left: 3px solid var(--news-electric);
  color: var(--news-electric);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 6px 10px 6px 8px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.page-news .news-tag--accent {
  background: var(--news-accent);
  border-left-color: var(--news-accent);
  color: var(--color-bg);
}

/* ===== 文章网格 ===== */
.page-news .news-grid {
  display: grid;
  gap: 20px;
}

.page-news .news-card {
  position: relative;
  background: linear-gradient(160deg, var(--news-blue) 0%, var(--color-bg) 100%);
  border: 1px solid var(--news-border);
  padding: 28px 24px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  transition: transform 200ms ease, border-color 200ms ease;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.5);
}

.page-news .news-card h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  line-height: 1.2;
  margin: 12px 0 10px;
  letter-spacing: 0.01em;
}

.page-news .news-card p {
  color: var(--news-text-sub);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ===== 赛季观察 ===== */
.page-news .news-observe {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(0, 212, 255, 0.05) 50%, var(--color-bg) 100%);
}

.page-news .news-updates,
.page-news .news-fans,
.page-news .news-reports {
  padding: 64px 0;
}

.page-news .observe-grid {
  display: grid;
  gap: 28px;
}

.page-news .observe__chart {
  position: relative;
  background: var(--news-deep);
  border: 1px solid var(--news-border);
  padding: 12px;
}

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

.page-news .observe__chart-note {
  margin-top: 12px;
  padding: 16px 12px;
  border-left: 3px solid var(--news-accent);
  background: rgba(255, 106, 0, 0.04);
}

.page-news .observe__chart-note span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--news-electric);
  margin-bottom: 4px;
}

.page-news .observe__chart-note strong {
  font-size: 20px;
  line-height: 1.3;
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-headline);
}

.page-news .observe__chart-note p {
  font-size: 14px;
  color: var(--news-text-sub);
  margin: 0;
  line-height: 1.6;
}

.page-news .observe__list {
  display: grid;
  gap: 20px;
}

.page-news .observe-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border: 1px solid var(--news-border);
  padding: 24px 20px;
  background: rgba(6, 15, 41, 0.5);
  transition: border-color 200ms ease;
}

.page-news .observe-item:hover {
  border-color: rgba(0, 212, 255, 0.4);
}

.page-news .observe-item__num {
  font-family: var(--font-headline);
  font-size: 34px;
  color: var(--news-accent);
  line-height: 1;
  padding-top: 4px;
  opacity: 0.9;
}

.page-news .observe-item h3 {
  font-family: var(--font-headline);
  font-size: 19px;
  line-height: 1.2;
  margin: 8px 0 8px;
  letter-spacing: 0.01em;
}

.page-news .observe-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--news-text-sub);
  margin: 0;
}

/* ===== 球迷专题 ===== */
.page-news .fans-grid {
  display: grid;
  gap: 28px;
}

.page-news .fans__media {
  position: relative;
}

.page-news .fans__media::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 72px;
  height: 72px;
  border-right: 3px solid var(--news-accent);
  border-bottom: 3px solid var(--news-accent);
  z-index: 1;
  pointer-events: none;
}

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

.page-news .fans-feature {
  margin-bottom: 28px;
}

.page-news .fans-feature h3 {
  font-family: var(--font-headline);
  font-size: 26px;
  line-height: 1.15;
  margin: 16px 0 12px;
  letter-spacing: 0.01em;
}

.page-news .fans-feature p {
  color: var(--news-text-sub);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 24px;
}

.page-news .fans-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--news-border);
}

.page-news .fans-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--news-border);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.page-news .fans-list span {
  color: var(--news-electric);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.page-news .fans-list a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  transition: color 200ms ease;
}

.page-news .fans-list a:hover {
  color: var(--news-accent);
}

/* ===== 数据报告 ===== */
.page-news .news-reports {
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(255, 106, 0, 0.05) 100%);
}

.page-news .reports-grid {
  display: grid;
  gap: 28px;
}

.page-news .reports__cover {
  position: relative;
  border: 1px solid var(--news-border);
  padding: 10px;
  background: var(--news-deep);
  transform: rotate(-2deg);
}

.page-news .reports__cover::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 18px;
  width: 120px;
  height: 22px;
  background: var(--news-accent);
  transform: rotate(-3deg);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}

.page-news .reports__cover img {
  width: 100%;
  height: auto;
  display: block;
}

.page-news .reports-feature h3 {
  font-family: var(--font-headline);
  font-size: 26px;
  line-height: 1.15;
  margin: 16px 0 12px;
  letter-spacing: 0.01em;
}

.page-news .reports-feature p {
  color: var(--news-text-sub);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 24px;
}

.page-news .reports__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.page-news .reports-stat {
  border-top: 3px solid var(--news-accent);
  padding: 12px 8px 10px;
  background: rgba(6, 15, 41, 0.5);
}

.page-news .reports-stat strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 23px;
  line-height: 1.1;
  color: var(--color-white);
}

.page-news .reports-stat span {
  display: block;
  font-size: 12px;
  color: var(--news-text-sub);
  margin-top: 4px;
}

.page-news .reports-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-news .reports-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--news-border);
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-weight: 500;
  line-height: 1.5;
}

.page-news .reports-list span {
  color: var(--news-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ===== CTA ===== */
.page-news .news-cta {
  padding: 64px 0;
  background: linear-gradient(140deg, var(--color-bg-deep) 0%, var(--color-bg) 60%, rgba(255, 106, 0, 0.12) 100%);
  border-top: 1px solid var(--news-border);
}

.page-news .news-cta__inner {
  display: grid;
  gap: 24px;
}

.page-news .news-cta__inner h2 {
  font-family: var(--font-headline);
  font-size: 30px;
  line-height: 1.1;
  margin: 8px 0 12px;
  letter-spacing: 0.01em;
}

.page-news .news-cta__inner p {
  color: var(--news-text-sub);
  margin: 0;
  line-height: 1.6;
}

.page-news .news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ===== 平板端 ===== */
@media (min-width: 768px) {
  .page-news .news-hero__grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
  }

  .page-news .news-hero h1 {
    font-size: 40px;
  }

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

  .page-news .section-head--split {
    grid-template-columns: 1fr auto;
  }

  .page-news .fans-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-news .reports-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

  .page-news .news-cta__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

/* ===== 桌面端 ===== */
@media (min-width: 1024px) {
  .page-news .news-hero {
    padding: 48px 0 72px;
  }

  .page-news .news-hero h1 {
    font-size: 50px;
  }

  .page-news .news-feature {
    grid-template-columns: 1.1fr 1fr;
  }

  .page-news .news-feature__media {
    min-height: auto;
  }

  .page-news .news-feature__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: auto;
    object-fit: cover;
  }

  .page-news .observe-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .page-news .fans__media img {
    max-height: 560px;
  }

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

  .page-news .news-cta__inner h2 {
    font-size: 36px;
  }
}
