/*footer {
    padding: var(--container-padding);
    border-top: var(--border-style);
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}
.footer-small {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}
.footer-small li {
    list-style: none;
}
*/
footer {
    margin-top: 2rem;
}
footer, .footer-small {
    background: var(--bg-color-contrast);
}
footer > div {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    padding: 1rem;
}
footer .site-meta {
    flex-grow: 1;
    flex-basis: 40%;
}
footer p {
    margin: 0;
}
footer .link-heading {
    font-weight: bold;
    font-size: 1.125rem;
}
footer .site-links {
    flex-grow: 1;
    flex-basis: 50%;
    display: flex;
    gap: 3rem;
}
footer .site-links li {
    list-style: none;
}
footer .site-meta, footer .site-links div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-small {
    padding-top: 1rem;
    padding: 1rem 1rem 0;
}
.footer-small .site-links {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}
.footer-small .site-links div {
    display: flex;
    gap: 2rem;
}
.footer-small li {
    list-style: none;
}