/*
 * Half a rung between the mark and the name: an 8 reads as two adjacent things
 * and a 4 crowds the disc, and a person plus their name is ONE object.
 */
@layer theme, base, lotics, components, utilities;
@layer lotics.tokens, lotics.reset, lotics.components;

@layer lotics.components {
  .lotics-member-chip {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* A `View` never shrank, so the chip held its size and overflowed a narrow
       cell rather than clamping its own name early. */
    flex-shrink: 0;
    min-width: 0;
    gap: var(--lotics-space-6);
  }

  /* The lines give way, the mark does not — a name is the one thing here with a
     readable shorter form. */
  .lotics-member-chip__text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-shrink: 1;
    min-width: 0;
  }
}
