/* ==========================================================================
   关于我们 · 仅本页样式（公共变量、背景/顶栏/页脚复用 styles.css）
   ========================================================================== */

.about {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px clamp(16px, 4vw, 32px) 48px;
}

/* -------------------------- 页头 -------------------------- */
.about-hero {
  text-align: center;
  padding: clamp(16px, 4vh, 40px) 0 10px;
}

.about-bunny {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  font-size: 46px;
  border-radius: 46% 46% 48% 48%;
  background: radial-gradient(circle at 50% 38%, #fff 0%, #fff0f7 70%, #ffe3ef 100%);
  border: 3px solid var(--line-strong);
  box-shadow: var(--shadow);
  animation: bob 3.6s ease-in-out infinite;
}

.about-title {
  margin: 0 0 8px;
  font-size: clamp(26px, 5vw, 38px);
  line-height: 1.2;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .about-title { color: var(--straw-deep); -webkit-text-fill-color: var(--straw-deep); }
}

.about-lead { margin: 0; color: var(--ink-2); }

/* -------------------------- 分节 -------------------------- */
.about-section { margin-top: 34px; }

.about-stitle {
  position: relative;
  margin: 0 0 14px;
  padding-left: 14px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}

/* 标题左侧的糖果竖条 */
.about-stitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24em;
  bottom: 0.24em;
  width: 5px;
  border-radius: 999px;
  background: var(--grad);
}

.about-text { margin: 0 0 12px; color: var(--ink-2); }
.about-text:last-child { margin-bottom: 0; }

/* -------------------------- 能力卡片 -------------------------- */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}

.about-card {
  padding: 20px 18px;
  border-radius: var(--r-md);
  border: 2px solid var(--line);
  background: var(--grad-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.about-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.about-card-icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  font-size: 24px;
  background: #fff;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.about-card h3 { margin: 12px 0 6px; font-size: 15.5px; color: var(--ink); }
.about-card p { margin: 0; color: var(--ink-2); font-size: 13.5px; }

/* -------------------------- 合规提示 -------------------------- */
.about-notice {
  margin: 0;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 2px solid var(--cream-deep);
  background: #fff7e0;
  color: var(--ink-2);
  font-size: 13.5px;
}
.about-notice strong { color: #d98b1f; }

/* -------------------------- 联系方式 -------------------------- */
.about-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-citem {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 20px;
}
.about-citem + .about-citem { border-top: 2px dashed var(--line); }

.about-clabel {
  flex: none;
  width: 5.2em;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 700;
}

.about-cvalue {
  color: var(--ink);
  text-decoration: none;
  overflow-wrap: anywhere;
}
a.about-cvalue { color: var(--straw-deep); }
a.about-cvalue:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .about-cards { grid-template-columns: 1fr; }
  .about-citem { flex-direction: column; gap: 3px; padding: 12px 16px; }
  .about-clabel { width: auto; }
}
