/*
 * The control's own text inset, so an annotation lines up with the value's WORDS
 * rather than with the editor's invisible box — and half a rung between the lines,
 * the rhythm the host puts between the control and this block.
 */
@layer theme, base, lotics, components, utilities;
@layer lotics.tokens, lotics.reset, lotics.components;

@layer lotics.components {
  .lotics-field-annotations {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--lotics-space-2);
    padding-left: var(--lotics-control-text-inset);
  }

  /* Nothing to clear when the value is flat text — see the `flat` prop. */
  .lotics-field-annotations[data-flat] {
    padding-left: 0;
  }
}
