.page-news {
  --entry-gap: 22px;
  --dot-size: 8px;
  display: block;
}

/* ---------- 栏目头 ---------- */
.page-news .news-head {
  padding-block: clamp(28px, 5vw, 52px) clamp(44px, 6vw, 72px);
}
.page-news .news-head .kicker {
  margin-bottom: 10px;
}
.page-news .news-head h1 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--graphite);
  max-width: 16ch;
}
.page-news .news-head .lead {
  max-width: 58ch;
  margin: 0;
}
.page-news .news-head__figure {
  margin: clamp(26px, 4vw, 40px) 0 0;
}
.page-news .news-head__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* 七格节奏条 */
.page-news .news-beat {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-top: 18px;
}
.page-news .news-beat__cell {
  display: block;
  height: 12px;
  border-radius: 6px;
  background: var(--cloth);
  opacity: 0.75;
}
.page-news .news-beat__cell:nth-child(even) {
  opacity: 0.5;
}
.page-news .news-beat__cell--now {
  background: var(--chip);
  opacity: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-news .news-beat__now {
  position: absolute;
  top: 16px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--chip);
  white-space: nowrap;
}

/* ---------- 本期与上一期 ---------- */
.page-news .news-now {
  padding-top: clamp(48px, 7vw, 72px);
}
.page-news .now-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.page-news .now-card {
  background: var(--paper);
  border: var(--frame);
  border-radius: var(--r-b);
  padding: 24px 22px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.page-news .now-card--current {
  border-radius: var(--r-a);
  border-left: 6px solid var(--chip);
  background: var(--paper);
}
.page-news .now-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8, 16, 14, 0.1);
}
.page-news .now-card__flag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}
.page-news .now-card__stamp {
  font-size: 12px;
  color: var(--fog);
}
.page-news .now-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--graphite);
}
.page-news .now-card__sum {
  margin: 0 0 12px;
  color: var(--graphite);
  line-height: 1.75;
  max-width: 52ch;
}
.page-news .now-card__meta {
  margin: 0;
}

/* ---------- 条目列表 ---------- */
.page-news .filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 14px 16px;
  background: var(--sand);
  border-radius: var(--r-a);
}
.page-news .news-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-news .filter-chip {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--graphite);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.page-news .filter-chip:hover {
  border-color: var(--chip);
  color: var(--chip);
}
.page-news .filter-chip.is-active {
  background: var(--chip);
  border-color: var(--chip);
  color: var(--paper);
}
.page-news .news-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.page-news .news-search__label {
  font-size: 13px;
  color: var(--fog);
  white-space: nowrap;
}
.page-news .filter-input {
  border: 1px solid var(--fog);
  border-radius: 999px;
  background: var(--paper);
  padding: 6px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--graphite);
  min-width: 190px;
}
.page-news .filter-input:focus-visible {
  outline: 2px solid var(--chip);
  outline-offset: 2px;
}
.page-news .filter-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fog);
  white-space: nowrap;
}

.page-news .entry-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .entry-list::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(180deg, var(--cloth), var(--sand));
}
.page-news .entry {
  position: relative;
  padding-left: 36px;
  margin-bottom: var(--entry-gap);
}
.page-news .entry__dot {
  position: absolute;
  left: 8px;
  top: 8px;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--paper);
  transition: background-color 200ms var(--ease);
}
.page-news .entry:hover .entry__dot,
.page-news .entry:focus-within .entry__dot {
  background: var(--chip);
}
.page-news .entry__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.page-news .entry__time {
  font-size: 12px;
  color: var(--fog);
  text-align: right;
  white-space: nowrap;
}
.page-news .entry__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--graphite);
  border-bottom: 1px solid transparent;
  display: inline-block;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.page-news .entry:hover .entry__title {
  color: var(--table);
  border-bottom-color: var(--chip);
}
.page-news .entry__sum {
  margin: 0;
  color: var(--graphite);
  line-height: 1.7;
  max-width: 60ch;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 200ms var(--ease);
}
.page-news .entry:hover .entry__sum,
.page-news .entry:focus-within .entry__sum {
  -webkit-line-clamp: 2;
}
.page-news .entry:nth-child(3n)::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 20px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--chip) 0%, rgba(232, 114, 43, 0.05) 70%, transparent 100%);
}
.page-news .entry.is-hidden {
  display: none;
}

/* ---------- 教程系列 ---------- */
.page-news .news-tutorial .news-sec-head {
  display: grid;
  gap: 24px;
}
.page-news .news-sec-fig {
  margin: 0;
}
.page-news .news-sec-fig img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .news-sec-lead {
  max-width: 56ch;
  margin: 10px 0 0;
}
.page-news .tuto-grid {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.page-news .tuto-stage {
  background: rgba(247, 245, 239, 0.94);
  border-radius: var(--r-b);
  padding: 24px 22px;
  border: 1px solid rgba(216, 169, 75, 0.5);
}
.page-news .tuto-stage:nth-child(2) {
  border-radius: var(--r-a);
  background: var(--sand);
}
.page-news .tuto-stage__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--chip);
  margin: 0 0 6px;
  display: block;
}
.page-news .tuto-stage h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--graphite);
}
.page-news .tuto-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .tuto-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  line-height: 1.65;
  color: var(--graphite);
}
.page-news .tuto-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.page-news .tuto-list a {
  color: var(--table);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.page-news .tuto-list a:hover {
  border-bottom-color: var(--chip);
  color: var(--chip);
}

/* ---------- 更新日志 ---------- */
.page-news .news-log {
  color: var(--paper);
}
.page-news .news-log h2 {
  color: var(--paper);
}
.page-news .news-log .section-number {
  color: var(--gold);
}
.page-news .log-wrap {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}
.page-news .log-item {
  background: rgba(247, 245, 239, 0.06);
  border: 1px solid rgba(216, 169, 75, 0.45);
  border-radius: var(--r-a);
  padding: 4px 18px;
  margin-bottom: 14px;
}
.page-news .log-item[open] {
  border-left: 4px solid var(--chip);
}
.page-news .log-item .fold__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  cursor: pointer;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  list-style: none;
}
.page-news .log-item .fold__summary::-webkit-details-marker {
  display: none;
}
.page-news .log-item .fold__summary::after {
  content: "＋";
  margin-left: auto;
  color: var(--gold);
  font-family: var(--font-mono);
}
.page-news .log-item[open] .fold__summary::after {
  content: "－";
  color: var(--chip);
}
.page-news .log-item__ver {
  color: var(--chip);
  font-size: 15px;
}
.page-news .log-item__name {
  flex: 1 1 auto;
}
.page-news .log-item__time {
  font-size: 12px;
  color: rgba(247, 245, 239, 0.6);
  white-space: nowrap;
}
.page-news .log-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.page-news .log-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.7;
  color: rgba(247, 245, 239, 0.88);
}
.page-news .log-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 2px;
  background: var(--gold);
}
.page-news .log-fig {
  margin: 0;
  align-self: start;
}
.page-news .log-fig img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .log-fig .img-frame__caption {
  color: rgba(247, 245, 239, 0.6);
}

/* ---------- 编辑手记与赛事观察 ---------- */
.page-news .notes-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.page-news .note-card {
  background: var(--paper);
  padding: 26px 24px;
  border-radius: var(--r-b);
  border: var(--frame);
}
.page-news .note-card--watch {
  border-radius: var(--r-a);
  background: var(--sand);
  border-color: rgba(14, 59, 50, 0.35);
}
.page-news .note-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  margin: 14px 0 12px;
  color: var(--graphite);
}
.page-news .note-card p {
  margin: 0 0 12px;
  line-height: 1.75;
  color: var(--graphite);
  max-width: 54ch;
}
.page-news .note-card .meta {
  margin: 0;
}
.page-news .note-fig {
  margin: 0;
}
.page-news .note-fig img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- 怎么追这个栏目 ---------- */
.page-news .follow-grid {
  display: grid;
  gap: 26px;
  margin-top: 30px;
}
.page-news .follow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}
.page-news .follow-steps li {
  position: relative;
  padding: 0 0 20px 52px;
  color: var(--graphite);
  line-height: 1.7;
}
.page-news .follow-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(216, 169, 75, 0.15));
}
.page-news .follow-steps__num {
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--table);
  color: var(--gold);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-news .follow-steps strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--graphite);
  margin-bottom: 4px;
}
.page-news .follow-steps a {
  color: var(--table);
  border-bottom: 1px solid var(--chip);
  text-decoration: none;
}
.page-news .follow-steps a:hover {
  color: var(--chip);
}
.page-news .follow-aside {
  background: var(--paper);
  border-radius: var(--r-b);
  padding: 24px 22px;
  border: 1px dashed rgba(14, 59, 50, 0.4);
}
.page-news .follow-aside__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--graphite);
}
.page-news .follow-aside p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--graphite);
}
.page-news .follow-links {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.page-news .follow-links li {
  margin-bottom: 10px;
}
.page-news .follow-links a {
  color: var(--table);
  text-decoration: none;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  display: inline-block;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.page-news .follow-links a:hover,
.page-news .follow-links a:focus-visible {
  border-left-color: var(--chip);
  color: var(--chip);
}

/* ---------- 焦点可见性 ---------- */
.page-news a:focus-visible,
.page-news button:focus-visible,
.page-news summary:focus-visible,
.page-news input:focus-visible {
  outline: 2px solid var(--chip);
  outline-offset: 2px;
}

/* ---------- 响应式 ---------- */
@media (min-width: 720px) {
  .page-news .now-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .page-news .tuto-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-news .entry__sum {
    -webkit-line-clamp: 1;
  }
}

@media (max-width: 719px) {
  .page-news .entry__sum {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }
  .page-news .filter-bar {
    align-items: stretch;
  }
  .page-news .news-search {
    margin-left: 0;
    width: 100%;
  }
  .page-news .filter-input {
    flex: 1 1 auto;
    min-width: 0;
  }
  .page-news .news-search__label {
    display: none;
  }
}

@media (min-width: 900px) {
  .page-news .news-sec-head {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: end;
    gap: 32px;
  }
  .page-news .log-wrap {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
  }
  .page-news .notes-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
  .page-news .note-card--watch {
    grid-column: 1 / -1;
  }
  .page-news .follow-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

@media (min-width: 1080px) {
  .page-news .log-fig {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .now-card,
  .page-news .entry__dot,
  .page-news .entry__title,
  .page-news .entry__sum,
  .page-news .follow-links a {
    transition: none;
  }
  .page-news .now-card:hover {
    transform: none;
  }
}
<<<END>>>
