.page-news {
  --news-radius: 14px;
  --news-card-bg: linear-gradient(180deg, rgba(21, 31, 51, 0.92), rgba(7, 13, 31, 0.92));
  display: block;
  background: var(--mg-deep);
  color: var(--mg-ink);
  padding-bottom: clamp(44px, 7vw, 92px);
}

.news-shell {
  padding-top: clamp(18px, 3vw, 34px);
}

.news-crumb {
  font-size: 13px;
  color: var(--mg-mist);
}

.news-crumb a {
  color: var(--mg-mist);
  text-decoration: none;
}

.news-crumb a:hover {
  color: var(--mg-cyan);
}

/* ---------- 首屏 ---------- */
.news-hero {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: clamp(26px, 5vw, 56px) clamp(18px, 4vw, 52px) clamp(24px, 4vw, 46px);
  background:
    linear-gradient(154deg, rgba(21, 31, 51, 0.98) 0%, rgba(11, 20, 42, 0.98) 52%, var(--mg-deep) 100%);
  border: 1px solid var(--mg-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.news-hero__shape {
  position: absolute;
  top: -42%;
  right: -14%;
  width: 70%;
  height: 140%;
  background: linear-gradient(135deg, rgba(39, 232, 211, 0.32), rgba(255, 63, 164, 0.24) 52%, rgba(255, 200, 87, 0) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 76%);
  opacity: 0.55;
  pointer-events: none;
}

.news-hero > *:not(.news-hero__shape) {
  position: relative;
  z-index: 1;
}

.news-hero h1 {
  margin: 14px 0 0;
  font-family: var(--mg-font-display);
  font-weight: 800;
  font-size: clamp(30px, 6.4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 17em;
}

.news-hero .mg-lede {
  margin: 16px 0 0;
  max-width: 46em;
  color: var(--mg-mist);
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.75;
}

.news-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.news-hero__stat {
  padding: 12px 14px;
  border: 1px solid var(--mg-line);
  border-radius: 10px;
  background: rgba(7, 13, 31, 0.6);
}

.news-hero__num {
  display: block;
  font-family: var(--mg-font-mono);
  font-size: clamp(20px, 3.6vw, 30px);
  line-height: 1.2;
  color: var(--mg-cyan);
  font-variant-numeric: tabular-nums;
}

.news-hero__stat:nth-child(2) .news-hero__num {
  color: var(--mg-amber);
}

.news-hero__stat:nth-child(3) .news-hero__num {
  color: var(--mg-magenta);
}

.news-hero__cap {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mg-mist);
}

.news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* ---------- 主体栅格 ---------- */
.news-body {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  margin-top: clamp(28px, 5vw, 56px);
}

.news-toc {
  border: 1px solid var(--mg-line);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(21, 31, 51, 0.5);
}

.news-toc__title {
  margin: 0 0 10px;
  font-family: var(--mg-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mg-mist);
}

.news-toc__list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.news-toc__list a {
  display: block;
  padding: 6px 10px;
  border: 1px solid var(--mg-line);
  border-radius: 999px;
  color: var(--mg-ink);
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
}

.news-toc__list a:hover {
  color: var(--mg-cyan);
  border-color: rgba(39, 232, 211, 0.5);
}

.news-flow {
  min-width: 0;
}

/* ---------- 章节 ---------- */
.news-section {
  margin-top: clamp(38px, 6vw, 72px);
  scroll-margin-top: calc(var(--mg-topbar-h) + 24px);
}

.news-section:first-child {
  margin-top: 0;
}

.news-section__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mg-line);
}

.news-num {
  flex: none;
  font-family: var(--mg-font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--mg-magenta);
  padding-top: 8px;
}

.news-section__head h2 {
  margin: 0;
  font-family: var(--mg-font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 32px);
  line-height: 1.2;
}

.news-section__note {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mg-mist);
}

/* ---------- 开服观察 ---------- */
.news-brief {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.news-brief__item {
  padding: 18px 18px 18px 20px;
  background: var(--news-card-bg);
  border: 1px solid var(--mg-line);
  border-left: 3px solid var(--mg-cyan);
  border-radius: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.news-brief__item:nth-child(2) {
  border-left-color: var(--mg-magenta);
}

.news-brief__item:nth-child(3) {
  border-left-color: var(--mg-amber);
}

.news-brief__item:nth-child(4) {
  border-left-color: var(--mg-moss);
}

.news-brief__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(39, 232, 211, 0.28);
}

.news-brief__time {
  display: inline-block;
  font-family: var(--mg-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mg-amber);
  border: 1px solid rgba(255, 200, 87, 0.42);
  border-radius: 999px;
  padding: 3px 10px;
}

.news-brief__title {
  margin: 12px 0 8px;
  font-family: var(--mg-font-display);
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 700;
  line-height: 1.4;
}

.news-brief__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mg-mist);
}

.news-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 9px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mg-mist);
  border: 1px solid var(--mg-line);
  border-radius: 4px;
}

.news-tag--cyan {
  color: var(--mg-cyan);
  border-color: rgba(39, 232, 211, 0.38);
}

/* ---------- 筛选与开服表 ---------- */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
  padding: 14px 16px;
  border: 1px solid var(--mg-line);
  border-radius: 10px;
  background: rgba(21, 31, 51, 0.56);
}

.news-filter .news-quick {
  flex: 1 1 260px;
  min-width: 0;
}

.news-tablewrap {
  border: 1px solid var(--mg-line);
  border-radius: 10px;
  background: rgba(7, 13, 31, 0.66);
}

.news-table {
  min-width: 660px;
  width: 100%;
}

.news-table__cap {
  padding: 12px 14px;
  text-align: left;
  font-size: 13px;
  color: var(--mg-mist);
  border-bottom: 1px solid var(--mg-line);
}

.news-table th {
  font-family: var(--mg-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mg-mist);
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--mg-line);
  white-space: nowrap;
}

.news-table td {
  padding: 13px 14px;
  font-size: 14px;
  border-bottom: 1px solid var(--mg-line-soft);
  vertical-align: middle;
}

.news-table tbody tr:last-child td {
  border-bottom: 0;
}

.news-table tbody tr:hover td {
  background: rgba(39, 232, 211, 0.05);
}

.news-table td.is-num,
.news-table td .news-code {
  font-family: var(--mg-font-mono);
  font-variant-numeric: tabular-nums;
}

.news-code {
  color: var(--mg-cyan);
  letter-spacing: 0.04em;
}

.news-status {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid;
  white-space: nowrap;
}

.news-status--open {
  color: var(--mg-cyan);
  border-color: rgba(39, 232, 211, 0.5);
  background: rgba(39, 232, 211, 0.1);
}

.news-status--soon {
  color: var(--mg-amber);
  border-color: rgba(255, 200, 87, 0.5);
  background: rgba(255, 200, 87, 0.1);
}

.news-status--plan {
  color: var(--mg-mist);
  border-color: var(--mg-line);
  background: rgba(154, 169, 190, 0.08);
}

/* ---------- 图片容器 ---------- */
.news-figure {
  margin: 22px 0 0;
  border: 1px solid var(--mg-line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(21, 31, 51, 0.6);
}

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

.news-figure .mg-media__caption {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mg-mist);
  border-top: 1px solid var(--mg-line);
}

.news-figure--topic {
  max-width: 720px;
}

/* ---------- 更新日志时间线 ---------- */
.news-log {
  margin: 22px 0 0;
  padding: 0 0 0 4px;
  list-style: none;
}

.news-log__item {
  position: relative;
  padding: 0 0 26px 22px;
  border-left: 1px solid var(--mg-line);
}

.news-log__item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.news-log__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mg-deep);
  border: 2px solid var(--mg-cyan);
}

.news-log__item:nth-child(2)::before {
  border-color: var(--mg-magenta);
}

.news-log__item:nth-child(3)::before {
  border-color: var(--mg-amber);
}

.news-log__item:nth-child(4)::before {
  border-color: var(--mg-moss);
}

.news-log__item:nth-child(5)::before {
  border-color: var(--mg-clay);
}

.news-log__time {
  display: inline-block;
  font-family: var(--mg-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mg-mist);
}

.news-log__title {
  margin: 8px 0 8px;
  font-family: var(--mg-font-display);
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 700;
  line-height: 1.4;
}

.news-log__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mg-mist);
  max-width: 60em;
}

.news-log__item .news-tag {
  margin-top: 12px;
}

/* ---------- 专题 ---------- */
.news-topics {
  margin-top: 22px;
}

.news-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-topic {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--mg-line);
  border-left: 3px solid var(--mg-magenta);
  border-radius: 12px;
  background: var(--news-card-bg);
}

.news-topic__title {
  margin: 0 0 10px;
  font-family: var(--mg-font-display);
  font-size: clamp(18px, 2.8vw, 23px);
  font-weight: 700;
  line-height: 1.35;
}

.news-topic__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mg-mist);
}

.news-topic__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.news-topic__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mg-mist);
}

.news-topic__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  background: var(--mg-cyan);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.news-topic .mg-btn {
  margin-top: 18px;
}

/* ---------- 每周三修订 ---------- */
.news-section--revision .news-section__head {
  border-bottom-color: rgba(255, 63, 164, 0.42);
}

.news-revision {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.news-revision__text p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mg-mist);
}

.news-revision__facts {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.news-revision__fact {
  padding: 12px 14px;
  border: 1px solid var(--mg-line);
  border-radius: 10px;
  background: rgba(21, 31, 51, 0.5);
}

.news-revision__fact dt {
  font-family: var(--mg-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mg-amber);
}

.news-revision__fact dd {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mg-mist);
}

.news-revision__figure {
  margin: 0;
}

/* ---------- 勘误与提醒 ---------- */
.news-report {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.news-report__card {
  display: flex;
  flex-direction: column;
}

.news-report__card .mg-card__title {
  font-family: var(--mg-font-display);
  font-size: 18px;
}

.news-report__card p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mg-mist);
}

.news-report__card .mg-btn {
  margin-top: 18px;
  align-self: flex-start;
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .news-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .news-log__item {
    padding-left: 28px;
  }

  .news-report {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .news-body {
    grid-template-columns: 188px minmax(0, 1fr);
    align-items: start;
  }

  .news-toc {
    position: sticky;
    top: calc(var(--mg-topbar-h) + 22px);
    align-self: start;
  }

  .news-toc__list {
    flex-direction: column;
    gap: 4px;
    overflow: visible;
  }

  .news-toc__list a {
    border: 0;
    border-left: 2px solid var(--mg-line);
    border-radius: 0;
    padding: 7px 0 7px 12px;
  }

  .news-toc__list a:hover {
    border-left-color: var(--mg-cyan);
  }

  .news-revision {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
  }

  .news-report {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-log__item {
    padding-left: 32px;
  }
}

@media (min-width: 1280px) {
  .news-hero {
    padding-right: clamp(52px, 6vw, 84px);
  }
}
<<<END>>>
