 /*------------------------------------
    #LISTS
------------------------------------*/

ul {
  list-style: none;

  &.no-bullets {
    li::before {
      display: none;
    }
  }

  &.is-style-default,
  &.footnote,
  &.footnotes,
  &.is-style-footnotes {
    list-style-type: disc;
    padding-inline-start: 40px;
  }

   /* &:not([class]) li a {
     color: var(--color-neutral-gray-70);
     font-weight: 700;
   } */

  li::before {
    color: var(--color-brand-red-orange);
    content: '\2022';
    display: inline-block;
    font-weight: 700;
    margin-left: -1em;
    width: 1em;
  }
}

.list-inline li {
  display: inline-block;
}

.c-list ul {
  display: flex;
  flex-wrap: wrap;
}

.c-list--3up li {
  width: 100%;

  @media all and (min-width: 47em) {
    width: 33.333%;
  }
}

ol {
  &.is-style-default,
  &.footnote,
  &.footnotes,
  &.is-style-footnotes {
    list-style-type: decimal;
    padding-inline-start: 1rem;
  }

  &.is-style-default li {
    margin-bottom: 1rem;
  }

  &.is-style-capital-letters {
    list-style-type: upper-alpha;
    padding-inline-start: 40px;
  }

  + ol.is-style-default,
  + ol.footnote,
  + ol.footnotes,
  + ol.is-style-footnotes {
    margin-top: 3rem;
  }
}

ol.footnote,
ul.footnote,
ol.footnotes,
ul.footnotes,
ol.is-style-footnotes,
ul.is-style-footnotes,
.footnote,
.footnotes,
.is-style-footnotes {
  font-size: .75em;
  font-style: italic;
  margin: 1.5em auto;

  li {
    margin-bottom: 1em;
  }

  [target="_blank"] {
    background: none;
    padding-right: 0;
  }
}
