@layer components {
  .list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--block-space) var(--block-space-double);
    border-bottom: 1px solid var(--color-border);

    &:last-child {
      border-bottom: none;
    }
  }

  .list__primary {
    font-weight: 500;
  }

  .list__secondary {
    font-size: var(--text-footnote);
    color: var(--color-ink);
  }

  .list__meta {
    font-size: var(--text-footnote);
    color: var(--color-ink);
  }
}
