/* 资料卡实名状态：账号与状态分层展示，状态使用清晰的胶囊标签。 */
.profile-card > div:nth-child(2) { min-width: 0; }
.profile-card .profile-account {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 5px 0 0;
  color: #6f89a7;
  font-size: 14px;
  line-height: 1.7;
}
.profile-card .identity-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .02em;
  white-space: nowrap;
}
.profile-card .identity-pill--verified {
  color: #94600e;
  background: #fff0c7;
  border: 1px solid #edc265;
}
.profile-card .identity-pill--unverified {
  color: #bd3842;
  background: #ffe5e7;
  border: 1px solid #efa7ae;
}
.profile-card .identity-pill--pending {
  color: #a56a16;
  background: #fff1d8;
  border: 1px solid #efc477;
}
