/* 关于我们：侧栏导航（简洁，无卡片/阴影） */
.about-page .about-sidebar {
  position: sticky;
  top: 5.75rem;
  z-index: 1;
  align-self: flex-start;
}

.about-page .about-sidebar__title {
  margin: 0 0 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-strong);
  font-weight: 600;
}

.about-page .about-nav .nav-link {
  color: var(--ink-normal);
  font-weight: 400;
  padding: 0.4rem 0;
  border-radius: 0;
}

.about-page .about-nav .nav-link:hover,
.about-page .about-nav .nav-link:focus {
  color: var(--primary-color);
  background: transparent;
}

.about-page .about-anchor {
  scroll-margin-top: 5.5rem;
}

/* 主内容：各模块卡片区分 */
.about-page .about-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-page .about-module {
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: #fff;
}

.about-page .about-module__title {
  margin: 0 0 1rem;
  padding: 0 0 0.65rem 0.85rem;
  border-left: 3px solid var(--primary-color);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  color: var(--ink-strong);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-page .about-module__body {
  padding-left: 0.15rem;
}

.about-page .about-module__body > h5 {
  color: var(--ink-strong);
  font-size: 0.95rem;
  font-weight: 600;
}

/* 仅在小节与小节之间加分隔，避免首段正文后的第一个 h5 顶部分隔线 */
.about-page .about-module__body > h5 ~ h5 {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.45);
}

/* 模块底色区分（纯色，与整站变量一致） */
.about-page .about-module--intro {
  background: var(--brand-soft);
  border-color: rgba(37, 99, 235, 0.14);
}

.about-page .about-module--contact {
  background: #fafbfc;
  border-color: rgba(148, 163, 184, 0.35);
}

.about-page .about-module--terms {
  background: #fff;
  border-color: rgba(0, 88, 153, 0.16);
}

.about-page .about-module--legal {
  background: #fffbeb;
  border-color: rgba(245, 158, 11, 0.22);
}

.about-page .about-module--legal .about-module__title {
  border-left-color: #d97706;
}

.about-page .about-actions {
  padding-top: 0.25rem;
}

@media (max-width: 767.98px) {
  .about-page .about-sidebar {
    position: static;
    top: auto;
  }

  .about-page .about-module {
    padding: 1rem 1.1rem;
  }
}
