.page-news {
  --news-gap: 20px;
  --news-line: rgba(74, 106, 143, 0.28);
  --news-bg: rgba(10, 30, 63, 0.72);
  --news-bg-solid: #0E2548;
  color: var(--color-cloud);
  overflow-x: hidden;
}

/* ===== Hero 区域 ===== */
.page-news .news-hero {
  position: relative;
  padding: 36px 0 52px;
  background:
    radial-gradient(ellipse 480px 240px at 88% 18%, rgba(255, 106, 0, 0.14), transparent 70%),
    radial-gradient(ellipse 360px 200px at 12% 85%, rgba(0, 229, 160, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(10, 30, 63, 0.15) 0%, var(--color-deep) 100%);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--news-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--news-line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 4px;
  background: var(--gradient-fire);
  transform: skewX(-45deg);
  transform-origin: right bottom;
}

.page-news .news-hero .container {
  position: relative;
  z-index: 1;
}

.page-news .news-hero .breadcrumb {
  margin-bottom: 36px;
}

.page-news .news-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-news .news-hero-copy {
  position: relative;
  padding-left: 18px;
}

.page-news .news-hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  background: var(--gradient-fire);
  border-radius: 2px;
}

.page-news .news-hero-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 14px;
}

.page-news .news-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 10px;
  color: var(--color-cloud);
}

.page-news .news-hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 400;
  color: var(--color-blue-gray);
  margin: 0 0 18px;
  letter-spacing: 0.06em;
}

.page-news .news-hero-lead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.78);
  max-width: 560px;
  margin: 0;
}

.page-news .news-hero-panel {
  background: rgba(18, 24, 31, 0.55);
  border: 1px solid rgba(74, 106, 143, 0.3);
  border-left: 3px solid var(--color-green);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-news .hero-panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(74, 106, 143, 0.22);
}

.page-news .hero-panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(0, 229, 160, 0.16);
  animation: page-news-pulse 2s ease infinite;
}

@keyframes page-news-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.16); }
  50% { box-shadow: 0 0 0 7px rgba(0, 229, 160, 0.06); }
}

.page-news .hero-panel-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--color-green-soft);
}

.page-news .hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-news .hero-stat-grid .stat-block {
  background: rgba(245, 247, 250, 0.06);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: background var(--t-fast);
}

.page-news .hero-stat-grid .stat-block:hover {
  background: rgba(245, 247, 250, 0.12);
}

.page-news .hero-stat-grid .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.2;
}

.page-news .hero-stat-grid .stat-label {
  display: block;
  font-size: 12px;
  color: rgba(245, 247, 250, 0.62);
  margin-top: 4px;
  line-height: 1.4;
}

.page-news .hero-panel-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(245, 247, 250, 0.5);
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(74, 106, 143, 0.35);
}

/* ===== 区块通用 ===== */
.page-news .news-section {
  position: relative;
  padding: 56px 0;
}

.page-news .news-section + .news-section {
  border-top: 1px solid rgba(74, 106, 143, 0.16);
}

.page-news .section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 34px;
}

.page-news .section-index {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-orange);
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: var(--radius);
  padding: 6px 10px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.page-news .section-header-copy {
  flex: 1;
}

.page-news .section-header h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--color-cloud);
}

.page-news .section-desc {
  font-size: 14px;
  color: var(--color-blue-gray);
  margin: 0;
  line-height: 1.6;
}

/* ===== 置顶公告 ===== */
.page-news .news-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--news-bg);
  border: 1px solid rgba(74, 106, 143, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.page-news .news-featured-media {
  position: relative;
  overflow: hidden;
}

.page-news .news-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

.page-news .news-featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 30, 63, 0.55) 100%);
  pointer-events: none;
}

.page-news .news-featured-body {
  padding: 8px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-news .news-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.page-news .news-featured-version {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-blue-gray);
}

.page-news .news-featured-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(19px, 3vw, 26px);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--color-cloud);
}

.page-news .news-featured-body p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.74);
  margin: 0 0 16px;
}

.page-news .news-featured-body .btn {
  margin-top: 4px;
}

/* ===== 过滤器 ===== */
.page-news .news-filter-wrap {
  position: relative;
  margin-bottom: 40px;
}

.page-news .news-filter-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.page-news .news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.page-news .news-filter-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-heading);
  color: rgba(245, 247, 250, 0.72);
  background: rgba(10, 30, 63, 0.55);
  border: 1px solid rgba(74, 106, 143, 0.32);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
  position: relative;
}

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

.page-news #nf-all:checked ~ .news-filters label[for="nf-all"],
.page-news #nf-version:checked ~ .news-filters label[for="nf-version"],
.page-news #nf-feature:checked ~ .news-filters label[for="nf-feature"],
.page-news #nf-fix:checked ~ .news-filters label[for="nf-fix"] {
  background: var(--gradient-fire);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 106, 0, 0.32);
}

.page-news .news-filter-input:focus-visible ~ .news-filters label {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}

/* ===== 更新列表 ===== */
.page-news .news-list {
  display: grid;
  gap: 12px;
}

.page-news .news-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px 20px;
  background: var(--news-bg);
  border: 1px solid rgba(74, 106, 143, 0.16);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  transition: all var(--t-med);
}

.page-news .news-item:hover {
  border-color: rgba(255, 106, 0, 0.42);
  border-left-color: var(--color-orange);
  transform: translateY(-2px);
  background: rgba(10, 30, 63, 0.88);
}

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

.page-news .news-item-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-green-soft);
  white-space: nowrap;
}

.page-news .cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-news .cat-dot-version { background: var(--color-orange); box-shadow: 0 0 6px rgba(255, 106, 0, 0.6); }
.page-news .cat-dot-feature { background: var(--color-green); box-shadow: 0 0 6px rgba(0, 229, 160, 0.5); }
.page-news .cat-dot-fix { background: var(--color-blue-gray); box-shadow: 0 0 6px rgba(74, 106, 143, 0.6); }
.page-news .cat-dot-data { background: var(--color-fire); box-shadow: 0 0 6px rgba(255, 61, 0, 0.6); }

.page-news .news-item-ver {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-blue-gray);
  background: rgba(74, 106, 143, 0.14);
  padding: 3px 8px;
  border-radius: 4px;
}

.page-news .news-item-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--color-cloud);
  line-height: 1.4;
}

.page-news .news-item-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.66);
  margin: 0 0 10px;
}

.page-news .data-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-news .data-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-green-soft);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.22);
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
}

/* 带缩略图的条目 */
.page-news .news-item-with-thumb {
  grid-template-columns: 1fr;
}

.page-news .news-item-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 120px;
  max-height: 200px;
}

.page-news .news-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-med);
}

.page-news .news-item:hover .news-item-thumb img {
  transform: scale(1.04);
}

/* 过滤逻辑 */
.page-news #nf-all:checked ~ .news-list .news-item,
.page-news #nf-all:checked ~ .news-more .news-item {
  display: grid;
}

.page-news #nf-version:checked ~ .news-list .news-item:not([data-cat="version"]),
.page-news #nf-version:checked ~ .news-more .news-item:not([data-cat="version"]),
.page-news #nf-feature:checked ~ .news-list .news-item:not([data-cat="feature"]),
.page-news #nf-feature:checked ~ .news-more .news-item:not([data-cat="feature"]),
.page-news #nf-fix:checked ~ .news-list .news-item:not([data-cat="fix"]),
.page-news #nf-fix:checked ~ .news-more .news-item:not([data-cat="fix"]) {
  display: none;
}

/* ===== 加载更多 ===== */
.page-news .news-more {
  margin-top: 14px;
  border: 1px dashed rgba(74, 106, 143, 0.3);
  border-radius: var(--radius);
  background: rgba(10, 30, 63, 0.35);
}

.page-news .news-more summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green);
  transition: color var(--t-fast);
  user-select: none;
}

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

.page-news .news-more summary::after {
  content: "+";
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  transition: transform var(--t-med);
}

.page-news .news-more[open] summary::after {
  transform: rotate(45deg);
}

.page-news .news-more summary:hover {
  color: var(--color-green-soft);
}

.page-news .news-list-more {
  padding: 0 16px 16px;
}

.page-news .news-help-btn {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
  display: flex;
}

/* ===== 数据洞察 ===== */
.page-news .news-insights {
  background:
    linear-gradient(90deg, rgba(0, 229, 160, 0.035) 0%, transparent 35%),
    linear-gradient(180deg, rgba(10, 30, 63, 0.35) 0%, transparent 100%);
}

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

.page-news .insight-card-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--news-bg);
  border: 1px solid rgba(74, 106, 143, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-news .insight-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.page-news .insight-body {
  padding: 24px 22px;
}

.page-news .insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.page-news .insight-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-blue-gray);
}

.page-news .insight-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 12px;
  color: var(--color-cloud);
}

.page-news .insight-body > p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.72);
  margin: 0 0 18px;
}

.page-news .insight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.page-news .insight-stats .stat-block {
  background: rgba(245, 247, 250, 0.06);
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
}

.page-news .insight-stats .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.2;
}

.page-news .insight-stats .stat-label {
  display: block;
  font-size: 11px;
  color: rgba(245, 247, 250, 0.6);
  margin-top: 4px;
}

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

.page-news .insight-mini {
  background: rgba(10, 30, 63, 0.6);
  border: 1px solid rgba(74, 106, 143, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--t-med);
}

.page-news .insight-mini:hover {
  border-color: rgba(0, 229, 160, 0.4);
  transform: translateX(4px);
}

.page-news .insight-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.page-news .insight-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: rgba(74, 106, 143, 0.7);
}

.page-news .insight-mini h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-cloud);
  line-height: 1.4;
}

.page-news .insight-mini p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.64);
  margin: 0 0 12px;
}

/* ===== 赛事分析 ===== */
.page-news .news-analysis {
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(10, 30, 63, 0.4) 100%);
}

.page-news .analysis-list {
  display: grid;
  gap: 14px;
}

.page-news .analysis-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px 20px;
  background: var(--news-bg);
  border: 1px solid rgba(74, 106, 143, 0.18);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
}

.page-news .analysis-item::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: 60px;
  height: 60px;
  background: var(--gradient-fire);
  opacity: 0.12;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: opacity var(--t-med);
}

.page-news .analysis-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.35);
}

.page-news .analysis-item:hover::after {
  opacity: 0.28;
}

.page-news .analysis-index {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-orange);
  opacity: 0.9;
  padding-top: 2px;
}

.page-news .analysis-content h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  margin: 4px 0 8px;
  color: var(--color-cloud);
  line-height: 1.4;
}

.page-news .analysis-content > p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.66);
  margin: 0 0 12px;
}

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

.page-news .analysis-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-cloud);
  background: rgba(255, 106, 0, 0.16);
  border: 1px solid rgba(255, 106, 0, 0.34);
  border-radius: 4px;
  padding: 3px 10px;
}

.page-news .analysis-stage {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-blue-gray);
}

/* ===== 产品公告 ===== */
.page-news .news-products {
  background:
    radial-gradient(ellipse 600px 300px at 80% 0%, rgba(0, 229, 160, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(10, 30, 63, 0.5) 0%, transparent 100%);
}

.page-news .products-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

.page-news .products-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

.page-news .products-visual-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 24px 22px;
  background: linear-gradient(180deg, transparent, rgba(10, 30, 63, 0.82));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-news .products-visual-overlay p {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-cloud);
  margin: 0;
}

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

.page-news .product-card {
  background: var(--news-bg);
  border: 1px solid rgba(74, 106, 143, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
}

.page-news .product-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-jade);
  opacity: 0;
  transition: opacity var(--t-med);
}

.page-news .product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 160, 0.3);
}

.page-news .product-card:hover::before {
  opacity: 1;
}

.page-news .product-card-index {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-green);
  display: block;
  margin-bottom: 10px;
}

.page-news .product-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--color-cloud);
}

.page-news .product-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.66);
  margin: 0 0 12px;
}

/* ===== 表格与布局增强 ===== */
.page-news .btn {
  border-radius: 6px;
  font-size: 13px;
  padding: 10px 20px;
}

/* ===== 平板 ===== */
@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 48px 0 68px;
  }

  .page-news .news-hero-grid {
    grid-template-columns: 1fr 320px;
    gap: 44px;
  }

  .page-news .news-hero-panel {
    padding: 24px;
  }

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

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

  .page-news .news-featured-media {
    min-height: 100%;
  }

  .page-news .news-featured-body {
    padding: 28px;
  }

  .page-news .news-item {
    grid-template-columns: 170px 1fr;
    gap: 18px;
  }

  .page-news .news-item-with-thumb {
    grid-template-columns: 150px 1fr 180px;
    align-items: center;
  }

  .page-news .news-item-with-thumb .news-item-body {
    grid-column: 2;
  }

  .page-news .news-item-with-thumb .news-item-thumb {
    grid-column: 3;
    grid-row: 1;
    min-height: 100%;
    max-height: none;
  }

  .page-news .insights-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
  }

  .page-news .insight-card-main {
    grid-template-columns: 1fr;
  }

  .page-news .insight-aside {
    grid-template-columns: 1fr;
    align-content: stretch;
  }

  .page-news .insight-mini {
    display: flex;
    flex-direction: column;
  }

  .page-news .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== 桌面 ===== */
@media (min-width: 1024px) {
  .page-news .news-hero {
    padding: 56px 0 84px;
  }

  .page-news .news-hero-grid {
    grid-template-columns: 1fr 360px;
    gap: 64px;
  }

  .page-news .news-hero h1 {
    font-size: 46px;
  }

  .page-news .news-hero-panel {
    padding: 28px;
  }

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

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

  .page-news .insight-card-main {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .insight-media {
    min-height: 100%;
  }

  .page-news .insight-body {
    padding: 30px 28px;
  }

  .page-news .analysis-item {
    grid-template-columns: 64px 1fr;
    padding: 28px 32px;
  }

  .page-news .analysis-index {
    font-size: 32px;
  }

  .page-news .analysis-content {
    padding-right: 40px;
  }

  .page-news .products-visual-overlay {
    padding: 64px 32px 26px;
  }

  .page-news .product-card {
    padding: 26px;
  }
}

/* ===== 桌面宽屏细节 ===== */
@media (min-width: 1200px) {
  .page-news .news-hero-grid {
    grid-template-columns: 1fr 380px;
  }

  .page-news .news-item h3 {
    font-size: 17px;
  }

  .page-news .news-item-desc {
    font-size: 14px;
  }

  .page-news .insight-stats .stat-value {
    font-size: 24px;
  }
}
