.page-news {
  --j-card: rgba(18, 61, 122, 0.65);
  --j-border: rgba(255, 255, 255, 0.08);
  --j-hover: rgba(255, 107, 53, 0.35);
  position: relative;
  background: var(--c-deep, #0A1F44);
  color: var(--c-cloud, #E5E7EB);
  overflow-x: hidden;
}

.page-news .container {
  width: min(var(--container, 1200px), calc(100% - var(--gutter, 32px) * 2));
  margin-inline: auto;
}

/* ===== Hero ===== */
.page-news .news-hero {
  position: relative;
  padding-top: clamp(72px, 10vw, 130px);
  background:
    linear-gradient(120deg, rgba(255, 107, 53, 0.18) 0%, transparent 52%),
    radial-gradient(circle at 85% 20%, rgba(18, 61, 122, 0.55) 0%, transparent 46%),
    var(--c-night, #06132E);
  border-bottom: 1px solid var(--j-border);
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 12px);
  pointer-events: none;
}

.page-news .breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-silver, #9CA3AF);
  margin-bottom: clamp(28px, 5vw, 56px);
}

.page-news .breadcrumb a {
  color: var(--c-silver, #9CA3AF);
  text-decoration: none;
  transition: color 0.2s var(--ease, cubic-bezier(.22, 1, .36, 1));
}

.page-news .breadcrumb a:hover {
  color: var(--c-orange, #FF6B35);
}

.page-news .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-orange, #FF6B35);
  border-left: 3px solid var(--c-orange, #FF6B35);
  padding-left: 10px;
  margin-bottom: 14px;
}

.page-news .news-hero__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(44px, 8vw, 80px);
}

@media (min-width: 900px) {
  .page-news .news-hero__row {
    grid-template-columns: minmax(0, 1fr) 260px;
  }
}

.page-news .news-hero__title {
  font-family: var(--font-head, Impact, sans-serif);
  font-size: clamp(44px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--c-white, #FFFFFF);
  margin: 0 0 18px;
  max-width: 780px;
}

.page-news .news-hero__lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-cloud, #E5E7EB);
  max-width: 640px;
  margin: 0 0 28px;
}

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

.page-news .news-hero__meta-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  color: var(--c-silver, #9CA3AF);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 19, 46, 0.5);
}

.page-news .news-hero__meta-item b {
  font-family: var(--font-head, Impact, sans-serif);
  font-size: 22px;
  color: var(--c-orange, #FF6B35);
  line-height: 1;
}

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

@media (min-width: 768px) {
  .page-news .news-hero__side {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-left: 2px solid var(--c-orange, #FF6B35);
    padding: 28px 0 28px 24px;
    min-height: 180px;
  }
}

.page-news .news-hero__round-label {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--c-silver, #9CA3AF);
}

.page-news .news-hero__round-num {
  font-family: var(--font-head, Impact, sans-serif);
  font-size: clamp(72px, 12vw, 132px);
  line-height: 1;
  color: var(--c-orange, #FF6B35);
}

.page-news .news-hero__round-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-cloud, #E5E7EB);
}

/* ===== 筛选栏 / 专题分类 ===== */
.page-news .news-filterbar {
  background: rgba(6, 19, 46, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
}

.page-news .news-filter__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-silver, #9CA3AF);
  margin-right: 6px;
}

.page-news .news-filter__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-cloud, #E5E7EB);
  background: transparent;
  text-decoration: none;
  transition: background 0.28s var(--ease, cubic-bezier(.22, 1, .36, 1)), border-color 0.28s, color 0.28s;
}

.page-news .news-filter__btn:hover,
.page-news .news-filter__btn.is-active {
  background: var(--c-orange, #FF6B35);
  border-color: var(--c-orange, #FF6B35);
  color: #FFFFFF;
}

/* ===== 主体版式 ===== */
.page-news .news-layout {
  padding: clamp(44px, 8vw, 88px) 0 clamp(56px, 9vw, 100px);
}

.page-news .news-layout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 56px);
}

@media (min-width: 1024px) {
  .page-news .news-layout__grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 48px;
  }
}

.page-news .news-layout__heading {
  grid-column: 1 / -1;
  border-left: 3px solid var(--c-orange, #FF6B35);
  padding-left: 14px;
}

.page-news .news-layout__title {
  font-family: var(--font-head, Impact, sans-serif);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--c-white, #FFFFFF);
  margin: 0 0 8px;
}

.page-news .news-layout__subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-silver, #9CA3AF);
  margin: 0;
}

/* ===== 时间线列表 ===== */
.page-news .news-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  min-width: 0;
}

@media (min-width: 768px) {
  .page-news .news-timeline {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 26px;
  }
}

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

@media (min-width: 768px) {
  .page-news .news-timeline__rail {
    display: block;
    position: sticky;
    top: 110px;
    align-self: start;
    height: fit-content;
  }
}

.page-news .news-timeline__rail-inner {
  position: relative;
  padding: 20px 0 24px 18px;
  border-left: 2px solid rgba(255, 107, 53, 0.65);
}

.page-news .news-timeline__mark {
  position: relative;
  display: block;
  font-family: var(--font-head, Impact, sans-serif);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--c-orange, #FF6B35);
  line-height: 2.2;
  padding-left: 8px;
}

.page-news .news-timeline__mark::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0.82em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-orange, #FF6B35);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18);
}

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

/* ===== 文章卡片 ===== */
.page-news .news-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  margin-bottom: 24px;
  background:
    linear-gradient(145deg, rgba(255, 107, 53, 0.08) 0%, transparent 34%),
    var(--j-card);
  border: 1px solid var(--j-border);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.32s var(--ease, cubic-bezier(.22, 1, .36, 1)), box-shadow 0.32s, border-color 0.32s;
}

.page-news .news-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  border-color: var(--j-hover);
}

@media (min-width: 640px) {
  .page-news .news-post--media {
    grid-template-columns: minmax(0, 1.15fr) minmax(200px, 0.85fr);
    align-items: center;
  }
}

.page-news .news-post__main {
  min-width: 0;
}

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

.page-news .news-post__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-cloud, #E5E7EB);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-news .news-post__tag--possession {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.34);
  color: var(--c-green, #22C55E);
}

.page-news .news-post__tag--cards {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.34);
  color: var(--c-yellow, #F59E0B);
}

.page-news .news-post__tag--league {
  background: rgba(255, 107, 53, 0.18);
  border-color: rgba(255, 107, 53, 0.38);
  color: var(--c-orange, #FF6B35);
}

.page-news .news-post__tag--apple {
  background: rgba(229, 231, 235, 0.12);
  border-color: rgba(229, 231, 235, 0.22);
  color: var(--c-cloud, #E5E7EB);
}

.page-news .news-post__tag--analysis {
  background: rgba(18, 61, 122, 0.5);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--c-silver, #9CA3AF);
}

.page-news .news-post__time {
  font-size: 12px;
  color: var(--c-silver, #9CA3AF);
}

.page-news .news-post__title {
  font-family: var(--font-head, Impact, sans-serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  color: var(--c-white, #FFFFFF);
  margin: 0 0 10px;
}

.page-news .news-post__excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-cloud, #E5E7EB);
  margin: 0 0 16px;
}

.page-news .news-post__detail {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.page-news .news-post__detail summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange, #FF6B35);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.page-news .news-post__detail[open] summary {
  margin-bottom: 10px;
}

.page-news .news-post__detail p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-silver, #9CA3AF);
  margin: 0;
}

.page-news .news-post__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-night, #06132E);
  border: 1px solid rgba(255, 255, 255, 0.07);
  aspect-ratio: 16 / 10;
}

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

/* ===== 更多入口 ===== */
.page-news .news-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding: 18px 22px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(6, 19, 46, 0.5);
}

.page-news .news-more p {
  font-size: 13px;
  color: var(--c-silver, #9CA3AF);
  margin: 0;
}

/* ===== 侧栏 / 热门内容 ===== */
.page-news .news-aside {
  min-width: 0;
}

.page-news .news-aside__heading {
  font-family: var(--font-head, Impact, sans-serif);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--c-white, #FFFFFF);
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--c-orange, #FF6B35);
}

.page-news .news-hot {
  background: rgba(6, 19, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 22px;
}

.page-news .news-hot__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .news-hot__item + .news-hot__item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.page-news .news-hot__link {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.page-news .news-hot__index {
  font-family: var(--font-head, Impact, sans-serif);
  font-size: 14px;
  color: var(--c-orange, #FF6B35);
  line-height: 1.4;
}

.page-news .news-hot__text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-cloud, #E5E7EB);
}

.page-news .news-hot__text b {
  display: block;
  color: var(--c-white, #FFFFFF);
  font-weight: 700;
  margin-bottom: 4px;
}

.page-news .news-hot__tag {
  font-size: 12px;
  color: var(--c-silver, #9CA3AF);
}

.page-news .news-guide {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 22px;
  background: rgba(18, 61, 122, 0.35);
}

.page-news .news-guide__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--c-cloud, #E5E7EB);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s var(--ease, cubic-bezier(.22, 1, .36, 1));
}

.page-news .news-guide__item:hover {
  color: var(--c-orange, #FF6B35);
}

.page-news .news-guide__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.5);
  color: var(--c-orange, #FF6B35);
  font-size: 14px;
}

/* ===== 底部 CTA ===== */
.page-news .news-cta {
  padding: 0 0 clamp(56px, 8vw, 88px);
}

.page-news .news-cta__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 30px;
  background: linear-gradient(120deg, rgba(255, 107, 53, 0.18), rgba(18, 61, 122, 0.5));
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 18px;
}

.page-news .news-cta__bar p {
  margin: 0;
  font-size: 14px;
  color: var(--c-cloud, #E5E7EB);
}
