.page-news {
  --news-track-w: 72px;
  --news-block-gap: 64px;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

.page-news .container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ===== Hero 区 ===== */
.page-news .news-hero {
  background: var(--primary);
  color: var(--white);
  padding: 104px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: rgba(255, 127, 50, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 8px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 40%, var(--data-blue) 100%);
  border-radius: var(--radius-pill) 0 0 0;
  pointer-events: none;
}

.page-news .breadcrumb {
  margin-bottom: 28px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.page-news .breadcrumb a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.page-news .breadcrumb a:hover {
  border-color: var(--accent);
}

.page-news .breadcrumb .sep {
  opacity: 0.5;
}

.page-news .news-hero-grid {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.page-news .news-hero-copy .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.page-news .news-hero-copy .page-title {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.page-news .news-hero-copy .page-intro {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  max-width: 560px;
}

.page-news .news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news .btn:hover {
  transform: translateY(-2px);
}

.page-news .btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 127, 50, 0.35);
}

.page-news .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-news .news-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-news .news-stat-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.page-news .news-stat-card:hover {
  transform: translateY(-4px);
}

.page-news .news-stat-label {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
}

.page-news .news-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

/* ===== 时间轴主体区 ===== */
.page-news .news-track-section {
  padding: 56px 0 72px;
}

.page-news .news-track-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.page-news .news-track {
  display: none;
}

.page-news .news-track-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.page-news .news-block {
  padding: 0 0 var(--news-block-gap);
  scroll-margin-top: 96px;
}

.page-news .news-block-head {
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

.page-news .news-block-head .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.page-news .news-block-head .section-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 6px 0 4px;
  color: var(--ink);
}

.page-news .news-block-head .section-subtitle {
  font-size: 15px;
  color: #5a6b7a;
  margin: 0;
  line-height: 1.6;
}

/* ===== 图片容器 ===== */
.page-news .img-frame {
  overflow: hidden;
}

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

/* ===== 标签 ===== */
.page-news .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  line-height: 1.5;
}

.page-news .tag-accent {
  background: rgba(255, 127, 50, 0.12);
  color: #d95f1a;
}

.page-news .tag-data {
  background: rgba(0, 191, 255, 0.1);
  color: #0284a8;
}

.page-news .tag-success {
  background: rgba(42, 157, 143, 0.12);
  color: var(--success);
}

/* ===== 最新动态 ===== */
.page-news .news-feature {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.page-news .news-feature:hover {
  box-shadow: var(--shadow-float);
}

.page-news .news-feature-body {
  padding: 20px;
}

.page-news .news-feature-body h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 10px 0 10px;
  line-height: 1.4;
}

.page-news .news-feature-body p {
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 16px;
}

.page-news .news-feature-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--sky-blue);
}

.page-news .news-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.page-news .news-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(179, 199, 214, 0.4);
}

.page-news .news-item:last-child {
  border-bottom: none;
}

.page-news .news-item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 127, 50, 0.12);
}

.page-news .news-item-body {
  flex: 1;
  min-width: 0;
}

.page-news .news-item-body h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px;
  line-height: 1.4;
  color: var(--ink);
}

.page-news .news-item-body p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.65;
}

.page-news .news-item-tag {
  flex-shrink: 0;
}

/* ===== 转会动态 ===== */
.page-news .news-transfer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.page-news .news-transfer-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.page-news .transfer-card {
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(179, 199, 214, 0.35);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.page-news .transfer-league {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--primary);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.page-news .transfer-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 12px 0 6px;
}

.page-news .transfer-price {
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.page-news .transfer-note {
  font-size: 14px;
  color: #64748b;
  margin: 12px 0 0;
  line-height: 1.6;
}

.page-news .transfer-chart {
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--mint);
  border: 1px solid rgba(179, 199, 214, 0.4);
}

.page-news .transfer-chart .img-frame {
  border-radius: var(--radius-md);
}

.page-news .transfer-chart h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 16px 0 6px;
}

.page-news .transfer-chart > p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 14px;
}

.page-news .transfer-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--ink);
}

.page-news .transfer-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-news .legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

.page-news .legend-dot-accent {
  background: var(--accent);
}

.page-news .legend-dot-yellow {
  background: var(--accent-soft);
}

/* ===== 专题系列 ===== */
.page-news .news-feature-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.page-news .feature-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.page-news .feature-main-body {
  padding: 20px;
}

.page-news .feature-main-body h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 10px 0 10px;
  line-height: 1.4;
}

.page-news .feature-main-body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 16px;
}

.page-news .feature-sublist {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.page-news .feature-mini {
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(179, 199, 214, 0.35);
  box-shadow: var(--shadow-soft);
}

.page-news .feature-mini h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 10px 0 6px;
  line-height: 1.4;
}

.page-news .feature-mini p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.65;
}

/* ===== 内容分类 ===== */
.page-news .news-cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-news .news-cat-filter .btn {
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--sky-blue);
  color: var(--primary);
  background: var(--white);
  transition: background 0.2s, color 0.2s;
}

.page-news .news-cat-filter .btn:hover {
  background: var(--primary);
  color: var(--white);
}

.page-news .news-cat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.page-news .cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(179, 199, 214, 0.3);
  scroll-margin-top: 96px;
}

.page-news .cat-card:target {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.page-news .cat-card-body {
  padding: 20px;
}

.page-news .cat-card-body h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 10px 0 6px;
}

.page-news .cat-card-body > p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 12px;
}

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

.page-news .cat-points li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.page-news .cat-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ===== 响应式增强 ===== */
@media (min-width: 768px) {
  .page-news .news-hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-news .news-transfer-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .news-transfer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .page-news .news-feature-layout {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }

  .page-news .news-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-news .cat-card-featured {
    grid-column: span 2;
  }

  .page-news .feature-main-body {
    padding: 28px;
  }

  .page-news .news-feature-body {
    padding: 28px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-track-layout {
    grid-template-columns: var(--news-track-w) 1fr;
    gap: 28px;
  }

  .page-news .news-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 110px;
    padding-top: 12px;
    position: relative;
  }

  .page-news .news-track-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(to bottom, var(--accent) 0%, var(--primary) 100%);
    border-radius: var(--radius-pill);
  }

  .page-news .news-track-node {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 73, 101, 0.15);
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

  .page-news .news-track-node:hover,
  .page-news .news-track-node.is-active {
    border-color: var(--accent);
    transform: scale(1.2);
  }

  .page-news .news-track-node::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    z-index: 2;
  }

  .page-news .news-track-node:hover::after {
    opacity: 1;
  }

  .page-news .news-track-node:first-of-type::after {
    content: "最新动态";
  }

  .page-news .news-track-node:nth-of-type(2)::after {
    content: "转会动态";
  }

  .page-news .news-track-node:nth-of-type(3)::after {
    content: "专题系列";
  }

  .page-news .news-track-node:nth-of-type(4)::after {
    content: "内容分类";
  }

  .page-news .news-block {
    padding-left: 20px;
  }

  .page-news .news-feature {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }

  .page-news .news-feature .img-frame {
    height: 100%;
  }

  .page-news .news-feature .img-frame img {
    height: 100%;
    object-fit: cover;
  }

  .page-news .news-feature-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
  }

  .page-news .news-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .cat-card-featured {
    grid-column: span 2;
  }

  .page-news .cat-card-featured .img-frame-1x1 {
    max-height: 340px;
  }
}
