/*
 * A COLUMN with stretched children, which is what every container part of the
 * kit owes its own. Under `display: block` two
 * sibling runs would share a line and a child's width would do nothing.
 */
@layer theme, base, lotics, components, utilities;
@layer lotics.tokens, lotics.reset, lotics.components;

@layer lotics.components {
  .lotics-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
  }
}
