/**
 * Supporter mark — a small persimmon dot after premium users' bylines.
 *
 * Applied by neopoet_premium_colors_preprocess_username() via the
 * `is-supporter` class. Visible on every Drupal-rendered username
 * (comments, node bylines, profile cards, follower lists).
 *
 * Tasteful, not loud: a 0.42em dot with a 0.32em margin, vertically
 * nudged to sit on the username's optical center. Uses brand persimmon
 * with a hard hex fallback so it works before/after the audit-followups
 * token rename (--np-color-accent-deep).
 *
 * Decorative-only: not announced to screen readers (no aria-label,
 * no text node). Supporter status is announced explicitly on
 * /subscribe and on the user's own profile page; the byline mark is
 * a peripheral cue, not a primary signal.
 */
.username.is-supporter::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background-color: var(--np-color-accent-deep, #D85A30);
  margin-left: 0.32em;
  vertical-align: 0.08em;
  flex-shrink: 0;
}
