.news-section {
  position: relative;
  z-index: 10;
  padding: clamp(64px, 8vw, 112px) 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(101, 89, 255, 0.42), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(71, 213, 255, 0.13), transparent 28%),
    linear-gradient(145deg, #11134f 0%, #24267d 100%);
}

.news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.5px);
  background-size: 74px 74px;
}

.news {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  background: rgba(8, 10, 55, 0.58);
  box-shadow: 0 34px 85px rgba(3, 4, 31, 0.3);
  backdrop-filter: blur(18px);
}

.news-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.news-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #71e7ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.news-title {
  margin: 0;
  color: #fff;
  font-family: "Arial Black", "Microsoft YaHei", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.news-desc {
  margin: 20px 0 0;
  color: #cfd3ff;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.8;
}

.news-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0;
  list-style: none;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 16px;
}

.news-item[hidden] {
  display: none !important;
}

.news-link {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 750;
  line-height: 1.55;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.news-link:hover,
.news-link:focus-visible {
  color: #aeb9ff;
  transform: translateX(5px);
}

.news-link:focus-visible,
.news-more a:focus-visible {
  outline: 3px solid rgba(113, 231, 255, 0.5);
  outline-offset: 4px;
}

.news-time {
  padding: 7px 12px;
  border-radius: 999px;
  color: #d4d7ff;
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.news-more {
  margin-top: 32px;
}

.news-more a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: #121446;
  background: #fff;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.2);
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.news-more a:hover {
  transform: translateY(-2px);
  background: #f1f3ff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.news-lang-en {
  display: none;
}

html[lang="en"] .news-lang-zh {
  display: none;
}

html[lang="en"] .news-lang-en {
  display: inline;
}

@media (max-width: 680px) {
  .news-section {
    padding: 52px 12px;
  }

  .news {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .news-heading {
    margin-bottom: 26px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .news-link {
    overflow: visible;
    white-space: normal;
  }

  .news-time {
    width: max-content;
  }

  .news-more a {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-link,
  .news-more a {
    transition: none;
  }
}
