ul,
ol {
  list-style-position: outside;
  padding-left: var(--spacing-6);
  margin-bottom: var(--spacing-4);
  color: var(--color-gray-700);
}

ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: var(--spacing-2);
  line-height: var(--line-height-relaxed);
}

li:last-child {
  margin-bottom: 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-top: var(--spacing-2);
  margin-bottom: var(--spacing-2);
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
  list-style: none;
  padding-left: 0;
}

.list-inline li {
  margin-bottom: 0;
}


