.list {
  text-align: left;
  list-style-position: inside;
}

.list li::marker {
  font-size: var(--font-paragraph-mobile);
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  .list li::marker {
    font-size: var(--font-24);
  }
}

.list--ordered {
  list-style-type: decimal;
}

.list--ordered-alpha {
  list-style-type: lower-alpha;
}

.list__item {
  margin-bottom: var(--spacing-2);
}
