.list-standard {
  margin: 1rem 0;
}

.list-standard ul,
.list-standard ol {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.list-standard li {
  margin-bottom: 0.25rem;
}

.steps-list__wrapper {
  counter-reset: step-counter;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps-list__item {
  counter-increment: step-counter;
  margin: 1.5rem 0;
  padding-left: 3rem;
  position: relative;
}

.steps-list__item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #0075c9;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps-list__title {
  margin: 0 0 .25rem 0;
}

.steps-list__body {
  margin: 0;
}

.icon-list__wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: .75rem;
}

.icon-list__icon {
  font-size: 1.25rem;
  margin-right: .5rem;
  color: #005CAA;
}

.icon-list--arrow .icon-list__icon:before {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: 900;
}

.icon-list--checkmark .icon-list__icon:before {
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  font-weight: 900;
}

.icon-list--dash .icon-list__icon:before {
  font-family: "Font Awesome 6 Free";
  content: "\f068";
  font-weight: 900;
}

.icon-list--square .icon-list__icon:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0c8";
  font-weight: 900;
}

.icon-list--square-check .icon-list__icon:before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: 900;
}

.definition-list dt {
  font-weight: bold;
  margin-top: 1rem;
}

.definition-list dd {
  margin: 0 0 1rem 1rem;
}

@media (max-width: 600px) {
  .icon-list__item {
    align-items: center;
  }

  .icon-list__text {
    font-size: .95rem;
  }
}
