.main-content :where(li) {
  margin-block-start: 0.25rem;
}

.main-content :where(dd) {
  margin-inline-start: var(--list-indent, 0);
}

.main-content :where(ul, ol) {
  padding-inline-start: var(--list-indent, 0);
  line-height: var(--list-line-height);
}

.main-content :where(li) {
  position: relative;
}

.main-content :where(li ul, li ol) {
  margin-block-start: 0;
}

.main-content :where(ol) {
  counter-reset: item;
}

.main-content :where(ol li) {
  counter-increment: item;
}

.main-content li::before {
  content: counter(item) ". ";
  position: absolute;
  top: 0;
  left: calc(var(--list-indent) * -1);
}

.main-content ul :where(li)::before {
  content: "";
  position: absolute;
  color: var(--text-secondary-color);
  top: 0.5em;
  left: calc(var(--list-indent) * -1 + 0.125rem);
  height: 0.625rem;
  width: 0.625rem;
  background-color: currentColor;
}

@media (min-width: 48rem) {
  .main-content ul :where(li)::before {
    top: 0.6em;
  }
}
@media (min-width: 60rem) {
  .main-content ul :where(li)::before {
    top: 0.3em;
    height: 1rem;
    width: 1rem;
  }
}

/*# sourceMappingURL=/assets/application/base/lists-ad43b351.css.map */
