.page-news {
  background: var(--green-deepest);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

/* 面包屑上下文 */
.page-news .news-context {
  padding: 28px 0 10px;
}

.page-news .news-context .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: .02em;
}

.page-news .news-context .breadcrumbs a {
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition);
}

.page-news .news-context .breadcrumbs a:hover {
  color: var(--orange);
}

.page-news .news-context .breadcrumbs .sep {
  color: var(--line-green);
}

.page-news .news-context .breadcrumbs [aria-current="page"] {
  color: var(--gold);
  font-weight: 700;
}

/* 首屏 */
.page-news .news-hero {
  padding: 16px 0 44px;
}

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

.page-news .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-news .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-news .kicker-icon {
  width: 12px;
  height: 12px;
  flex: none;
}

.page-news .hero-copy h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.04;
  margin: 0 0 18px;
  color: var(--white);
  letter-spacing: .01em;
  max-width: 12ch;
}

.page-news .hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 56ch;
  margin: 0 0 24px;
}

.page-news .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.page-news .hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
}

.page-news .hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-news .hero-stats strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}

.page-news .hero-stats span {
  font-size: 13px;
  color: var(--gray);
}

/* 首屏右侧面板 */
.page-news .hero-panel {
  position: relative;
  background: var(--night);
  border-radius: var(--radius);
  border: 1px solid rgba(63, 169, 118, .35);
  padding: 28px 26px;
  min-height: 320px;
  overflow: hidden;
  box-shadow: var(--shadow-panel);
  display: flex;
  align-items: flex-end;
}

.page-news .hero-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
  pointer-events: none;
}

.page-news .hero-panel-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-news .hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.page-news .hero-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .08em;
}

.page-news .hero-panel-badge {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

.page-news .hero-panel-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin: 0 0 12px;
}

.page-news .hero-panel-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .hero-panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}

.page-news .hero-panel-list i {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
  background: rgba(245, 183, 0, .12);
  border-radius: 6px;
  padding: 2px 7px;
  flex: none;
}

.page-news .hero-panel-note {
  border-top: 1px solid rgba(63, 169, 118, .3);
  padding-top: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.page-news .hero-panel-note .note-mark {
  color: var(--orange);
  font-size: 10px;
  line-height: 1.6;
  padding-top: 6px;
}

.page-news .hero-panel-note p {
  margin: 0;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* 更新公告板 */
.page-news .news-updates {
  margin-top: 8px;
}

.page-news .updates-board {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.page-news .update-row {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  background: rgba(20, 72, 58, .5);
  border: 1px solid rgba(63, 169, 118, .28);
  border-radius: var(--radius);
  padding: 18px 18px 18px 10px;
  transition: border-color var(--transition), transform var(--transition);
}

.page-news .update-row:hover {
  border-color: var(--line-green);
  transform: translateX(4px);
}

.page-news .update-no {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
  border-right: 1px solid rgba(63, 169, 118, .3);
  padding-right: 12px;
  display: flex;
  align-items: center;
}

.page-news .update-body {
  min-width: 0;
}

.page-news .update-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.page-news .update-route {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold);
  background: rgba(245, 183, 0, .1);
  padding: 3px 10px;
  border-radius: 999px;
}

.page-news .update-state {
  font-size: 12px;
  color: var(--gray);
  border: 1px solid rgba(170, 180, 192, .25);
  padding: 2px 10px;
  border-radius: 999px;
}

.page-news .update-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 8px;
}

.page-news .update-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
}

/* 复盘专栏 */
.page-news .news-column {
  margin-top: 8px;
}

.page-news .news-filter-zone {
  margin-top: 8px;
}

.page-news .filter-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-news .filter-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.page-news .news-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-green);
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  user-select: none;
}

.page-news .news-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-news #flt-all:checked~.filter-labels label[for="flt-all"],
.page-news #flt-epl:checked~.filter-labels label[for="flt-epl"],
.page-news #flt-laliga:checked~.filter-labels label[for="flt-laliga"],
.page-news #flt-seriea:checked~.filter-labels label[for="flt-seriea"],
.page-news #flt-bundes:checked~.filter-labels label[for="flt-bundes"],
.page-news #flt-ucl:checked~.filter-labels label[for="flt-ucl"],
.page-news #flt-nba:checked~.filter-labels label[for="flt-nba"] {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* 文章卡片默认隐藏，通过筛选显示 */
.page-news .news-card {
  display: none;
}

.page-news #flt-all:checked~.news-timeline .news-card,
.page-news #flt-epl:checked~.news-timeline .news-card[data-league="epl"],
.page-news #flt-laliga:checked~.news-timeline .news-card[data-league="laliga"],
.page-news #flt-seriea:checked~.news-timeline .news-card[data-league="seriea"],
.page-news #flt-bundes:checked~.news-timeline .news-card[data-league="bundes"],
.page-news #flt-ucl:checked~.news-timeline .news-card[data-league="ucl"],
.page-news #flt-nba:checked~.news-timeline .news-card[data-league="nba"] {
  display: grid;
}

.page-news .news-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--line-green), transparent);
  opacity: .45;
}

.page-news .news-card {
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  background: rgba(20, 72, 58, .5);
  border: 1px solid rgba(63, 169, 118, .25);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-left: 18px;
}

.page-news .news-card::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--green-deepest);
  box-shadow: 0 0 0 2px var(--gold);
}

.page-news .news-card:hover {
  border-color: var(--line-green);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
}

.page-news .news-card-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 140px;
  background: var(--green-dark);
}

.page-news .news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-news .media-chip {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: var(--night);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 183, 0, .4);
}

.page-news .media-empty {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 107, 45, .25), transparent 55%),
    linear-gradient(135deg, rgba(20, 72, 58, .8), rgba(10, 31, 68, .65));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  min-height: 140px;
}

.page-news .media-empty::before {
  content: attr(data-tactical);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: rgba(247, 248, 250, .6);
  letter-spacing: .06em;
}

.page-news .news-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.page-news .news-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-tag {
  background: rgba(255, 107, 45, .15);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.page-news .news-round {
  color: var(--gray);
  font-size: 13px;
}

.page-news .news-card-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.45;
  color: var(--white);
  margin: 0;
}

.page-news .news-card-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-news .news-read {
  font-size: 13px;
  color: var(--line-green);
  letter-spacing: .02em;
  font-weight: 700;
}

/* 视频集锦 */
.page-news .news-media {
  margin-top: 8px;
}

.page-news .video-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.page-news .video-cell {
  position: relative;
}

.page-news .video-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-news .video-card {
  display: block;
  background: rgba(20, 72, 58, .55);
  border: 1px solid rgba(63, 169, 118, .28);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.page-news .video-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.page-news .video-card--horizontal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.page-news .video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--night);
}

.page-news .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.page-news .video-card:hover .video-thumb img {
  transform: scale(1.03);
}

.page-news .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 107, 45, .9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(255, 107, 45, .2);
  transition: background var(--transition), box-shadow var(--transition);
}

.page-news .video-play-icon svg {
  width: 22px;
  height: 22px;
}

.page-news .video-card:hover .video-play-icon {
  background: var(--orange);
  box-shadow: 0 0 0 14px rgba(255, 107, 45, .15);
}

.page-news .video-info {
  padding: 16px;
}

.page-news .video-league {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(245, 183, 0, .1);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: .06em;
}

.page-news .video-info h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 10px;
}

.page-news .video-duration {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .06em;
}

/* 视频灯箱 */
.page-news .video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page-news .video-toggle:checked~.video-lightbox {
  display: flex;
}

.page-news .lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 9, .9);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.page-news .lightbox-panel {
  position: relative;
  width: min(860px, 92vw);
  background: var(--green-dark);
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-panel);
}

.page-news .lightbox-panel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.page-news .lightbox-close {
  position: absolute;
  top: -16px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(255, 107, 45, .3);
}

.page-news .lightbox-panel p {
  margin: 14px 4px 4px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--white);
}

/* 专题系列 */
.page-news .news-special {
  margin-top: 8px;
}

.page-news .special-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.page-news .special-card--highlight {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(20, 72, 58, .55);
  border: 1px solid rgba(63, 169, 118, .3);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .special-thumb {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background: var(--night);
}

.page-news .special-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-news .special-ep {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--shadow-ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
}

.page-news .special-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.page-news .special-route {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-news .special-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
}

.page-news .special-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
}

.page-news .special-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-news .special-item {
  display: flex;
  gap: 16px;
  background: rgba(10, 31, 68, .5);
  border: 1px solid rgba(63, 169, 118, .22);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color var(--transition), background var(--transition);
}

.page-news .special-item:hover {
  border-color: var(--gold);
  background: rgba(20, 72, 58, .45);
}

.page-news .special-no {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1.4;
}

.page-news .special-item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  min-width: 0;
}

.page-news .special-item-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin: 0;
}

.page-news .special-item-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.page-news .special-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--line-green);
}

/* 底部交叉区域 */
.page-news .news-cross {
  margin: 12px 0 0;
  padding-bottom: 48px;
}

.page-news .cross-inner {
  background: linear-gradient(135deg, var(--night), rgba(11, 61, 46, .9));
  border: 1px solid rgba(245, 183, 0, .25);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-news .cross-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-news .cross-kicker svg {
  width: 12px;
  height: 12px;
}

.page-news .cross-copy h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--white);
  margin: 10px 0 8px;
}

.page-news .cross-copy p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

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

.page-news .cross-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 4px;
  transition: color var(--transition);
}

.page-news .cross-link:hover {
  color: var(--orange);
}

/* tablet */
@media (min-width: 768px) {
  .page-news .news-hero {
    padding-top: 24px;
  }

  .page-news .updates-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .page-news .update-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 16px 16px 0;
  }

  .page-news .update-no {
    border-right: none;
    border-bottom: 1px solid rgba(63, 169, 118, .3);
    padding: 0 0 10px;
  }

  .page-news .news-card {
    grid-template-columns: 240px 1fr;
    align-items: center;
    gap: 20px;
  }

  .page-news .news-card-body p {
    -webkit-line-clamp: 2;
  }

  .page-news .video-card--horizontal {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }

  .page-news .video-card--horizontal .video-thumb {
    aspect-ratio: auto;
    height: 100%;
    min-height: 200px;
  }

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

  .page-news .video-cell--wide {
    grid-column: 1 / -1;
  }

  .page-news .special-card--highlight {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .page-news .special-thumb img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 240px;
  }

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

  .page-news .cross-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-news .cross-actions {
    flex: none;
    max-width: 380px;
  }
}

/* desktop */
@media (min-width: 1024px) {
  .page-news .news-hero-grid {
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 48px;
  }

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

  .page-news .hero-panel {
    min-height: 400px;
    padding: 34px 30px;
  }

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

  .page-news .video-cell--wide {
    grid-column: 1 / -1;
  }
}
