/* Shared identity line; retain each section's existing placement and spacing. */
body.human-interface-v2 #page-home .hero-process.profile-identity,
body.human-interface-v2 #page-about .subtitle.profile-identity,
body.human-interface-v2 #page-contact .contact-subtitle.profile-identity {
  display:flex;
  align-items:center;
  gap:2px clamp(8px,1vw,12px);
  flex-wrap:wrap;
  color:var(--ink-soft);
  font-family:var(--font-sans);
  font-size:clamp(12px,1.1vw,15px);
  font-weight:400;
  line-height:1.6;
  letter-spacing:.01em;
  text-transform:none;
  white-space:normal;
}
body.human-interface-v2 .profile-identity > span {
  background:none;
  padding:0;
  color:inherit;
  white-space:nowrap;
}
body.human-interface-v2 .profile-identity > .identity-second::before {
  content:'|';
  margin-right:clamp(8px,1vw,12px);
  color:var(--ink-faint);
  font-weight:300;
}
@media(max-width:820px) {
  body.human-interface-v2 #page-home .hero-process.profile-identity { align-items:center; }
}
@media(max-width:380px) {
  body.human-interface-v2 .profile-identity > .identity-second::before { content:none; }
}
