.page-news {
  --news-c-ver: var(--pine-2);
  --news-c-feat: var(--blue);
  --news-c-obs: var(--teal);
  --news-c-saf: var(--orange);
  --news-c-ann: var(--graphite);
  --news-bar-w: 4px;
  padding-bottom: 72px;
}

/* ---------- 页头 ---------- */
.page-news .news-top {
  padding-top: 24px;
}

.page-news .news-hero {
  padding: 20px 0 34px;
  border-bottom: 1px solid var(--hair);
  position: relative;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 96px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--pine-2));
}

.page-news .news-hero__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 10px 0 16px;
  max-width: 20ch;
}

.page-news .news-hero__lede {
  max-width: 62ch;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}

.page-news .news-hero__facts {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .news-hero__facts li {
  background: var(--glass);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .news-hero__facts b {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  color: var(--pine);
}

.page-news .news-hero__facts span {
  font-size: 13px;
  color: var(--graphite);
  line-height: 1.5;
}

/* ---------- 置顶条目 ---------- */
.page-news .news-pin__card {
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pine);
  color: rgba(238, 242, 244, 0.84);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.page-news .news-pin__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.page-news .news-pin__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-news .news-pin__body {
  padding: 24px 22px 28px;
}

.page-news .news-pin__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  flex-wrap: wrap;
}

.page-news .news-pin__meta .meta {
  color: rgba(238, 242, 244, 0.62);
}

.page-news .news-pin__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.28;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.page-news .news-pin__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.85;
}

.page-news .news-pin__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-news .news-pin__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.page-news .news-pin__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--teal);
}

/* ---------- 关注方向 ---------- */
.page-news .news-filter {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-filter .filter-btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 9px 18px;
  background: var(--glass);
  border: 1px solid var(--hair);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.page-news .news-filter .filter-btn:hover,
.page-news .news-filter .filter-btn:focus-visible {
  border-color: var(--orange);
  background: var(--orange-soft);
  transform: translateY(-2px);
}

/* ---------- 条目流 ---------- */
.page-news .news-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.page-news .news-group {
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  padding: 20px 18px 22px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.page-news .news-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--hair);
  margin-bottom: 16px;
}

.page-news .news-group__title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.page-news .news-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex: none;
  background: var(--news-c-ann);
}

.page-news .news-dot--ver { background: var(--news-c-ver); }
.page-news .news-dot--feat { background: var(--news-c-feat); }
.page-news .news-dot--obs { background: var(--news-c-obs); }
.page-news .news-dot--saf { background: var(--news-c-saf); }
.page-news .news-dot--ann { background: var(--news-c-ann); }

.page-news .news-group__more {
  font-size: 13px;
  color: var(--graphite);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}

.page-news .news-group__more::after {
  content: " →";
  font-family: var(--font-mono);
}

.page-news .news-group__more:hover,
.page-news .news-group__more:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
}

.page-news .news-group__figure {
  margin: 0 0 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--hair);
}

.page-news .news-group__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.page-news .news-group__figure .figure__cap {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--hair);
}

.page-news .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-item {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--hair);
  border-radius: var(--radius-sm);
  padding: 14px 16px 14px 20px;
  transition: border-color 0.16s ease, transform 0.16s ease;
}

.page-news .news-item:hover {
  border-color: var(--hair);
  transform: translateX(2px);
}

.page-news .news-item__bar {
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: var(--news-bar-w);
  border-radius: 0 4px 4px 0;
  background: var(--news-c-ann);
  transition: width 0.16s ease;
}

.page-news .news-item:hover .news-item__bar {
  width: 6px;
}

.page-news .news-item--ver .news-item__bar { background: var(--news-c-ver); }
.page-news .news-item--feat .news-item__bar { background: var(--news-c-feat); }
.page-news .news-item--obs .news-item__bar { background: var(--news-c-obs); }
.page-news .news-item--saf .news-item__bar { background: var(--news-c-saf); }
.page-news .news-item--ann .news-item__bar { background: var(--news-c-ann); }

.page-news .news-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 6px;
}

.page-news .news-item__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
}

.page-news .news-item__time {
  flex: none;
  font-size: 12px;
  color: var(--graphite);
  letter-spacing: 0.02em;
}

.page-news .news-item__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--graphite);
}

/* ---------- 专题系列 ---------- */
.page-news .news-topics {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  counter-reset: topic;
}

.page-news .news-topic {
  position: relative;
  border: 1px solid var(--hair);
  border-left: 4px solid var(--pine-2);
  border-radius: var(--radius);
  background: var(--glass);
  padding: 20px 20px 22px;
  overflow: hidden;
}

.page-news .news-topic::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: rgba(23, 195, 162, 0.12);
  transform: rotate(15deg);
  border-radius: 20px;
  pointer-events: none;
}

.page-news .news-topic__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--pine-2);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.page-news .news-topic__title {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
}

.page-news .news-topic__desc {
  position: relative;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

.page-news .news-topic__hint {
  position: relative;
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed var(--hair);
  font-size: 13px;
  line-height: 1.7;
  color: var(--graphite);
}

/* ---------- 年度报告 ---------- */
.page-news .news-annual__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.page-news .news-annual__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hair);
  background: var(--pine-deep);
}

.page-news .news-annual__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 25 / 14;
  object-fit: cover;
}

.page-news .news-annual__figure .figure__cap {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(238, 242, 244, 0.7);
  background: var(--pine-deep);
}

.page-news .news-annual__list {
  margin: 0;
  padding: 0;
}

.page-news .news-annual__row {
  padding: 16px 0;
  border-bottom: 1px solid var(--hair-soft);
}

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

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

.page-news .news-annual__key {
  font-size: 15px;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-news .news-annual__key::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex: none;
}

.page-news .news-annual__val {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--graphite);
}

.page-news .news-annual__note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(47, 107, 216, 0.07);
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink);
}

.page-news .news-annual__note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 跟进入口 ---------- */
.page-news .news-follow__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-news .news-follow__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  border-radius: var(--radius);
}

.page-news .news-follow__card .card__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 19px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}

.page-news .news-follow__card .card__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--graphite);
}

.page-news .news-follow__card .btn {
  align-self: flex-start;
  margin-top: auto;
  text-decoration: none;
}

.page-news .news-foot-nav {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-foot-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: var(--glass);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.page-news .news-foot-nav__link:hover,
.page-news .news-foot-nav__link:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.page-news .news-foot-nav__link--strong {
  background: var(--pine);
  border-color: var(--pine);
  color: #FFFFFF;
}

.page-news .news-foot-nav__link--strong:hover,
.page-news .news-foot-nav__link--strong:focus-visible {
  background: var(--pine-2);
  border-color: var(--pine-2);
  color: #FFFFFF;
}

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

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

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

@media (min-width: 900px) {
  .page-news .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 28px;
    align-items: start;
  }

  .page-news .news-pin__card {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .page-news .news-pin__figure img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 320px;
  }

  .page-news .news-pin__body {
    padding: 34px 34px 36px;
  }

  .page-news .news-annual__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 32px;
    align-items: start;
  }

  .page-news .news-topic {
    padding: 26px 24px 26px;
  }
}

@media (min-width: 1180px) {
  .page-news .news-item__title {
    font-size: 15.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-item,
  .page-news .news-item__bar,
  .page-news .news-filter .filter-btn,
  .page-news .news-foot-nav__link {
    transition: none;
  }

  .page-news .news-item:hover,
  .page-news .news-filter .filter-btn:hover,
  .page-news .news-foot-nav__link:hover {
    transform: none;
  }
}
