.na-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.na-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5;
}

.na-list-ordered {
  counter-reset: na-list-counter;
}
.na-list-ordered li {
  counter-increment: na-list-counter;
}
.na-list-ordered li::before {
  content: counter(na-list-counter) '.';
  font-size: 0.875em;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 1.125rem;
  line-height: inherit;
}

.na-list-disc li::before {
  content: '';
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: currentColor;
  flex-shrink: 0;
}

.na-list-circle li::before {
  content: '';
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  flex-shrink: 0;
}

.na-list-square li::before {
  content: '';
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: currentColor;
  flex-shrink: 0;
}

.na-list-hyphen li::before {
  content: '-';
  flex-shrink: 0;
  line-height: inherit;
}

.na-list-striped li:nth-child(odd) {
  background-color: #f8fafc;
}

.na-list-divider li {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.375rem;
}

.na-list-divider li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
