/* Initials token — see README.md for the spec. */

.utoks {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.utok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 4px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-input);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  cursor: default;
  text-transform: uppercase;
}

.utok--more {
  color: var(--fg-faint);
  border-style: dashed;
}

/* No-tags placeholder — composes with P0.2 absence vocabulary. */
.tagged-none {
  color: var(--fg-faint);
}

/* Screen-reader-only span — ships with the atom so every consumer's token
   carries the full name on a non-tooltip accessible-name path. The visible
   initials are wrapped in aria-hidden="true" inside each .utok. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
