.page-news {
  display: block;
  padding-bottom: 4.5rem;
  background-color: var(--paper);
  background-image:
    linear-gradient(115deg, rgba(187, 215, 230, 0.55) 0%, rgba(247, 241, 230, 0) 48%),
    linear-gradient(295deg, rgba(158, 43, 43, 0.10) 0%, rgba(240, 192, 112, 0.14) 42%, rgba(247, 241, 230, 0) 72%);
  background-repeat: no-repeat;
  background-size: 100% 740px, 100% 740px;
  overflow-x: clip;
}

.page-news img {
  max-width: 100%;
  height: auto;
}

.page-news .breadcrumb {
  margin: 1.25rem 0 1.75rem;
  font-size: 0.875rem;
}

/* ---------- Hero ---------- */

.page-news .news-hero {
  padding: 0 0 2.25rem;
  border-bottom: var(--edge) solid var(--ink);
}

.page-news .news-hero .eyebrow {
  margin: 0 0 0.5rem;
}

.page-news .news-hero h1 {
  margin: 0 0 1rem;
  max-width: 17ch;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.1rem, 7.2vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-news .news-lede {
  margin: 0 0 1.75rem;
  max-width: 60ch;
  font-size: clamp(1rem, 2.2vw, 1.0625rem);
  line-height: 1.85;
  color: #3a3c40;
}

.page-news .news-glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 2px dashed rgba(22, 50, 79, 0.28);
}

.page-news .news-glance li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.page-news .news-glance b {
  font-family: var(--font-num);
  font-size: clamp(1.6rem, 4.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--red);
}

.page-news .news-glance span {
  font-size: 0.875rem;
  color: var(--stone);
}

/* ---------- 区块通用 ---------- */

.page-news .news-block {
  margin-top: 3.25rem;
}

.page-news .section-sub {
  margin: -0.75rem 0 1.75rem;
  max-width: 56ch;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--stone);
}

/* ---------- 置顶三条 ---------- */

.page-news .top-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

.page-news .top-cards {
  display: grid;
  gap: 1.5rem;
}

.page-news .top-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  min-height: 8rem;
  background: var(--card);
  border: var(--edge) solid var(--ink);
  box-shadow: var(--shadow-hard);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-news .top-card:hover {
  box-shadow: var(--shadow-mid);
  transform: translate(2px, 2px);
}

.page-news .top-num {
  position: absolute;
  left: 1.35rem;
  top: 1.55rem;
  font-family: var(--font-num);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  text-shadow: 2px 2px 0 var(--ink);
}

.page-news .top-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  line-height: 1.4;
  color: var(--indigo);
}

.page-news .top-card p {
  margin: 0;
  font-size: 0.9688rem;
  line-height: 1.8;
  color: #3a3c40;
}

/* ---------- 图片 ---------- */

.page-news .figure {
  margin: 0;
}

.page-news .figure-img,
.page-news .figure img {
  display: block;
  width: 100%;
  border: var(--edge) solid var(--ink);
  box-shadow: var(--shadow-hard);
  object-fit: cover;
  background: linear-gradient(140deg, var(--sky), var(--butter));
}

.page-news .figure-cap {
  margin: 0.7rem 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--stone);
}

.page-news .top-figure {
  max-width: 22rem;
}

.page-news .top-figure img {
  aspect-ratio: 4 / 5;
}

.page-news .cat-figure img {
  aspect-ratio: 1 / 1;
}

.page-news .news-strip {
  margin: 0 0 2rem;
}

.page-news .news-strip img {
  aspect-ratio: 8 / 3;
}

.page-news .archive-figure img {
  aspect-ratio: 3 / 2;
}

/* ---------- 按栏目翻看 ---------- */

.page-news .cat-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

.page-news .filter-preview {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: var(--edge) solid var(--indigo);
  box-shadow: var(--shadow-indigo);
}

.page-news .filter-hint {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--indigo);
}

.page-news .filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-news .filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  background: var(--card);
  border: 2px solid var(--indigo);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--indigo);
  cursor: pointer;
  user-select: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.page-news .filter-chip input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--red);
}

.page-news .filter-chip:hover {
  border-color: var(--gold);
}

.page-news .filter-chip:has(input:checked) {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--butter);
}

.page-news .filter-result {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--stone);
}

.page-news .filter-count {
  font-family: var(--font-num);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
}

.page-news .filter-preview .note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--stone);
}

/* ---------- 条目列表 ---------- */

.page-news .entry-list {
  display: grid;
  gap: 1.125rem;
}

.page-news .entry-card {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  background: var(--card);
  border: 2px solid var(--ink);
  border-left: 8px solid var(--red);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-news .entry-card:hover {
  box-shadow: var(--shadow-indigo);
}

.page-news .entry-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.page-news .entry-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--indigo);
  color: var(--butter);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.page-news .entry-ver {
  margin-left: auto;
  font-family: var(--font-num);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.page-news .entry-title {
  margin: 0;
  font-size: 1rem;
}

.page-news .entry-trigger {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.page-news .entry-headline {
  flex: 1 1 auto;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  line-height: 1.5;
  color: var(--indigo);
  transition: color 0.18s ease;
}

.page-news .entry-trigger:hover .entry-headline {
  color: var(--red);
}

.page-news .entry-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.15rem;
  background: var(--butter);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.page-news .accordion-item[data-open] > .entry-title .entry-mark,
.page-news .accordion-item[data-open] > .archive-title .entry-mark {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--paper);
}

.page-news .entry-scope {
  margin: 0.7rem 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--stone);
}

.page-news .entry-scope b {
  margin-right: 0.4rem;
  font-weight: 500;
  color: var(--indigo);
}

.page-news .entry-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 2px dashed rgba(22, 50, 79, 0.28);
  border-top-width: 0;
  font-size: 0.9688rem;
  line-height: 1.85;
  color: #3a3c40;
  transition: max-height 0.32s ease, opacity 0.26s ease, margin-top 0.32s ease,
    padding-top 0.32s ease, border-top-width 0.32s ease;
}

.page-news .entry-card[data-open] > .entry-panel {
  max-height: 40rem;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top-width: 2px;
}

.page-news .entry-panel p {
  margin: 0 0 0.75rem;
}

.page-news .entry-panel p:last-child {
  margin-bottom: 0;
}

/* ---------- 判断影响 ---------- */

.page-news .check-grid {
  gap: 1.25rem;
}

.page-news .check-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem;
  background: var(--card);
  border: 2px solid var(--indigo);
  box-shadow: var(--shadow-indigo);
}

.page-news .check-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--indigo);
}

.page-news .check-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #3a3c40;
}

/* ---------- 值得定期看 ---------- */

.page-news .watch-grid {
  gap: 1.25rem;
}

.page-news .watch-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.4rem;
  background: var(--card);
  border: 2px solid var(--ink);
  border-left: 8px solid var(--red);
}

.page-news .watch-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--indigo);
}

.page-news .watch-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #3a3c40;
}

.page-news .watch-card .entry-tag {
  align-self: flex-start;
}

.page-news .watch-card--soft {
  background: rgba(187, 215, 230, 0.28);
  border-color: rgba(110, 106, 99, 0.55);
  border-left-color: rgba(110, 106, 99, 0.55);
}

.page-news .watch-card--soft .entry-tag {
  background: rgba(22, 50, 79, 0.62);
  color: var(--paper);
}

.page-news .watch-card--soft h3 {
  color: #4a4740;
}

/* ---------- 归档 ---------- */

.page-news .archive-block {
  padding-top: 2.25rem;
  border-top: 2px dashed rgba(22, 50, 79, 0.28);
}

.page-news .archive-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

.page-news .archive-text p {
  margin: 0 0 1rem;
  max-width: 58ch;
  font-size: 0.9688rem;
  line-height: 1.85;
  color: var(--stone);
}

.page-news .archive-accordion {
  margin: 1.25rem 0;
}

.page-news .archive-item {
  background: rgba(247, 241, 230, 0.75);
  border: 2px solid rgba(110, 106, 99, 0.45);
  border-left: 8px solid rgba(110, 106, 99, 0.4);
  padding: 1rem 1.15rem;
}

.page-news .archive-title {
  margin: 0;
  font-size: 1rem;
}

.page-news .archive-trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #4a4740;
}

.page-news .archive-trigger > span:first-child {
  flex: 1 1 auto;
}

.page-news .archive-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 2px dashed rgba(110, 106, 99, 0.35);
  border-top-width: 0;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--stone);
  transition: max-height 0.32s ease, opacity 0.26s ease, margin-top 0.32s ease,
    padding-top 0.32s ease, border-top-width 0.32s ease;
}

.page-news .archive-item[data-open] > .archive-panel {
  max-height: 30rem;
  opacity: 1;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top-width: 2px;
}

.page-news .archive-panel p {
  margin: 0 0 0.75rem;
}

.page-news .archive-panel p:last-child {
  margin-bottom: 0;
}

.page-news .archive-link-line {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #3a3c40;
}

.page-news .archive-link-line a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.page-news .archive-link-line a:hover {
  color: var(--indigo);
}

/* ---------- 响应式 ---------- */

@media (min-width: 700px) {
  .page-news .news-hero {
    padding-bottom: 2.75rem;
  }

  .page-news .entry-card {
    padding: 1.5rem 1.75rem 1.5rem 2rem;
  }

  .page-news .top-card {
    padding: 1.75rem 1.75rem 1.75rem 4.75rem;
  }
}

@media (min-width: 900px) {
  .page-news {
    background-size: 100% 860px, 100% 860px;
  }

  .page-news .top-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 2.25rem;
  }

  .page-news .top-figure {
    max-width: none;
    position: sticky;
    top: 2rem;
  }

  .page-news .cat-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 2.25rem;
  }

  .page-news .archive-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 2.25rem;
  }

  .page-news .news-block {
    margin-top: 4rem;
  }

  .page-news .entry-list {
    gap: 1.35rem;
  }
}

@media (min-width: 1100px) {
  .page-news .news-hero h1 {
    max-width: 15ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .top-card,
  .page-news .entry-card,
  .page-news .entry-mark,
  .page-news .entry-headline,
  .page-news .entry-panel,
  .page-news .archive-panel,
  .page-news .filter-chip {
    transition: none;
  }
}
