.page-news-notice {
  background: var(--color-surface);
}

.page-news-notice .notice-container {
  padding-top: var(--space-4);
  padding-bottom: var(--space-8);
}

/* ---------- 面包屑 ---------- */
.page-news-notice .notice-crumb {
  padding: var(--space-3) 0 var(--space-4);
  border-bottom: 1px dotted var(--color-line);
}

.page-news-notice .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-1) var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}

.page-news-notice .breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.page-news-notice .breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: var(--color-line);
}

.page-news-notice .breadcrumb__item a {
  color: var(--color-ink-muted);
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: color 160ms linear, border-color 160ms linear;
}

.page-news-notice .breadcrumb__item a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.page-news-notice .breadcrumb__item a:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

.page-news-notice .breadcrumb__item[aria-current="page"] {
  color: var(--color-ink);
}

/* ---------- 页头 ---------- */
.page-news-notice .notice-head {
  padding: var(--space-6) 0 var(--space-6);
}

.page-news-notice .notice-head__coord {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}

.page-news-notice .notice-head__coord::before {
  content: "";
  flex: none;
  width: var(--space-4);
  height: 1px;
  background: var(--color-primary);
}

.page-news-notice .notice-head__title {
  margin: var(--space-3) 0 var(--space-3);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: var(--text-3xl);
  line-height: var(--leading-heading);
  letter-spacing: 0.05em;
  color: var(--color-ink);
  max-width: 26ch;
}

.page-news-notice .notice-head__lede {
  margin: 0;
  max-width: var(--measure);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

/* ---------- 页头数字条 ---------- */
.page-news-notice .notice-facts {
  display: grid;
  grid-template-columns: 1fr;
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px dotted var(--color-line);
}

.page-news-notice .notice-facts__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-1) var(--space-2);
  padding: var(--space-3) 0;
  border-bottom: 1px dotted var(--color-line);
}

.page-news-notice .notice-facts__num {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}

.page-news-notice .notice-facts__label {
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  color: var(--color-ink);
}

.page-news-notice .notice-facts__note {
  flex: 1 1 100%;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}

/* ---------- 章节跳转 ---------- */
.page-news-notice .notice-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-1) var(--space-2);
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px dotted var(--color-line);
}

.page-news-notice .notice-toc__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}

.page-news-notice .notice-toc__link {
  display: inline-block;
  padding: calc(var(--space-1) / 2) var(--space-2);
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-ink-soft);
  text-decoration: none;
  transition: border-color 160ms linear, color 160ms linear, background-color 160ms linear;
}

.page-news-notice .notice-toc__link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.page-news-notice .notice-toc__link:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

/* ---------- 图片容器 ---------- */
.page-news-notice .notice-hero {
  margin: 0 0 var(--space-8);
}

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

.page-news-notice .notice-figure {
  margin: var(--space-6) 0 0;
}

.page-news-notice .notice-split__figure {
  margin: 0;
}

/* ---------- 区块 ---------- */
.page-news-notice .notice-section {
  padding-top: var(--space-8);
  border-top: 1px dotted var(--color-line);
  scroll-margin-top: 96px;
}

.page-news-notice .notice-section + .notice-section {
  margin-top: var(--space-8);
}

.page-news-notice .section-head__title {
  font-size: var(--text-2xl);
  line-height: var(--leading-heading);
  letter-spacing: 0.04em;
  color: var(--color-ink);
}

.page-news-notice .notice-body {
  max-width: var(--measure);
}

.page-news-notice .notice-body p {
  margin: 0 0 var(--space-3);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink);
}

.page-news-notice .notice-body p:last-child {
  margin-bottom: 0;
}

.page-news-notice .notice-body__lead {
  margin: 0 0 var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

.page-news-notice .notice-body__foot {
  max-width: var(--measure);
  margin: var(--space-4) 0 0;
  padding-left: var(--space-3);
  border-left: 2px solid var(--color-accent);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

/* ---------- A1 覆盖范围对比 ---------- */
.page-news-notice .notice-scope {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.page-news-notice .notice-scope__col {
  padding: var(--space-4);
  background: var(--color-primary-soft);
  border-left: 2px solid var(--color-primary);
}

.page-news-notice .notice-scope__col--muted {
  background: var(--color-surface-alt);
  border-left: 2px solid var(--color-line);
}

.page-news-notice .notice-scope__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}

.page-news-notice .notice-scope__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news-notice .notice-scope__list li {
  position: relative;
  padding-left: var(--space-3);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--color-ink);
}

.page-news-notice .notice-scope__list li:last-child {
  margin-bottom: 0;
}

.page-news-notice .notice-scope__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--space-2) + 2px);
  width: var(--space-1);
  height: 1px;
  background: var(--color-primary);
}

.page-news-notice .notice-scope__col--muted .notice-scope__list li::before {
  background: var(--color-ink-muted);
}

/* ---------- A2 索引表 ---------- */
.page-news-notice .notice-table {
  margin-top: var(--space-4);
  border: 1px solid var(--color-line);
}

.page-news-notice .notice-table__caption {
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px dotted var(--color-line);
  background: var(--color-surface-deep);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
  text-align: left;
}

.page-news-notice .notice-table .index-table {
  min-width: 720px;
  width: 100%;
  border-collapse: collapse;
}

.page-news-notice .notice-table th,
.page-news-notice .notice-table td {
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px dotted var(--color-line);
  text-align: left;
  vertical-align: top;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.page-news-notice .notice-table thead th {
  background: var(--color-surface-deep);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
  white-space: nowrap;
}

.page-news-notice .notice-table tbody th {
  font-weight: var(--weight-heading);
  color: var(--color-ink);
  white-space: nowrap;
}

.page-news-notice .notice-table tbody td {
  color: var(--color-ink-soft);
}

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

.page-news-notice .notice-table tbody td:first-child {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

/* ---------- A3 两栏 ---------- */
.page-news-notice .notice-split {
  align-items: start;
  row-gap: var(--space-6);
}

.page-news-notice .notice-phases {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px dotted var(--color-line);
}

.page-news-notice .notice-phases__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px dotted var(--color-line);
}

.page-news-notice .notice-phases__no {
  padding-top: calc(var(--space-1) / 2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.page-news-notice .notice-phases__name {
  margin: 0 0 calc(var(--space-1) / 2);
  font-size: var(--text-base);
  font-weight: var(--weight-heading);
  letter-spacing: 0.06em;
  color: var(--color-ink);
}

.page-news-notice .notice-phases__text p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

/* ---------- A4 回退步骤 ---------- */
.page-news-notice .notice-steps {
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: nnstep;
}

.page-news-notice .notice-steps__item {
  position: relative;
  counter-increment: nnstep;
  padding-left: var(--space-8);
  margin-bottom: var(--space-4);
}

.page-news-notice .notice-steps__item:last-child {
  margin-bottom: 0;
}

.page-news-notice .notice-steps__no {
  position: absolute;
  left: 0;
  top: 0;
  padding: calc(var(--space-1) / 2) var(--space-1);
  border: 1px solid var(--color-accent);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-accent);
  white-space: nowrap;
}

.page-news-notice .notice-steps__text {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink);
}

/* ---------- 深色结论块 ---------- */
.page-news-notice .notice-conclusion {
  margin-top: var(--space-8);
  padding: var(--space-6) var(--space-4);
  background: var(--color-contrast-surface);
  border: 1px solid var(--color-contrast-line);
  color: var(--color-contrast-ink);
}

.page-news-notice .notice-conclusion__coord {
  margin: 0 0 var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-contrast-accent);
}

.page-news-notice .notice-conclusion__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-heading);
  line-height: var(--leading-heading);
  letter-spacing: 0.04em;
  color: var(--color-contrast-ink);
}

.page-news-notice .notice-conclusion__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news-notice .notice-conclusion__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
  padding: var(--space-3) 0;
  border-top: 1px dotted var(--color-contrast-line);
}

.page-news-notice .notice-conclusion__desc {
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--color-contrast-ink);
}

.page-news-notice .notice-conclusion__link {
  display: inline-block;
  margin-top: var(--space-4);
  padding-bottom: calc(var(--space-1) / 4);
  border-bottom: 1px dotted var(--color-contrast-accent);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-contrast-accent);
  text-decoration: none;
}

.page-news-notice .notice-conclusion__link:hover {
  border-bottom-style: solid;
}

.page-news-notice .notice-conclusion__link:focus-visible {
  outline: 2px solid var(--color-contrast-accent);
  outline-offset: 3px;
}

/* ---------- 状态条 ---------- */
.page-news-notice .notice-state {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  flex: none;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  color: var(--color-ink-muted);
}

.page-news-notice .notice-state::before {
  content: "";
  flex: none;
  width: var(--space-3);
  height: 5px;
  background: var(--color-accent);
}

.page-news-notice .notice-state--active {
  color: var(--color-accent);
}

.page-news-notice .notice-state--ended::before {
  background: var(--color-accent);
  opacity: 0.38;
}

.page-news-notice .notice-state--archived::before {
  background: transparent;
  border: 1px solid var(--color-ink-muted);
}

.page-news-notice .notice-conclusion .notice-state--active {
  color: var(--color-contrast-accent);
}

.page-news-notice .notice-conclusion .notice-state--active::before {
  background: var(--color-contrast-accent);
}

.page-news-notice .notice-conclusion .notice-state--ended,
.page-news-notice .notice-conclusion .notice-state--archived {
  color: var(--color-contrast-ink);
}

.page-news-notice .notice-conclusion .notice-state--ended::before {
  background: var(--color-contrast-accent);
  opacity: 0.38;
}

.page-news-notice .notice-conclusion .notice-state--archived::before {
  background: transparent;
  border: 1px solid var(--color-contrast-line);
}

/* ---------- A5 公告清单 ---------- */
.page-news-notice .notice-list {
  margin-top: var(--space-4);
  border-bottom: 1px solid var(--color-line);
}

.page-news-notice .notice-card {
  border: 1px solid var(--color-line);
  border-bottom: 0;
  background: var(--color-surface);
}

.page-news-notice .notice-card:first-child {
  margin-top: 0;
}

.page-news-notice .notice-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--color-surface-alt);
  cursor: pointer;
  list-style: none;
  transition: background-color 160ms linear;
}

.page-news-notice .notice-card__head::-webkit-details-marker {
  display: none;
}

.page-news-notice .notice-card__head:hover {
  background: var(--color-primary-soft);
}

.page-news-notice .notice-card__head:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: -2px;
}

.page-news-notice .notice-card__head::after {
  content: "+";
  flex: none;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: var(--text-base);
  line-height: 1;
  color: var(--color-primary);
}

.page-news-notice .notice-card[open] .notice-card__head::after {
  content: "\2212";
}

.page-news-notice .notice-card__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  min-width: var(--space-6);
  padding: calc(var(--space-1) / 2) var(--space-1);
  background: var(--color-primary);
  color: var(--color-primary-ink);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.page-news-notice .notice-card__title {
  flex: 1 1 12ch;
  min-width: 0;
  font-size: var(--text-base);
  font-weight: var(--weight-heading);
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: var(--color-ink);
}

.page-news-notice .notice-card__body {
  padding: var(--space-3);
  border-top: 1px dotted var(--color-line);
  background: var(--color-surface);
}

.page-news-notice .notice-card__fields {
  margin: 0;
}

.page-news-notice .notice-card__field {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--space-1) / 2);
  padding: calc(var(--space-2) - var(--space-1) / 2) 0;
  border-bottom: 1px dotted var(--color-line);
}

.page-news-notice .notice-card__field:first-child {
  padding-top: 0;
}

.page-news-notice .notice-card__field:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-news-notice .notice-card__field dt {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}

.page-news-notice .notice-card__field dd {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--color-ink);
}

/* ---------- A6 相邻入口 ---------- */
.page-news-notice .notice-links {
  position: relative;
  margin: var(--space-4) 0 0;
  padding: 0 0 0 var(--space-4);
  list-style: none;
  border-left: 1px dotted var(--color-line);
}

.page-news-notice .notice-links__item {
  position: relative;
  padding: var(--space-3) 0;
  border-bottom: 1px dotted var(--color-line);
}

.page-news-notice .notice-links__item:first-child {
  padding-top: 0;
}

.page-news-notice .notice-links__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-news-notice .notice-links__item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-4));
  top: calc(var(--space-3) + 0.7em);
  width: var(--space-4);
  border-top: 1px dotted var(--color-line);
}

.page-news-notice .notice-links__item:first-child::before {
  top: 0.7em;
}

.page-news-notice .notice-links__link {
  display: inline-block;
  font-size: var(--text-base);
  font-weight: var(--weight-heading);
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color 160ms linear;
}

.page-news-notice .notice-links__link:hover {
  border-bottom-color: var(--color-primary);
}

.page-news-notice .notice-links__link:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

.page-news-notice .notice-links__desc {
  display: block;
  margin-top: calc(var(--space-1) / 2);
  max-width: var(--measure);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

/* ---------- 响应式 ---------- */
@media (min-width: 600px) {
  .page-news-notice .notice-card__field {
    grid-template-columns: 92px 1fr;
    gap: var(--space-3);
  }

  .page-news-notice .notice-conclusion__row {
    grid-template-columns: 120px 1fr;
    align-items: baseline;
    gap: var(--space-3);
  }
}

@media (min-width: 768px) {
  .page-news-notice .notice-head__title {
    font-size: var(--text-4xl);
  }

  .page-news-notice .notice-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news-notice .notice-facts__item {
    border-bottom: 0;
    border-left: 1px dotted var(--color-line);
    padding: var(--space-3) var(--space-3) var(--space-3) var(--space-4);
  }

  .page-news-notice .notice-facts__item:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .page-news-notice .notice-scope {
    grid-template-columns: 7fr 5fr;
    gap: var(--space-4);
  }

  .page-news-notice .notice-conclusion {
    padding: var(--space-8) var(--space-6);
  }
}

@media (min-width: 900px) {
  .page-news-notice .notice-container {
    padding-top: var(--space-6);
  }

  .page-news-notice .notice-hero {
    margin-bottom: var(--space-8);
  }

  .page-news-notice .notice-section {
    padding-top: var(--section-y);
  }

  .page-news-notice .notice-section + .notice-section {
    margin-top: var(--section-y);
  }

  .page-news-notice .notice-split {
    column-gap: var(--gutter);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news-notice .notice-toc__link,
  .page-news-notice .breadcrumb__item a,
  .page-news-notice .notice-card__head,
  .page-news-notice .notice-links__link {
    transition: none;
  }
}
