/* NEKOI — Fit Text utility (CSS) */
.fit-text {
  display: block;
  width: 100%;
  white-space: nowrap;  /* single line */
  line-height: 1;       /* stable measure */
  /* Set your letter-spacing here; JS will emulate it with gap */
}

/* Injected wrapper (no trailing gap) */
.fit-text > .__fitLetters {
  display: inline-flex;
  white-space: nowrap;
  align-items: baseline;
  gap: var(--fit-gap, 0em); /* set by JS in em */
}
.fit-text > .__fitLetters > span { display: inline-block; }