#accessibilityContainer a {
  text-decoration: underline;
}

ul.list-styled li {
  display: list-item;
  list-style: disc;
  margin-inline-start: 1em;
}

ol.list-styled li {
  display: list-item;
  list-style: decimal;
  margin-inline-start: 1em;
}

.list-styled ul li {
  display: list-item;
  list-style: disc !important;
}

.accessibility-content {
  counter-reset: section 0;
}

.accessibility-content h2 {
  counter-increment: section 1;
}

.accessibility-content h2::before {
  content: counter(section) ". ";
}

.flow > * + * {
  margin-block-start: var(--flow-space, 1em) !important;
}

[data-flow="normal"] {
  --flow-space: 1em;
}

[data-flow="section"] {
  --flow-space: 2em;
}

.underline {
  text-decoration: underline !important;
}
