/* List Atom */
.list {
  margin: 0;
  padding-left: var(--space-6);
}

.list-default {
  list-style: disc;
}

.list-none {
  list-style: none;
  padding-left: 0;
}

.list-item {
  margin-bottom: var(--space-1_5);
  line-height: var(--line-height-normal);
}

.list-item:last-child {
  margin-bottom: 0;
}

ol.list {
  list-style: decimal;
}

.list ul, .list ol {
  margin-top: var(--space-1_5);
}
