.page-news {
  --news-radius: 0;
}

/* ---------- 面包屑 ---------- */
.page-news .breadcrumbs {
  padding: 18px 0 0;
}
.page-news .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--rb-silver);
}
.page-news .breadcrumbs li {
  display: flex;
  align-items: center;
}
.page-news .breadcrumbs li + li::before {
  content: "/";
  margin: 0 8px;
  color: var(--rb-line);
}
.page-news .breadcrumbs a {
  color: var(--rb-silver);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
.page-news .breadcrumbs a:hover,
.page-news .breadcrumbs a:focus-visible {
  color: var(--rb-red);
}
.page-news .breadcrumbs [aria-current="page"] {
  color: var(--rb-ink);
  font-weight: 700;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  padding: clamp(32px, 6vw, 68px) 0 clamp(40px, 6vw, 78px);
  background:
    radial-gradient(120% 90% at 90% 0%, rgba(200, 16, 46, 0.17), transparent 62%),
    radial-gradient(90% 80% at 0% 100%, rgba(31, 111, 235, 0.08), transparent 60%),
    linear-gradient(180deg, var(--rb-paper) 0%, var(--rb-linen) 100%);
  border-bottom: 2px solid var(--rb-ink);
  overflow: hidden;
}
.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(58, 64, 70, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 64, 70, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
}
.page-news .news-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}
.page-news .news-hero__copy .eyebrow {
  color: var(--rb-red);
}
.page-news .news-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--rb-ink);
}
.page-news .news-hero .lead {
  margin: 20px 0 0;
  max-width: 46em;
  font-size: clamp(15px, 1.6vw, 16.5px);
  line-height: 1.78;
  color: #3d4247;
}
.page-news .news-hero__marks {
  list-style: none;
  margin: 26px 0 0;
  padding: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  border-top: 1px solid rgba(58, 64, 70, 0.3);
}
.page-news .news-hero__marks li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--rb-line);
}
.page-news .news-hero__marks .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--rb-red);
}
.page-news .news-hero__media {
  border: 2px solid var(--rb-ink);
  box-shadow: var(--shadow-hard);
}
.page-news .news-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 阶段切换条 ---------- */
.page-news .stage-bar {
  background: var(--rb-ink);
  padding: 14px 0;
  border-bottom: 3px solid var(--rb-red);
}
.page-news .stage-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.page-news .stage-chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  border: 2px solid var(--rb-line);
  background: var(--rb-slate);
  color: var(--rb-paper);
  text-decoration: none;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.page-news .stage-chip:hover,
.page-news .stage-chip:focus-visible {
  transform: translateY(-2px);
  border-color: var(--rb-red);
  background: #2c3037;
}
.page-news .stage-chip__no {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--rb-red);
  font-weight: 700;
}
.page-news .stage-chip__name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.page-news .stage-chip__meta {
  font-size: 12px;
  color: var(--rb-silver);
}

/* ---------- 更新条目区 ---------- */
.page-news .updates {
  padding: clamp(46px, 7vw, 92px) 0;
  background: var(--rb-paper);
}
.page-news .updates__grid {
  display: grid;
  gap: clamp(26px, 3.5vw, 44px);
}
.page-news .updates__main {
  min-width: 0;
}
.page-news .stage-block,
.page-news .whitepaper,
.page-news .payout {
  scroll-margin-top: calc(var(--bar-h) + 20px);
}
.page-news .stage-block {
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: clamp(26px, 3.6vw, 42px);
  border-top: 2px solid var(--rb-ink);
}
.page-news .stage-block:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.page-news .stage-block .section-head {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
}
.page-news .stage-block .section-index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rb-clay);
}
.page-news .stage-block .section-title {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--rb-ink);
}
.page-news .stage-block .section-note {
  margin: 0;
  max-width: 52em;
  font-size: 14px;
  line-height: 1.72;
  color: var(--rb-silver);
}

.page-news .entry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(58, 64, 70, 0.32);
}
.page-news .entry {
  display: grid;
  gap: 8px 26px;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(58, 64, 70, 0.32);
  border-left: 3px solid transparent;
  transition: background 0.18s var(--ease), border-left-color 0.18s var(--ease), padding-left 0.18s var(--ease);
}
.page-news .entry:hover,
.page-news .entry:focus-within {
  background: rgba(227, 223, 212, 0.62);
  border-left-color: var(--rb-red);
  padding-left: 14px;
}
.page-news .entry__title {
  margin: 0;
  font-size: clamp(16px, 2vw, 18.5px);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--rb-ink);
}
.page-news .entry__body {
  min-width: 0;
}
.page-news .entry__sum {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: #3d4247;
}
.page-news .entry__meta {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--rb-silver);
}
.page-news .entry__meta .mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.page-news .updates__aside {
  display: none;
}
.page-news .updates__texture {
  border: 2px solid var(--rb-line);
  box-shadow: var(--shadow-hard);
}
.page-news .updates__texture img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 白皮书专题 ---------- */
.page-news .whitepaper {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 7vw, 96px) 0;
  background: linear-gradient(160deg, #191b20 0%, #0f1114 100%);
  color: var(--rb-paper);
  border-top: 3px solid var(--rb-red);
  border-bottom: 3px solid var(--rb-red);
}
.page-news .whitepaper::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 46%;
  height: 130%;
  background: linear-gradient(120deg, rgba(31, 111, 235, 0.22), rgba(200, 16, 46, 0.26));
  transform: rotate(-3deg);
  pointer-events: none;
}
.page-news .whitepaper__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.page-news .whitepaper__cover {
  border: 2px solid rgba(244, 241, 234, 0.28);
  box-shadow: 10px 10px 0 rgba(200, 16, 46, 0.5);
  max-width: 420px;
}
.page-news .whitepaper__cover img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .whitepaper .eyebrow {
  color: var(--rb-red);
}
.page-news .whitepaper h2 {
  margin: 12px 0 16px;
  font-size: clamp(23px, 3.6vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-news .whitepaper p {
  margin: 0;
  max-width: 44em;
  font-size: 15.5px;
  line-height: 1.82;
  color: rgba(244, 241, 234, 0.82);
}
.page-news .whitepaper__facts {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  border-top: 1px solid rgba(244, 241, 234, 0.22);
}
.page-news .whitepaper__facts li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.14);
  font-size: 14px;
  color: rgba(244, 241, 234, 0.88);
}
.page-news .whitepaper__facts .mono {
  flex: 0 0 auto;
  min-width: 2.8em;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 21px;
  font-weight: 700;
  color: var(--rb-eblue);
}

/* ---------- 结果公布 ---------- */
.page-news .payout {
  padding: clamp(50px, 7vw, 94px) 0 clamp(40px, 5vw, 70px);
  background: var(--rb-linen);
}
.page-news .payout__grid {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.page-news .payout__copy .eyebrow {
  color: var(--rb-red);
}
.page-news .payout__copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(23px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--rb-ink);
}
.page-news .payout__copy p {
  margin: 0;
  max-width: 44em;
  font-size: 15.5px;
  line-height: 1.82;
  color: #3d4247;
}
.page-news .payout__steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid rgba(58, 64, 70, 0.3);
}
.page-news .payout__steps li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(58, 64, 70, 0.22);
  font-size: 14.5px;
  color: #3d4247;
}
.page-news .payout__steps .mono {
  flex: 0 0 auto;
  min-width: 8em;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
  color: var(--rb-eblue);
}
.page-news .payout__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.page-news .payout__media {
  border: 2px solid var(--rb-ink);
  box-shadow: var(--shadow-hard);
  background: var(--rb-ink);
}
.page-news .payout__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 更新提醒 ---------- */
.page-news .remind {
  padding: 0 0 clamp(48px, 7vw, 88px);
  background: var(--rb-linen);
}
.page-news .remind__panel {
  display: grid;
  gap: clamp(24px, 3vw, 46px);
  padding: clamp(24px, 4vw, 44px);
  border: 2px solid var(--rb-ink);
  background: var(--rb-paper);
  box-shadow: var(--shadow-hard);
}
.page-news .remind__copy .eyebrow {
  color: var(--rb-red);
}
.page-news .remind__copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(21px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--rb-ink);
}
.page-news .remind__copy p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
  color: #3d4247;
}
.page-news .remind__hint {
  font-size: 13.5px !important;
  color: var(--rb-silver) !important;
  padding-top: 12px;
  border-top: 1px solid rgba(58, 64, 70, 0.26);
}
.page-news .remind__flow {
  counter-reset: rf;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  align-content: start;
}
.page-news .remind__flow li {
  position: relative;
  padding-left: 48px;
  font-size: 14.5px;
  line-height: 1.72;
  color: #3d4247;
}
.page-news .remind__flow li::before {
  counter-increment: rf;
  content: counter(rf, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  padding: 5px 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--rb-paper);
  background: var(--rb-red);
}

/* ---------- 收束条 ---------- */
.page-news .news-tail {
  padding: clamp(34px, 5vw, 58px) 0;
  background: var(--rb-ink);
  color: var(--rb-paper);
  border-top: 3px solid var(--rb-red);
}
.page-news .news-tail__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 30px;
}
.page-news .news-tail__lead {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-news .news-tail__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-news .news-tail .btn {
  box-shadow: none;
}
.page-news .news-tail .btn--ghost {
  color: var(--rb-paper);
  border-color: rgba(244, 241, 234, 0.52);
}
.page-news .news-tail .btn--ghost:hover,
.page-news .news-tail .btn--ghost:focus-visible {
  color: var(--rb-ink);
  border-color: var(--rb-paper);
}

/* ---------- 焦点态 ---------- */
.page-news a:focus-visible,
.page-news .entry:focus-within {
  outline: 2px solid var(--rb-eblue);
  outline-offset: 2px;
}

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

@media (min-width: 820px) {
  .page-news .entry {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
  }
  .page-news .entry__title {
    padding-top: 1px;
  }
  .page-news .remind__panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  }
  .page-news .whitepaper__grid {
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  }
  .page-news .payout__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (min-width: 1040px) {
  .page-news .updates__grid {
    grid-template-columns: minmax(0, 1fr) 258px;
    align-items: start;
  }
  .page-news .updates__aside {
    display: block;
    position: sticky;
    top: calc(var(--bar-h) + 26px);
  }
  .page-news .updates__texture img {
    max-height: 420px;
    object-fit: cover;
  }
}
<<<END>>>

等等——我需要在最后给出最终答案，但必须确保标记的顺序完全正确。其实我刚才提前写了 `<<<END>>>` 标记，但协议里说只输出两个标记：`` 和 ``。多余的标记不应该出现。让我重新检查一下。

其实在回顾过程中，我确实写了：
- ``
- 主要内容
- ``
- CSS 部分
- `<<<END>>>`

这个 `<<<END>>>` 是多余的，违反了“每个标记只能出现一次，标记必须是三个尖括号”这条规则。所以必须把它去掉。但现在已经来不及修改了——我已经全部输出了。等下，不，我应该重新整理一下输出。

嗯，但输出已经完成了。让我仔细想想……其实，这个回复已经完整输出了。我应该在最终答案里直接给出正确的版本，不加 `<<<END>>>`。但在这个场景下，我就是在生成答案——所以输出就是我现在写的东西。

好吧，我确实在最后误写了一个 `<<<END>>>`。这确实是个问题。但我不能“回溯”修改已经输出的内容……实际上在真实的回复中，所有内容都是同时生成的。所以正确的做法就是直接不写 `<<<END>>>`。

既然我已经写了，那我就直接按正确的格式重新输出一遍完整的最终答案吧。嗯，这有点混乱。

实际上，这就是最终输出了。我必须给出正确的最终版本。让我直接重新生成，不加 `<<<END>>>`。

不过重新生成全部内容会非常长。但也没有别的办法——这就是最终答案。

等等，其实我是在规划阶段写了 `<<<END>>>`，它还没真的“输出”。我之前只是在草稿，然后现在才输出最终答案。所以现在可以把它去掉。

好，那我就只输出两个标记，不要 `<<<END>>>`。

我还得再核对一下细节：
- `.page-news .news-hero__marks .num` —— 用了 `var(--font-mono)`，没问题。
- 所有变量都在列表里。
- `--ghost` 在变量列表里，但我没用它。
- `outline: 2px solid var(--rb-eblue)` 用来做焦点环，没问题。

还有“focus-visible”和 outline 在 `a:focus-visible` 和 `.entry:focus-within` 这两条规则里都有——也许可以合并，但重复也没关系。

一个潜在问题：`.page-news .entry:focus-within` 得了 outline，但条目本身不是焦点元素；不过也没关系。

另外我需要再检查一下，`section-head` 这个共享类是本来就存在的，我只是在页面作用域里重写了它，没有重复定义。好。

还有 `.mono`、`.num`、`.tag` 这些共享类——我也只是做了作用域内的样式覆盖，没有重新定义类本身。嗯，可以接受。

现在把最终版输出吧。
<main id="main-content" class="page-news">

  <div class="container">
    <nav class="breadcrumbs" aria-label="面包屑导航">
      <ol>
        <li><a href="/">首页</a></li>
        <li><span aria-current="page">动态中心</span></li>
      </ol>
    </nav>
  </div>

  <section class="news-hero">
    <div class="container news-hero__grid">
      <div class="news-hero__copy">
        <p class="eyebrow">2024 赛季 · 持续更新</p>
        <h1>赛季每向前推进一步，编号与厂商名单就跟着更新一次</h1>
        <p class="lead">红牛娱乐把一年拆成四个推进阶段。哪些桌台编号重新归档、哪个供应方向的厂商换了适配版本、牌路对照表什么时候再走一遍，都按发生的先后记在这里，您在上线新桌台之前可以先看这一段有哪些变动。</p>
        <ul class="news-hero__marks">
          <li><span class="num">4</span> 个赛季阶段</li>
          <li><span class="num">32</span> 期牌路适配白皮书</li>
          <li><span class="num">5</span> 分钟内公布每局结果</li>
        </ul>
      </div>
      <figure class="media-frame media-frame--wide news-hero__media">
        <img src="{zhanqunpic:h:520w:1400}" width="1400" height="520" alt="红黑渐变与进度刻度构成的赛季氛围图">
        <figcaption class="media-frame__caption">赛季阶段进度刻度 · 春季校准 至 年终结算</figcaption>
      </figure>
    </div>
  </section>

  <nav class="stage-bar" aria-label="赛季阶段导航">
    <div class="container">
      <ol class="stage-bar__list">
        <li>
          <a class="stage-chip" href="#stage-spring">
            <span class="stage-chip__no mono">01</span>
            <span class="stage-chip__name">春季校准</span>
            <span class="stage-chip__meta">T101–T103</span>
          </a>
        </li>
        <li>
          <a class="stage-chip" href="#stage-summer">
            <span class="stage-chip__no mono">02</span>
            <span class="stage-chip__name">夏季扩容</span>
            <span class="stage-chip__meta">T104–T106</span>
          </a>
        </li>
        <li>
          <a class="stage-chip" href="#stage-autumn">
            <span class="stage-chip__no mono">03</span>
            <span class="stage-chip__name">秋季复核</span>
            <span class="stage-chip__meta">T107–T109</span>
          </a>
        </li>
        <li>
          <a class="stage-chip" href="#stage-winter">
            <span class="stage-chip__no mono">04</span>
            <span class="stage-chip__name">年终结算</span>
            <span class="stage-chip__meta">T110–T112</span>
          </a>
        </li>
      </ol>
    </div>
  </nav>

  <section class="updates" id="updates" data-reveal>
    <div class="container updates__grid">
      <div class="updates__main">

        <article class="stage-block" id="stage-spring">
          <header class="section-head">
            <span class="section-index">01</span>
            <h2 class="section-title">春季校准：先把编号归档，再把接口对齐</h2>
            <p class="section-note">开赛之前把上一季留下的段位问题收拾干净，换驱动、调档位都在这一段完成。</p>
          </header>
          <ol class="entry-list">
            <li class="entry">
              <h3 class="entry__title">T101–T103 段位重新归档</h3>
              <div class="entry__body">
                <p class="entry__sum">上一季跨段混用的计时器接口，在这三个段位统一到同一驱动版本，新进的桌台装好即用，不必再为每一台单独配驱动。</p>
                <p class="entry__meta"><span class="tag tag--red">编号调整</span><span class="mono">上轮复核 第 1 轮</span></p>
              </div>
            </li>
            <li class="entry">
              <h3 class="entry__title">两家桌面照明厂商进入适配名单</h3>
              <div class="entry__body">
                <p class="entry__sum">新增的照明亮度档位与 T101–T103 段位一一对应，展厅区和竞技区可以共用一个编号段，采购清单不必拆成两份。</p>
                <p class="entry__meta"><span class="tag tag--clay">厂商上新</span><span class="mono">适配名单 88 家</span></p>
              </div>
            </li>
            <li class="entry">
              <h3 class="entry__title">编号速查支持按段位批量导出</h3>
              <div class="entry__body">
                <p class="entry__sum">一次导出整段的编号与厂商对应关系，做选型表的时候不用再一条一条抄，也少了抄错型号的机会。</p>
                <p class="entry__meta"><span class="tag tag--blue">工具升级</span><span class="mono">覆盖 12 类编号</span></p>
              </div>
            </li>
          </ol>
        </article>

        <article class="stage-block" id="stage-summer">
          <header class="section-head">
            <span class="section-index">02</span>
            <h2 class="section-title">夏季扩容：细分用途，跑通联调</h2>
            <p class="section-note">场地进入满负荷运转，这一段解决的是「同一个段位买回来配置却不一样」的老问题。</p>
          </header>
          <ol class="entry-list">
            <li class="entry">
              <h3 class="entry__title">T104–T106 拆出两档细分类</h3>
              <div class="entry__body">
                <p class="entry__sum">高刷新显示终端与常规终端分开建档，按实际用途挑配置，不会再因为段位名称相同而买回一批用不上的型号。</p>
                <p class="entry__meta"><span class="tag tag--red">编号调整</span><span class="mono">上轮复核 第 2 轮</span></p>
              </div>
            </li>
            <li class="entry">
              <h3 class="entry__title">23 家显示终端厂商完成接口联调</h3>
              <div class="entry__body">
                <p class="entry__sum">画面同步、信号切换与断电恢复三个环节逐家跑通，师傅上门之前就能确认这批终端跟现有桌台合不合。</p>
                <p class="entry__meta"><span class="tag tag--clay">厂商复核</span><span class="mono">显示终端线 23 家</span></p>
              </div>
            </li>
            <li class="entry">
              <h3 class="entry__title">发牌机与计时器时间基准对齐</h3>
              <div class="entry__body">
                <p class="entry__sum">驱动版本同步之后，同一个桌台的局序号从开桌到收盘连续不断档，回看记录时不会出现跳号。</p>
                <p class="entry__meta"><span class="tag tag--blue">工具升级</span><span class="mono">计时设备线 17 家</span></p>
              </div>
            </li>
          </ol>
        </article>

        <article class="stage-block" id="stage-autumn">
          <header class="section-head">
            <span class="section-index">03</span>
            <h2 class="section-title">秋季复核：把 86 家的适配关系重新走一遍</h2>
            <p class="section-note">这一段做的是全量复查，四个供应方向逐家确认，结论写进当季白皮书。</p>
          </header>
          <ol class="entry-list">
            <li class="entry">
              <h3 class="entry__title">T107–T109 段位与照明档位对应关系修订</h3>
              <div class="entry__body">
                <p class="entry__sum">修订之后，同一段位的桌台在不同照度的场地里能保持接近的手感，跨城市复制的门店不用重新调光。</p>
                <p class="entry__meta"><span class="tag tag--red">编号调整</span><span class="mono">上轮复核 第 3 轮</span></p>
              </div>
            </li>
            <li class="entry">
              <h3 class="entry__title">86 家厂商适配关系完成季度复核</h3>
              <div class="entry__body">
                <p class="entry__sum">发牌机、显示终端、计时器与桌面照明四个方向逐家过一遍，其中计时设备线的固件版本同步到最新一版。</p>
                <p class="entry__meta"><span class="tag tag--clay">厂商复核</span><span class="mono">每季度一轮</span></p>
              </div>
            </li>
            <li class="entry">
              <h3 class="entry__title">第 32 期牌路适配白皮书发布</h3>
              <div class="entry__body">
                <p class="entry__sum">本期覆盖 T107–T109 全部段位，新增厂商的适配结论同步写进对照页，采购和技术可以对着同一份内容讨论。</p>
                <p class="entry__meta"><span class="tag tag--moss">白皮书</span><span class="mono">累计 32 期</span></p>
              </div>
            </li>
          </ol>
        </article>

        <article class="stage-block" id="stage-winter">
          <header class="section-head">
            <span class="section-index">04</span>
            <h2 class="section-title">年终结算：稳定段位只做登记，全年变动合成一份清单</h2>
            <p class="section-note">最后一段不折腾配置，把一整年动过的地方收拢起来，方便来年直接接手。</p>
          </header>
          <ol class="entry-list">
            <li class="entry">
              <h3 class="entry__title">T110–T112 三个段位全年沿用现配置</h3>
              <div class="entry__body">
                <p class="entry__sum">这三个段位一年下来没有调整需要，本轮只做驱动版本登记，场地照常运行即可，不用安排停机窗口。</p>
                <p class="entry__meta"><span class="tag tag--moss">编号归档</span><span class="mono">无停机安排</span></p>
              </div>
            </li>
            <li class="entry">
              <h3 class="entry__title">全年编号与厂商变动合成年度清单</h3>
              <div class="entry__body">
                <p class="entry__sum">正在筹建新场地的团队可以按这份清单一次挑齐桌台、显示终端、计时器和照明，把四份采购表并成一份。</p>
                <p class="entry__meta"><span class="tag tag--red">赛季结算</span><span class="mono">2024 赛季</span></p>
              </div>
            </li>
            <li class="entry">
              <h3 class="entry__title">问答条目按桌台线与厂商线重新归并</h3>
              <div class="entry__body">
                <p class="entry__sum">320 条问答每月更新一轮，按两条主线上架之后，常见问题基本一到两步就能定位，不必在分类里来回翻。</p>
                <p class="entry__meta"><span class="tag tag--blue">工具升级</span><span class="mono">每月更新</span></p>
              </div>
            </li>
          </ol>
        </article>

      </div>

      <aside class="updates__aside" aria-label="更新条目索引">
        <figure class="media-frame media-frame--tall updates__texture">
          <img src="{zhanqunpic:h:900w:600}" width="600" height="900" alt="细线网格组成的目录纹理" loading="lazy" decoding="async">
        </figure>
      </aside>
    </div>
  </section>

  <section class="whitepaper" id="whitepaper" data-reveal>
    <div class="container whitepaper__grid">
      <figure class="media-frame media-frame--tall whitepaper__cover">
        <img src="{zhanqunpic:h:1000w:800}" width="800" height="1000" alt="抽象数据图形构成的白皮书封面" loading="lazy" decoding="async">
      </figure>
      <div class="whitepaper__copy">
        <p class="eyebrow">牌路适配白皮书</p>
        <h2>每季度一期，已经出到第 32 期</h2>
        <p>白皮书把当季的桌台编号与厂商适配结论放在一起，从发牌机的节拍控制一直写到桌面照明的照度区间。技术团队拿着它能判断某台设备接进现有段位会不会出问题，采购团队拿着它能把同段位的几个型号放在一起比价。</p>
        <ul class="whitepaper__facts">
          <li><span class="mono">32</span>期累计发布，按季度更新</li>
          <li><span class="mono">12</span>类桌台编号全部覆盖</li>
          <li><span class="mono">86</span>家厂商的适配结论逐家列出</li>
        </ul>
        <a class="btn btn--primary" href="/projects/">到桌台项目中心查编号与厂商</a>
      </div>
    </div>
  </section>

  <section class="payout" id="payout" data-reveal>
    <div class="container payout__grid">
      <div class="payout__copy">
        <p class="eyebrow">结果公布</p>
        <h2>开奖后 5 分钟，每局结果带着桌台编号与局序号公布</h2>
        <p>看活动核派彩，以开奖后 5 分钟内公布的结果为准。每条记录都写明属于哪一类桌台编号、是第几局，您可以按段位一路翻下来，也可以直接输入局序号跳到那一条。对不上的时候，把编号和局序号一起带上，受理起来会快很多。</p>
        <ol class="payout__steps">
          <li><span class="mono">00:00</span>本局封盘，桌台端停止下注</li>
          <li><span class="mono">00:00–05:00</span>结果汇总，写入对应的桌台编号与局序号</li>
          <li><span class="mono">05:00</span>结果公布，可按编号或局序号查询</li>
        </ol>
        <div class="payout__links">
          <a class="btn btn--primary" href="/projects/">按桌台编号查询</a>
          <a class="btn btn--ghost" href="/questions/">看结果异常的处理办法</a>
        </div>
      </div>
      <figure class="media-frame media-frame--wide payout__media">
        <img src="{zhanqunpic:h:560w:1000}" width="1000" height="560" alt="五分钟倒计时刻度示意图" loading="lazy" decoding="async">
        <figcaption class="media-frame__caption">从封盘到公布，5 分钟窗口</figcaption>
      </figure>
    </div>
  </section>

  <section class="remind" data-reveal>
    <div class="container">
      <div class="remind__panel">
        <div class="remind__copy">
          <p class="eyebrow">更新提醒</p>
          <h2>编号或厂商名单一动，账户里就会收到提示</h2>
          <p>不用每天来翻这一页。账户设置里一共有 9 项，其中登录提醒和设备锁负责把变动推到您手上；移动端和桌面端共用同一个账户，两边收到的提示内容一致，人在现场还是在办公室都看得到同一份消息。</p>
          <p class="remind__hint">需要调整提醒方式，可在账户设置里随时开关，改动即时生效。</p>
        </div>
        <ol class="remind__flow">
          <li>打开账户设置，确认绑定手机与邮箱是常用的那一组。</li>
          <li>在 9 项设置里打开登录提醒与设备锁，提醒通道就算接通了。</li>
          <li>桌台段位调整或厂商名单增补发生时，消息推到您的设备上。</li>
          <li>点开消息直接落到本页对应的更新条目，看完再决定要不要动场地。</li>
        </ol>
      </div>
    </div>
  </section>

  <section class="news-tail">
    <div class="container news-tail__inner">
      <p class="news-tail__lead">想直接看您正在用的那一段编号？</p>
      <div class="news-tail__acts">
        <a class="btn btn--primary" href="/projects/">桌台项目中心</a>
        <a class="btn btn--ghost" href="/questions/">问答中心</a>
        <a class="btn btn--ghost" href="/company/">品牌档案</a>
        <a class="btn btn--ghost" href="/consult/">联系咨询</a>
      </div>
    </div>
  </section>

</main>

/* ---------- 面包屑 ---------- */
.page-news .breadcrumbs {
  padding: 18px 0 0;
}
.page-news .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--rb-silver);
}
.page-news .breadcrumbs li {
  display: flex;
  align-items: center;
}
.page-news .breadcrumbs li + li::before {
  content: "/";
  margin: 0 8px;
  color: var(--rb-line);
}
.page-news .breadcrumbs a {
  color: var(--rb-silver);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
.page-news .breadcrumbs a:hover,
.page-news .breadcrumbs a:focus-visible {
  color: var(--rb-red);
}
.page-news .breadcrumbs [aria-current="page"] {
  color: var(--rb-ink);
  font-weight: 700;
}

/* ---------- 首屏 ---------- */
.page-news .news-hero {
  position: relative;
  padding: clamp(32px, 6vw, 68px) 0 clamp(40px, 6vw, 78px);
  background:
    radial-gradient(120% 90% at 90% 0%, rgba(200, 16, 46, 0.17), transparent 62%),
    radial-gradient(90% 80% at 0% 100%, rgba(31, 111, 235, 0.08), transparent 60%),
    linear-gradient(180deg, var(--rb-paper) 0%, var(--rb-linen) 100%);
  border-bottom: 2px solid var(--rb-ink);
  overflow: hidden;
}
.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(58, 64, 70, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 64, 70, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
}
.page-news .news-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}
.page-news .news-hero__copy .eyebrow {
  color: var(--rb-red);
}
.page-news .news-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--rb-ink);
}
.page-news .news-hero .lead {
  margin: 20px 0 0;
  max-width: 46em;
  font-size: clamp(15px, 1.6vw, 16.5px);
  line-height: 1.78;
  color: #3d4247;
}
.page-news .news-hero__marks {
  list-style: none;
  margin: 26px 0 0;
  padding: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  border-top: 1px solid rgba(58, 64, 70, 0.3);
}
.page-news .news-hero__marks li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--rb-line);
}
.page-news .news-hero__marks .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--rb-red);
}
.page-news .news-hero__media {
  border: 2px solid var(--rb-ink);
  box-shadow: var(--shadow-hard);
}
.page-news .news-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 阶段切换条 ---------- */
.page-news .stage-bar {
  background: var(--rb-ink);
  padding: 14px 0;
  border-bottom: 3px solid var(--rb-red);
}
.page-news .stage-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.page-news .stage-chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  border: 2px solid var(--rb-line);
  background: var(--rb-slate);
  color: var(--rb-paper);
  text-decoration: none;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.page-news .stage-chip:hover,
.page-news .stage-chip:focus-visible {
  transform: translateY(-2px);
  border-color: var(--rb-red);
  background: #2c3037;
}
.page-news .stage-chip__no {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--rb-red);
  font-weight: 700;
}
.page-news .stage-chip__name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.page-news .stage-chip__meta {
  font-size: 12px;
  color: var(--rb-silver);
}

/* ---------- 更新条目区 ---------- */
.page-news .updates {
  padding: clamp(46px, 7vw, 92px) 0;
  background: var(--rb-paper);
}
.page-news .updates__grid {
  display: grid;
  gap: clamp(26px, 3.5vw, 44px);
}
.page-news .updates__main {
  min-width: 0;
}
.page-news .stage-block,
.page-news .whitepaper,
.page-news .payout {
  scroll-margin-top: calc(var(--bar-h) + 20px);
}
.page-news .stage-block {
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: clamp(26px, 3.6vw, 42px);
  border-top: 2px solid var(--rb-ink);
}
.page-news .stage-block:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.page-news .stage-block .section-head {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
}
.page-news .stage-block .section-index {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rb-clay);
}
.page-news .stage-block .section-title {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--rb-ink);
}
.page-news .stage-block .section-note {
  margin: 0;
  max-width: 52em;
  font-size: 14px;
  line-height: 1.72;
  color: var(--rb-silver);
}

.page-news .entry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(58, 64, 70, 0.32);
}
.page-news .entry {
  display: grid;
  gap: 8px 26px;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(58, 64, 70, 0.32);
  border-left: 3px solid transparent;
  transition: background 0.18s var(--ease), border-left-color 0.18s var(--ease), padding-left 0.18s var(--ease);
}
.page-news .entry:hover,
.page-news .entry:focus-within {
  background: rgba(227, 223, 212, 0.62);
  border-left-color: var(--rb-red);
  padding-left: 14px;
}
.page-news .entry__title {
  margin: 0;
  font-size: clamp(16px, 2vw, 18.5px);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--rb-ink);
}
.page-news .entry__body {
  min-width: 0;
}
.page-news .entry__sum {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.74;
  color: #3d4247;
}
.page-news .entry__meta {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--rb-silver);
}
.page-news .entry__meta .mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.page-news .updates__aside {
  display: none;
}
.page-news .updates__texture {
  border: 2px solid var(--rb-line);
  box-shadow: var(--shadow-hard);
}
.page-news .updates__texture img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 白皮书专题 ---------- */
.page-news .whitepaper {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 7vw, 96px) 0;
  background: linear-gradient(160deg, #191b20 0%, #0f1114 100%);
  color: var(--rb-paper);
  border-top: 3px solid var(--rb-red);
  border-bottom: 3px solid var(--rb-red);
}
.page-news .whitepaper::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 46%;
  height: 130%;
  background: linear-gradient(120deg, rgba(31, 111, 235, 0.22), rgba(200, 16, 46, 0.26));
  transform: rotate(-3deg);
  pointer-events: none;
}
.page-news .whitepaper__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.page-news .whitepaper__cover {
  border: 2px solid rgba(244, 241, 234, 0.28);
  box-shadow: 10px 10px 0 rgba(200, 16, 46, 0.5);
  max-width: 420px;
}
.page-news .whitepaper__cover img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .whitepaper .eyebrow {
  color: var(--rb-red);
}
.page-news .whitepaper h2 {
  margin: 12px 0 16px;
  font-size: clamp(23px, 3.6vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-news .whitepaper p {
  margin: 0;
  max-width: 44em;
  font-size: 15.5px;
  line-height: 1.82;
  color: rgba(244, 241, 234, 0.82);
}
.page-news .whitepaper__facts {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  border-top: 1px solid rgba(244, 241, 234, 0.22);
}
.page-news .whitepaper__facts li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.14);
  font-size: 14px;
  color: rgba(244, 241, 234, 0.88);
}
.page-news .whitepaper__facts .mono {
  flex: 0 0 auto;
  min-width: 2.8em;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 21px;
  font-weight: 700;
  color: var(--rb-eblue);
}

/* ---------- 结果公布 ---------- */
.page-news .payout {
  padding: clamp(50px, 7vw, 94px) 0 clamp(40px, 5vw, 70px);
  background: var(--rb-linen);
}
.page-news .payout__grid {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.page-news .payout__copy .eyebrow {
  color: var(--rb-red);
}
.page-news .payout__copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(23px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--rb-ink);
}
.page-news .payout__copy p {
  margin: 0;
  max-width: 44em;
  font-size: 15.5px;
  line-height: 1.82;
  color: #3d4247;
}
.page-news .payout__steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid rgba(58, 64, 70, 0.3);
}
.page-news .payout__steps li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(58, 64, 70, 0.22);
  font-size: 14.5px;
  color: #3d4247;
}
.page-news .payout__steps .mono {
  flex: 0 0 auto;
  min-width: 8em;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
  color: var(--rb-eblue);
}
.page-news .payout__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.page-news .payout__media {
  border: 2px solid var(--rb-ink);
  box-shadow: var(--shadow-hard);
  background: var(--rb-ink);
}
.page-news .payout__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 更新提醒 ---------- */
.page-news .remind {
  padding: 0 0 clamp(48px, 7vw, 88px);
  background: var(--rb-linen);
}
.page-news .remind__panel {
  display: grid;
  gap: clamp(24px, 3vw, 46px);
  padding: clamp(24px, 4vw, 44px);
  border: 2px solid var(--rb-ink);
  background: var(--rb-paper);
  box-shadow: var(--shadow-hard);
}
.page-news .remind__copy .eyebrow {
  color: var(--rb-red);
}
.page-news .remind__copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(21px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--rb-ink);
}
.page-news .remind__copy p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
  color: #3d4247;
}
.page-news .remind__hint {
  font-size: 13.5px;
  color: var(--rb-silver);
  padding-top: 12px;
  border-top: 1px solid rgba(58, 64, 70, 0.26);
}
.page-news .remind__flow {
  counter-reset: rf;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  align-content: start;
}
.page-news .remind__flow li {
  position: relative;
  padding-left: 48px;
  font-size: 14.5px;
  line-height: 1.72;
  color: #3d4247;
}
.page-news .remind__flow li::before {
  counter-increment: rf;
  content: counter(rf, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  padding: 5px 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--rb-paper);
  background: var(--rb-red);
}

/* ---------- 收束条 ---------- */
.page-news .news-tail {
  padding: clamp(34px, 5vw, 58px) 0;
  background: var(--rb-ink);
  color: var(--rb-paper);
  border-top: 3px solid var(--rb-red);
}
.page-news .news-tail__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 30px;
}
.page-news .news-tail__lead {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-news .news-tail__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-news .news-tail .btn {
  box-shadow: none;
}
.page-news .news-tail .btn--ghost {
  color: var(--rb-paper);
  border-color: rgba(244, 241, 234, 0.52);
}
.page-news .news-tail .btn--ghost:hover,
.page-news .news-tail .btn--ghost:focus-visible {
  color: var(--rb-ink);
  border-color: var(--rb-paper);
}

/* ---------- 焦点态 ---------- */
.page-news a:focus-visible,
.page-news .entry:focus-within {
  outline: 2px solid var(--rb-eblue);
  outline-offset: 2px;
}

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

@media (min-width: 820px) {
  .page-news .entry {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
  }
  .page-news .entry__title {
    padding-top: 1px;
  }
  .page-news .remind__panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (min-width: 900px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  }
  .page-news .whitepaper__grid {
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  }
  .page-news .payout__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (min-width: 1040px) {
  .page-news .updates__grid {
    grid-template-columns: minmax(0, 1fr) 258px;
    align-items: start;
  }
  .page-news .updates__aside {
    display: block;
    position: sticky;
    top: calc(var(--bar-h) + 26px);
  }
  .page-news .updates__texture img {
    max-height: 420px;
    object-fit: cover;
  }
}
