.page-news {
  --news-card-radius: 16px;
  --news-card-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
  --news-card-shadow-hover: 0 16px 32px rgba(17, 17, 17, 0.12);
}

/* ========== Hero 封面区 ========== */
.page-news .journal-hero {
  position: relative;
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: 120px 0 56px;
  overflow: hidden;
  margin-bottom: 0;
}
.page-news .journal-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.55), rgba(57, 255, 20, 0.15));
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  transform: skewX(-14deg);
  pointer-events: none;
}
.page-news .journal-hero::after {
  content: "";
  position: absolute;
  left: 46%;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.page-news .journal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.page-news .journal-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-base);
}
.page-news .journal-breadcrumb a:hover {
  color: var(--clr-orange);
}
.page-news .journal-breadcrumb__sep {
  opacity: 0.5;
}
.page-news .journal-hero__inner {
  position: relative;
  z-index: 1;
}
.page-news .journal-hero__content {
  max-width: 780px;
}
.page-news .journal-hero__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-neon);
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  transform: skewX(-8deg);
  margin-bottom: 20px;
}
.page-news .journal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.page-news .journal-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
}
.page-news .journal-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 640px;
}
.page-news .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-news .hero-stat__num {
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}
.page-news .hero-stat__num:first-letter {
  color: var(--clr-orange);
}
.page-news .hero-stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ========== 章节标题 ========== */
.page-news .section {
  padding: 56px 0;
}
.page-news .section--latest {
  background: var(--clr-light-gray);
}
.page-news .section--features {
  background: var(--clr-white);
}
.page-news .section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}
.page-news .section-number {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-orange);
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  padding: 6px 10px;
  letter-spacing: 0.08em;
  transform: skewX(-8deg);
}
.page-news .section-header__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin: 0 0 6px;
}
.page-news .section-header__text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--clr-mid-gray);
}
.page-news .section--release {
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(57, 255, 20, 0.04)),
    var(--clr-dark);
}
.page-news .section--release .section-header__text h2 {
  color: var(--clr-white);
}
.page-news .section--release .section-header__text p {
  color: rgba(255, 255, 255, 0.75);
}
.page-news .section--release .section-number {
  color: var(--clr-neon);
  background: rgba(57, 255, 20, 0.12);
}

/* ========== 最新动态列表 ========== */
.page-news .news-list,
.page-news .release-grid,
.page-news .features-grid {
  display: grid;
  gap: 24px;
}
.page-news .news-card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--news-card-radius);
  padding: 24px 24px 24px 28px;
  box-shadow: var(--news-card-shadow);
  transition: var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.page-news .news-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--clr-orange);
  transform: skewX(-15deg);
  transform-origin: top;
}
.page-news .news-card--release::before {
  background: var(--clr-orange);
}
.page-news .news-card--feature::before {
  background: var(--clr-neon);
}
.page-news .news-card--topic::before {
  background: var(--clr-mid-gray);
}
.page-news .news-card--event::before {
  background: linear-gradient(180deg, var(--clr-orange), var(--clr-neon));
}
.page-news .news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--news-card-shadow-hover);
  background: linear-gradient(120deg, #ffffff, rgba(255, 107, 0, 0.05));
}
.page-news .news-card__media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.page-news .news-card__media img,
.page-news .news-card__figure img,
.page-news .release-card__img img,
.page-news .feature-card__cover img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-news .news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}
.page-news .news-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.page-news .news-card__time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--clr-mid-gray);
}
.page-news .news-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--clr-dark);
}
.page-news .news-card p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-mid-gray);
}
.page-news .news-card__figure {
  margin: 4px 0 14px;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  background: var(--clr-light-gray);
}
.page-news .news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.page-news .news-tag {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--clr-mid-gray);
  background: var(--clr-light-gray);
  padding: 3px 8px;
  border-radius: 6px;
}
.page-news .news-card__more {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-orange-dark);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition-base);
}
.page-news .news-card__more:hover {
  color: var(--clr-orange);
  border-bottom-color: var(--clr-orange);
}

/* ========== 分类玻璃胶囊 ========== */
.page-news .news-cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  backdrop-filter: blur(4px);
  border: 1px solid transparent;
}
.page-news .news-cat--release {
  background: rgba(255, 107, 0, 0.12);
  color: var(--clr-orange-dark);
  border-color: rgba(255, 107, 0, 0.25);
}
.page-news .news-cat--feature {
  background: rgba(57, 255, 20, 0.12);
  color: #2e7d1c;
  border-color: rgba(57, 255, 20, 0.35);
}
.page-news .news-cat--topic {
  background: rgba(62, 62, 62, 0.08);
  color: var(--clr-mid-gray);
  border-color: rgba(62, 62, 62, 0.18);
}
.page-news .news-cat--event {
  background: rgba(255, 107, 0, 0.08);
  color: var(--clr-orange-dark);
  border-color: rgba(255, 107, 0, 0.2);
}

/* ========== 版本更新区 ========== */
.page-news .release-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--news-card-radius);
  padding: 24px;
  backdrop-filter: blur(8px);
  color: var(--clr-white);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  overflow: hidden;
}
.page-news .release-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  background: rgba(255, 107, 0, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transform: skewX(-8deg);
}
.page-news .release-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-3px);
}
.page-news .release-card__img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.page-news .release-card__img img {
  width: 100%;
}
.page-news .release-card__version {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--clr-neon);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.2);
  padding: 3px 10px;
  border-radius: 4px;
  transform: skewX(-6deg);
  margin-bottom: 14px;
}
.page-news .release-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--clr-white);
}
.page-news .release-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.page-news .release-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.page-news .release-details {
  margin: 4px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  width: 100%;
}
.page-news .release-details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-neon);
  list-style: none;
  user-select: none;
  transition: var(--transition-base);
}
.page-news .release-details summary:hover {
  color: var(--clr-white);
}
.page-news .release-details summary::-webkit-details-marker {
  display: none;
}
.page-news .release-details summary::before {
  content: "+ ";
}
.page-news .release-details[open] summary::before {
  content: "− ";
}
.page-news .release-details ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}
.page-news .compare-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
  padding: 16px;
  background: rgba(17, 17, 17, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.page-news .compare-box__col h4 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--clr-white);
}
.page-news .compare-box__col ul {
  margin: 0;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* ========== 赛事专题 ========== */
.page-news .feature-card {
  background: var(--clr-white);
  border-radius: var(--news-card-radius);
  overflow: hidden;
  box-shadow: var(--news-card-shadow);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  border-top: 4px solid transparent;
}
.page-news .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--news-card-shadow-hover);
  border-top-color: var(--clr-orange);
}
.page-news .feature-card__cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.page-news .feature-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .feature-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}
.page-news .feature-card__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-orange-dark);
  background: rgba(255, 107, 0, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  transform: skewX(-6deg);
  margin-bottom: 12px;
}
.page-news .feature-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--clr-dark);
}
.page-news .feature-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--clr-mid-gray);
}

/* ========== 响应式 ========== */
@media (min-width: 640px) {
  .page-news .news-card__figure {
    max-width: 520px;
  }
}

@media (min-width: 768px) {
  .page-news .journal-hero {
    padding-top: 136px;
  }
  .page-news .section {
    padding: 72px 0;
  }
  .page-news .news-list {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .page-news .news-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
  }
  .page-news .news-card--featured .news-card__media {
    margin-bottom: 0;
    border-radius: 12px 0 0 12px;
  }
  .page-news .news-card--featured .news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-news .news-card--featured .news-card__body {
    padding-left: 8px;
  }
  .page-news .news-card--featured h3 {
    font-size: 22px;
  }
  .page-news .release-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .page-news .features-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .page-news .feature-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: stretch;
  }
  .page-news .feature-card:first-child .feature-card__cover {
    aspect-ratio: auto;
    height: 100%;
  }
  .page-news .feature-card:first-child .feature-card__cover img {
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 1024px) {
  .page-news .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .release-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-news .feature-card:first-child {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }
  .page-news .feature-card:first-child .feature-card__cover {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  .page-news .feature-card:first-child .feature-card__cover img {
    height: auto;
  }
}
