/* ===== 赛事动态页专属 ===== */
.page-news {
  --news-green-soft: rgba(201,255,61,.12);
  --news-orange-soft: rgba(255,107,53,.12);
  --news-blue-soft: rgba(30,58,95,.5);
  --news-panel: rgba(19,38,66,.6);
}

.page-news .news-hero {
  padding: 28px 0 16px;
  border-bottom: 1px solid var(--hairline);
}

.page-news .news-hero h1 {
  font-size: clamp(42px, 8vw, 76px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  margin: 14px 0 20px;
  color: var(--text-light);
}

.page-news .news-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.page-news .news-hero-lead {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin: 0 0 28px;
}

.page-news .news-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  position: relative;
  padding: 18px 0 8px;
  margin-top: 8px;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(255,107,53,.45) 60%, rgba(201,255,61,.55) 100%);
}

.page-news .timeline-node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--text-secondary);
}

.page-news .timeline-node::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.page-news .timeline-node.is-live {
  color: var(--green);
}

.page-news .timeline-node.is-live::before {
  background: var(--green);
}

/* 筛选区 */
.page-news .news-layout {
  position: relative;
  margin-top: 28px;
}

.page-news .filter-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.page-news .filter-col {
  margin-bottom: 24px;
}

.page-news .filter-panel {
  background: var(--news-panel);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-news .filter-title {
  width: 100%;
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 2px;
  color: var(--text-light);
}

.page-news .filter-hint {
  width: 100%;
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0 0 6px;
}

.page-news .filter-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.page-news .filter-label:hover {
  border-color: var(--orange);
  color: var(--text-light);
}

.page-news .filter-count {
  font-size: 10px;
  background: rgba(155,179,209,.14);
  border-radius: 99px;
  padding: 1px 6px;
  font-weight: 800;
}

.page-news #filter-all:checked ~ .filter-col label[for="filter-all"],
.page-news #filter-schedule:checked ~ .filter-col label[for="filter-schedule"],
.page-news #filter-report:checked ~ .filter-col label[for="filter-report"],
.page-news #filter-member:checked ~ .filter-col label[for="filter-member"],
.page-news #filter-apple:checked ~ .filter-col label[for="filter-apple"],
.page-news #filter-update:checked ~ .filter-col label[for="filter-update"] {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--space-deep);
}

/* 筛选联动 */
.page-news #filter-schedule:checked ~ .news-main .news-item:not([data-cat="schedule"]),
.page-news #filter-report:checked ~ .news-main .news-item:not([data-cat="report"]),
.page-news #filter-member:checked ~ .news-main .news-item:not([data-cat="member"]),
.page-news #filter-apple:checked ~ .news-main .news-item:not([data-cat="apple"]),
.page-news #filter-update:checked ~ .news-main .news-item:not([data-cat="update"]) {
  display: none;
}

/* 新闻流 */
.page-news .news-main {
  min-width: 0;
}

.page-news .news-list {
  border-top: 2px solid var(--orange);
}

.page-news .news-item {
  display: block;
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: padding-left .2s ease, background .2s ease;
}

.page-news .news-item:hover,
.page-news .news-item:focus-within {
  background: linear-gradient(90deg, rgba(30,58,95,.26), transparent 82%);
  padding-left: 14px;
}

.page-news .news-feature {
  border-bottom: 2px solid var(--orange);
}

.page-news .feature-media {
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.page-news .news-feature .news-title {
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.3;
}

.page-news .news-item-media {
  display: flex;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

.page-news .news-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.page-news .news-tag-schedule {
  background: var(--news-green-soft);
  border-color: rgba(201,255,61,.38);
  color: var(--green);
}

.page-news .news-tag-report {
  background: var(--news-orange-soft);
  border-color: rgba(255,107,53,.38);
  color: var(--orange);
}

.page-news .news-tag-member {
  background: var(--news-blue-soft);
  border-color: rgba(158,195,255,.32);
  color: #B9D4FA;
}

.page-news .news-tag-apple {
  background: rgba(232,239,247,.08);
  border-color: rgba(232,239,247,.4);
  color: var(--text-light);
}

.page-news .news-tag-update {
  background: rgba(155,179,209,.1);
  border-color: var(--hairline);
  color: var(--text-secondary);
}

.page-news .news-time {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-secondary);
}

.page-news .news-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  margin: 0 0 10px;
  color: var(--text-light);
}

.page-news .read-indicator {
  display: inline-block;
  margin-left: 6px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease;
}

.page-news .news-item:hover .read-indicator,
.page-news .news-item:focus-within .read-indicator {
  opacity: 1;
  transform: translateX(0);
}

.page-news .news-summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  max-width: 680px;
}

.page-news .news-extend {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.page-news .news-extend a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,255,61,.4);
  transition: border-color .2s;
}

.page-news .news-extend a:hover {
  border-bottom-color: var(--green);
}

/* 专题系列 */
.page-news .news-special {
  margin-top: 56px;
  background: var(--green);
  padding: 36px 22px 34px;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.page-news .special-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.page-news .special-head h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  margin: 0;
  color: var(--space-deep);
  letter-spacing: -.02em;
}

.page-news .special-desc {
  margin: 0;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(8,18,40,.72);
  font-weight: 500;
}

.page-news .special-banner {
  margin: 0 0 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(8,18,40,.22);
}

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

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

.page-news .special-card {
  background: var(--space-deep);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(8,18,40,.3);
}

.page-news .special-card summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  cursor: pointer;
}

.page-news .special-card summary::-webkit-details-marker {
  display: none;
}

.page-news .special-index {
  font-size: 12px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: .1em;
}

.page-news .special-label {
  flex: 1;
  font-size: 17px;
  font-weight: 900;
  color: var(--text-light);
}

.page-news .special-suffix {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: .08em;
  border: 1px solid var(--hairline);
  padding: 3px 8px;
  border-radius: 999px;
  transition: border-color .2s, color .2s;
}

.page-news .special-card summary:hover .special-suffix {
  border-color: var(--green);
  color: var(--green);
}

.page-news .special-card[open] summary {
  border-bottom: 1px solid var(--hairline);
}

.page-news .special-card p {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

/* 订阅与通告 */
.page-news .news-subscribe {
  margin-top: 52px;
}

.page-news .subscribe-block {
  background: linear-gradient(135deg, var(--space-mid), var(--space-deep));
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px 22px;
}

.page-news .subscribe-block h2 {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--text-light);
}

.page-news .subscribe-copy p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.page-news .subscribe-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
  padding: 12px 16px;
  background: rgba(8,18,40,.55);
  border-radius: var(--radius);
  border: 1px solid rgba(201,255,61,.25);
}

.page-news .subscribe-contact span {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.page-news .subscribe-contact a {
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,255,61,.45);
}

.page-news .subscribe-contact a:hover {
  border-bottom-color: var(--green);
}

.page-news .subscribe-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* 站内延伸 */
.page-news .news-cross {
  margin: 48px 0 8px;
}

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

.page-news .cross-card {
  display: block;
  background: var(--space-mid);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.page-news .cross-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

.page-news .cross-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--text-light);
}

.page-news .cross-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

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

  .page-news .news-hero-lead {
    font-size: 17px;
  }

  .page-news .news-timeline {
    gap: 32px;
  }

  .page-news .filter-panel {
    align-items: center;
  }

  .page-news .filter-title,
  .page-news .filter-hint {
    width: auto;
    margin: 0 6px 0 0;
  }

  .page-news .news-item-media {
    width: 220px;
    height: 132px;
    margin-right: 18px;
  }

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

  .page-news .news-item.has-media {
    display: flex;
    align-items: flex-start;
  }

  .page-news .news-item.has-media .news-item-body {
    flex: 1;
  }

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

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

/* 桌面双列 */
@media (min-width: 992px) {
  .page-news .news-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
  }

  .page-news .filter-col {
    position: sticky;
    top: 140px;
    margin-bottom: 0;
  }

  .page-news .filter-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .page-news .filter-title,
  .page-news .filter-hint {
    width: 100%;
  }

  .page-news .filter-label {
    justify-content: space-between;
  }

  .page-news .news-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
  }

  .page-news .feature-media {
    margin-bottom: 0;
  }

  .page-news .news-item:hover,
  .page-news .news-item:focus-within {
    padding-left: 18px;
  }
}
