article {
  --article-max-width: 900px;
  --article-font-size: 16px;
  --article-line-height: 1.75;
  --article-text-color: #2b2b2b;
  --article-heading-color: #8c1405;
  --article-accent-bg: #f7f2ef;
  --article-border-color: #e4d9d3;

  --fs-base: 1.12rem;
  --fs-small: 0.98rem;
  --fs-h1: 2.25rem;
  --fs-h2: 1.60rem;
  --fs-h3: 1.32rem;
  --fs-h4: 1.18rem;
}

.achievement-article {
  font-size: var(--fs-base);
  line-height: var(--article-line-height);
  color: var(--article-text-color);
  max-width: var(--article-max-width);
  margin: 30px auto 60px;
  padding: 30px 40px 50px;
  background: #fff;
  border: 1px solid var(--article-border-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  font-variant-numeric: proportional-nums;
}

/* 主标题（如果有 header h1） */
.achievement-article header h1,
.achievement-article > h1 {
  font-size: var(--fs-h1);
  line-height: 1.25;
  margin: 0 0 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--article-heading-color);
}

/* 二级标题 */
.achievement-article h2 {
  margin: 40px 0 16px;
  font-size: var(--fs-h2);
  position: relative;
  padding-left: 14px;
  line-height: 1.3;
  font-weight: 600;
}
.achievement-article h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 6px;
  background: var(--article-heading-color);
  border-radius: 3px;
}

/* 三级标题 */
.achievement-article h3 {
  margin: 28px 0 12px;
  font-size: var(--fs-h3);
  color: var(--article-heading-color);
  font-weight: 600;
  line-height: 1.35;
}

/* 四级标题 */
.achievement-article h4 {
  margin: 20px 0 8px;
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.4;
  color: var(--article-heading-color);
  position: relative;
}

/* 段落 */
.achievement-article p {
  margin: 0 0 14px;
  text-align: justify;
  font-size: var(--fs-base);
}

/* 关键成果列表 */
.achievement-article ul {
  list-style: none;
  margin: 0 0 14px 20px;
  padding: 0;
  font-size: var(--fs-base);
}
.achievement-article ul li {
  position: relative;
  padding-left: 4px;
  margin: 6px 0;
  line-height: 1.6;
}
.achievement-article ul li::marker {
  content: "•";
  color: var(--article-heading-color);
  font-size: 1.05em;
  line-height: 1;
}

.achievement-article ol {
  margin: 0 0 14px 20px;
  padding: 0;
  font-size: var(--fs-base);
}
.achievement-article ol li {
  margin: 6px 0;
  padding-left: 4px;
  line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 900px) {
  .achievement-article {
    padding: 24px 24px 40px;
  }
  .achievement-article header h1 {
    margin-bottom: 22px;
  }
}
@media (max-width: 600px) {
  .achievement-article {
    padding: 20px 18px 36px;
  }
  /* 小屏稍微压缩垂直间距 */
  .achievement-article h2 {
    margin: 34px 0 14px;
  }
  .achievement-article h3 {
    margin: 24px 0 10px;
  }
  .achievement-article p,
  .achievement-article ul,
  .achievement-article ol {
    font-size: 0.97rem;
  }
}
