.page-news {
  --news-card-bg: rgba(255, 255, 255, 0.03);
  --news-card-border: rgba(255, 255, 255, 0.08);
}

.page-news .news-head {
  padding: 40px 0 20px;
}

.page-news .news-kicker {
  font-family: var(--font-mono);
  font-size: var(--font-small);
  color: var(--cyan);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-news h1 {
  font-size: var(--font-h1);
  font-weight: 900;
  line-height: 1.08;
  margin: 8px 0 14px;
  color: var(--white);
}

.page-news .news-lede {
  max-width: 640px;
  margin: 0;
  color: var(--slate);
  font-size: var(--font-body);
  line-height: 1.7;
}

.page-news .news-filter {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 20px 0 8px;
  padding: 4px 2px 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-news .news-filter::-webkit-scrollbar {
  display: none;
}

.page-news .news-filter-item {
  flex: 0 0 auto;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--slate);
  font-size: var(--font-small);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-news .news-filter-item:hover {
  background: var(--cyan-glass);
  color: var(--cyan);
  border-color: var(--cyan-border);
}

.page-news .news-filter-item.is-active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #06203a;
}

.page-news .filter-update {
  color: var(--cyan);
  border-color: rgba(0, 240, 255, 0.24);
}

.page-news .filter-match {
  color: var(--orange);
  border-color: rgba(255, 107, 53, 0.24);
}

.page-news .filter-view {
  color: var(--slate);
  border-color: rgba(138, 155, 181, 0.3);
}

.page-news .filter-notice {
  color: var(--orange);
  border-color: rgba(255, 107, 53, 0.24);
}

.page-news .page-section {
  padding: 28px 0 40px;
}

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

.page-news .news-feature {
  background: var(--bg-panel);
  border: 1px solid var(--news-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-news .news-feature-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-news .news-feature h3 {
  font-size: var(--font-h3);
  font-weight: 900;
  line-height: 1.3;
  color: var(--white);
  margin: 14px 0 12px;
}

.page-news .news-feature p {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 18px;
}

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

.page-news .news-card-num {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.4;
  color: var(--cyan);
  background: var(--cyan-glass);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-news .news-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
}

.page-news .tag-update {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--cyan);
}

.page-news .tag-tech {
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--orange);
}

.page-news .tag-match {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--cyan);
}

.page-news .tag-feature {
  background: rgba(138, 155, 181, 0.14);
  border: 1px solid rgba(138, 155, 181, 0.3);
  color: var(--slate);
}

.page-news .tag-notice {
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--orange);
}

.page-news .tag-view {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--cyan);
}

.page-news .tag-hot {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #ffffff;
}

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

.page-news .news-card {
  background: var(--news-card-bg);
  border: 1px solid var(--news-card-border);
  border-radius: var(--radius-md);
  padding: 18px 20px 20px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-news .news-card:hover,
.page-news .news-card:focus-within {
  background: rgba(0, 240, 255, 0.06);
  border-color: var(--cyan-border);
  transform: translateY(-2px);
}

.page-news .news-card h3 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--white);
  margin: 12px 0 8px;
}

.page-news .news-summary {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.page-news .news-summary-more {
  display: none;
}

.page-news .news-card:hover .news-summary,
.page-news .news-card:focus-within .news-summary {
  display: none;
}

.page-news .news-card:hover .news-summary-more,
.page-news .news-card:focus-within .news-summary-more {
  display: block;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.page-news .news-hot .hot-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1f3a 0%, #0a1428 100%);
  border: 1px solid rgba(0, 240, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 26px 22px 30px;
}

.page-news .hot-wrap::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -60px;
  width: 320px;
  height: 240px;
  background: linear-gradient(115deg, rgba(0, 240, 255, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 24px;
  transform: rotate(18deg);
  pointer-events: none;
}

.page-news .hot-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

.page-news .hot-copy h3 {
  font-size: var(--font-h3);
  font-weight: 900;
  line-height: 1.3;
  color: var(--white);
  margin: 14px 0 12px;
}

.page-news .hot-copy p {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-news .hot-points {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .hot-points li {
  position: relative;
  padding-left: 20px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
}

.page-news .hot-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

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

.page-news .insight-card {
  background: var(--bg-panel);
  border: 1px solid var(--news-card-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-news .insight-card:hover {
  background: rgba(0, 240, 255, 0.04);
  border-color: var(--cyan-border);
  transform: translateY(-2px);
}

.page-news .insight-card .news-meta {
  margin: 16px 0 8px;
}

.page-news .insight-card h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 8px;
}

.page-news .insight-card > p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
}

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

.page-news .feature-img-frame img,
.page-news .hot-img-frame img {
  aspect-ratio: 2 / 1;
}

.page-news .insight-img-frame img {
  aspect-ratio: 5 / 3;
}

.page-news .news-archive {
  padding: 8px 0 48px;
  text-align: center;
}

.page-news .news-archive-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--slate);
  font-size: var(--font-small);
  margin: 0;
}

.page-news .news-archive-note::before,
.page-news .news-archive-note::after {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(138, 155, 181, 0.4);
}

@media (min-width: 768px) {
  .page-news .news-head {
    padding: 56px 0 28px;
  }

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

  .page-news .news-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
    align-items: stretch;
  }

  .page-news .news-feature-body {
    padding: 28px 24px 26px;
  }

  .page-news .news-feature h3 {
    font-size: calc(var(--font-h3) * 1.1);
  }

  .page-news .insight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .page-news .hot-wrap {
    padding: 36px 30px;
  }

  .page-news .hot-inner {
    column-gap: 36px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-head {
    padding: 72px 0 32px;
  }

  .page-news .news-lede {
    font-size: 18px;
  }

  .page-news .hot-wrap {
    padding: 44px 40px;
  }

  .page-news .hot-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
  }

  .page-news .page-section {
    padding-bottom: 56px;
  }
}
