.module-footnotes.mcs-orange {
    background-color:var(--dark-orange);
}

.module-footnotes.mcs-gray {
    background-color:var(--light-gray);
}

.module-footnotes ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

.module-footnotes li {
    font-style: italic;
    font-size:1.5rem;
    line-height: 2rem;
    color:#000
}

.module-footnotes li p {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size:1.5rem;
    line-height: 2rem;
    color:#000;
}

.module-footnotes li {
    display: flex;
    align-items: flex-start;
    font-family: sans-serif;
}

.module-footnotes li::before {
    content: '';
    display: inline-block;
    text-align: right;
    white-space: nowrap;
    width: 3em; /* adjust width as needed */
    margin-right: 0.5em;
}

.module-footnotes li[data-count="1"]::before { content: '*'; }
.module-footnotes li[data-count="2"]::before { content: '**'; }
.module-footnotes li[data-count="3"]::before { content: '***'; }
.module-footnotes li[data-count="4"]::before { content: '****'; }
.module-footnotes li[data-count="5"]::before { content: '*****'; }
.module-footnotes li[data-count="6"]::before { content: '******'; }
.module-footnotes li[data-count="7"]::before { content: '*******'; }