.page-news {
  --news-gap: 24px;
  --news-cut: 14px;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ― 面包屑 ― */
.page-news .breadcrumb {
  padding: 22px 0 0;
  font-size: 13px;
  letter-spacing: .05em;
}
.page-news .breadcrumb a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: border-color .25s var(--ease);
}
.page-news .breadcrumb a:hover,
.page-news .breadcrumb a:focus-visible {
  border-color: var(--orange);
}
.page-news .breadcrumb [aria-current="page"] {
  color: var(--gold);
  font-weight: 600;
}
.page-news .breadcrumb .sep {
  margin: 0 8px;
  color: var(--orange);
}

/* ― 页头条 ― */
.page-news .news-masthead {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-deep-2) 52%, var(--blue-deep-3) 100%);
  color: var(--text-light);
  padding: 0 0 52px;
  overflow: hidden;
}
.page-news .news-masthead::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(212, 175, 55, .12) 0%, transparent 42%),
    linear-gradient(108deg, rgba(255, 107, 53, .2) 0%, transparent 38%),
    linear-gradient(45deg, transparent 82%, rgba(58, 141, 255, .16) 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), 0 100%);
  pointer-events: none;
}
.page-news .news-masthead__inner {
  position: relative;
  z-index: 1;
}
.page-news .news-masthead__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 28px;
}
.page-news .news-masthead__index {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 30px;
  line-height: 1;
  color: var(--orange);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  width: 28px;
}
.page-news .news-masthead__eyebrow {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.page-news .news-masthead h1 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.16;
  letter-spacing: .01em;
  margin: 0 0 16px;
}
.page-news .news-masthead__lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
  max-width: 620px;
  margin: 0 0 24px;
}
.page-news .news-masthead__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-news .news-masthead__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, .05);
  border-left: 3px solid var(--orange);
}
.page-news .news-stat__num {
  display: block;
  font-family: var(--font-data);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-light);
}
.page-news .news-stat__label {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .6);
  margin-top: 8px;
}

/* ― 栏目导航 ― */
.page-news .news-topics {
  padding-top: 48px;
  padding-bottom: 8px;
}
.page-news .news-topic-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}
.page-news .news-topic-map__item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  background: var(--bg-gray);
  border-left: 3px solid var(--orange);
  text-decoration: none;
  color: var(--text-dark);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.page-news .news-topic-map__item:hover,
.page-news .news-topic-map__item:focus-visible {
  background: #dfe5ec;
  transform: translateX(4px);
}
.page-news .news-topic-map__no {
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--orange);
}
.page-news .news-topic-map__body strong {
  display: block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 17px;
  line-height: 1.3;
}
.page-news .news-topic-map__body span {
  display: block;
  font-size: 13px;
  color: rgba(26, 26, 46, .6);
  margin-top: 2px;
}
.page-news .news-topic-map__arrow {
  font-size: 18px;
  color: var(--orange);
}

/* ― 文章筛选器 ― */
.page-news .news-feed {
  padding-top: 48px;
}
.page-news .news-feed__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 36px;
}
.page-news .news-filter__btn {
  display: inline-block;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent;
  border: 1px solid #d3dae3;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.page-news .news-filter__btn:hover,
.page-news .news-filter__btn:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

/* 当前选中筛选项 */
.page-news #news-f-all:checked ~ .news-filter .news-filter__btn[for="news-f-all"],
.page-news #news-f-premier:checked ~ .news-filter .news-filter__btn[for="news-f-premier"],
.page-news #news-f-laliga:checked ~ .news-filter .news-filter__btn[for="news-f-laliga"],
.page-news #news-f-champions:checked ~ .news-filter .news-filter__btn[for="news-f-champions"],
.page-news #news-f-update:checked ~ .news-filter .news-filter__btn[for="news-f-update"],
.page-news #news-f-guide:checked ~ .news-filter .news-filter__btn[for="news-f-guide"],
.page-news #news-f-data:checked ~ .news-filter .news-filter__btn[for="news-f-data"] {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* 筛选隐藏规则 */
.page-news #news-f-premier:checked ~ .news-timeline .news-post:not([data-category="premier"]),
.page-news #news-f-laliga:checked ~ .news-timeline .news-post:not([data-category="laliga"]),
.page-news #news-f-champions:checked ~ .news-timeline .news-post:not([data-category="champions"]),
.page-news #news-f-update:checked ~ .news-timeline .news-post:not([data-category="update"]),
.page-news #news-f-guide:checked ~ .news-timeline .news-post:not([data-category="guide"]),
.page-news #news-f-data:checked ~ .news-timeline .news-post:not([data-category="data"]) {
  display: none;
}

/* ― 时间轴 ― */
.page-news .news-timeline {
  position: relative;
  max-width: 1160px;
  margin: 0 auto 32px;
  padding: 4px 0 8px;
}
.page-news .news-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--gold) 42%, var(--blue-bright) 100%);
  opacity: .25;
}
.page-news .news-post {
  position: relative;
  padding-left: 44px;
  margin-bottom: 28px;
}
.page-news .news-post__dot {
  position: absolute;
  left: 8px;
  top: 34px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .18);
}
.page-news .news-post__card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
}
.page-news .news-post--feature .news-post__card {
  padding: 0;
  overflow: hidden;
}
.page-news .news-post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.page-news .news-post--feature .news-post__meta {
  padding: 22px 22px 0;
}
.page-news .news-post__time {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-dark);
  opacity: .62;
  white-space: nowrap;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.page-news .news-post h3 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  line-height: 1.32;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.page-news .news-post p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 46, .78);
  margin: 0 0 14px;
}
.page-news .news-post__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}
.page-news .news-post__source {
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(26, 26, 46, .5);
}

/* 特色文章内部网格 */
.page-news .news-post__layout {
  display: grid;
  grid-template-columns: 1fr;
}
.page-news .news-post__text {
  padding: 0 22px 22px;
}
.page-news .news-img {
  background: var(--blue-deep);
  overflow: hidden;
  line-height: 0;
}
.page-news .news-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* 悬停显示阅读时间 */
@media (hover: hover) {
  .page-news .news-post:hover .news-post__time,
  .page-news .news-post:focus-within .news-post__time {
    opacity: 1;
    transform: translateX(4px);
  }
}

/* ― 热门专题深色区 ― */
.page-news .news-features {
  position: relative;
  background:
    radial-gradient(circle at 90% 12%, rgba(212, 175, 55, .1) 0%, transparent 36%),
    linear-gradient(130deg, var(--blue-deep) 0%, var(--blue-deep-2) 62%, #0B1C33 100%);
  color: var(--text-light);
  padding: 48px 24px 56px;
  margin: 0;
  overflow: hidden;
}
.page-news .news-features::before {
  content: '';
  position: absolute;
  right: -90px;
  top: -90px;
  width: 300px;
  height: 300px;
  border: 34px solid rgba(255, 107, 53, .06);
  border-radius: 50%;
  pointer-events: none;
}
.page-news .news-features::after {
  content: '';
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 230px;
  height: 230px;
  border: 26px solid rgba(58, 141, 255, .09);
  border-radius: 50%;
  pointer-events: none;
}
.page-news .news-features .container {
  position: relative;
  z-index: 1;
}
.page-news .news-features .section-title {
  color: var(--text-light);
}
.page-news .news-features .section-note {
  color: rgba(255, 255, 255, .46);
}
.page-news .news-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.page-news .news-feature {
  position: relative;
  padding: 26px 22px 26px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .055) 0%, rgba(255, 255, 255, .015) 100%);
  border-left: 3px solid var(--gold);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.page-news .news-feature::after {
  content: '';
  position: absolute;
  top: 14px;
  right: 16px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.page-news .news-feature__no {
  display: block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 30px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 14px;
}
.page-news .news-feature h3 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  color: var(--text-light);
  margin: 0 0 12px;
}
.page-news .news-feature p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .74);
  margin: 0 0 20px;
}

/* ― 更新日志存档 ― */
.page-news .news-archive {
  padding: 8px 0 64px;
}
.page-news .news-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 28px;
}
.page-news .news-archive__season {
  display: inline-block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 19px;
  color: var(--blue-deep);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}
.page-news .news-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .news-archive__item {
  position: relative;
  padding: 12px 0 12px 22px;
  margin: 0;
  border-left: 1px solid #d3dae3;
}
.page-news .news-archive__item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.page-news .news-archive__item + .news-archive__item {
  border-top: 1px dashed rgba(212, 175, 55, .24);
}
.page-news .news-archive__tag {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--orange);
  background: rgba(255, 107, 53, .09);
  border: 1px solid rgba(255, 107, 53, .22);
  padding: 3px 9px;
  margin-right: 8px;
  vertical-align: .2em;
}
.page-news .news-archive__text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(26, 26, 46, .78);
}
.page-news .news-archive__media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
.page-news .news-archive__note {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(26, 26, 46, .55);
}
.page-news .news-archive__shot .news-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ― 桌面端增强 ― */
@media (min-width: 720px) {
  .page-news .news-topic-map {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .page-news .news-archive__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .page-news .news-archive__media {
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 18px;
  }
  .page-news .news-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .page-news .news-features {
    padding: 56px 24px 64px;
  }
}

@media (min-width: 760px) {
  .page-news .news-post__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .page-news .news-post--feature .news-post__meta {
    padding: 26px 28px 0;
  }
  .page-news .news-post__text {
    padding: 6px 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-news .news-img {
    min-height: 260px;
  }
  .page-news .news-img img {
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 900px) {
  .page-news .news-masthead__grid {
    grid-template-columns: 46px minmax(0, 1fr) 360px;
    align-items: end;
    gap: 40px;
    padding-top: 40px;
  }
  .page-news .news-masthead__index {
    font-size: 34px;
  }
  .page-news .news-masthead__stats {
    padding: 22px 18px;
  }
  .page-news .news-post {
    padding-left: 56px;
    margin-bottom: 32px;
  }
  .page-news .news-timeline::before {
    left: 17px;
  }
  .page-news .news-post__dot {
    left: 10px;
  }
}
