/* 关于我们专有样式（page-about） */

.about-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 48px; align-items: start; }
.about-intro h2 { margin-top: 0; }
.about-figure { margin: 0; }
.about-figure img { border-radius: var(--radius-l); border: 1px solid var(--line); }
.about-figure figcaption { margin-top: 12px; font-size: 0.85rem; color: var(--muted); }

/* 公司资料表 */
.info-table { display: grid; grid-template-columns: 92px minmax(0, 1fr); margin: 0; }
.info-table dt {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}
.info-table dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.96rem;
}
.info-table dt:first-of-type { border-top: 1px solid var(--line); }
.info-table dd:first-of-type { border-top: 1px solid var(--line); }
.info-table a { color: var(--brand); }

/* 定位/原则说明块 */
.about-note {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  padding: 20px 24px;
  font-size: 0.96rem;
  margin: 0 0 22px;
}
.about-note p:last-child { margin-bottom: 0; }

/* 小节标题的上间距（服务范围区块内的子标题） */
.about-sub-head { margin-top: 64px; }

@media (max-width: 1024px) {
  .about-intro { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  .info-table { grid-template-columns: 1fr; }
  .info-table dt { padding-bottom: 0; border-bottom: none; }
  .info-table dd { padding-top: 6px; }
  .info-table dt:first-of-type { border-top: 1px solid var(--line); padding-top: 14px; }
  .info-table dd:first-of-type { border-top: none; }
}

/* 企业价值总结（品牌收束段） */
.brand-summary { max-width: 84ch; margin: 0 auto 36px; text-align: center; }
.brand-summary h2 { font-size: 1.5rem; margin-bottom: 14px; }
.brand-summary p { margin: 0; color: var(--muted); font-size: 1rem; }
