/* Sticky footer — pin the footer to the bottom of the viewport on short pages */
#page.site {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

#content.site-content {
    flex: 1 0 auto;
}

.site-footer {
    background: #2d0006;
    color: #fff;
    font-family: var(--font-sans);
    font-size: var(--step--1);
    margin-block-start: var(--space-3xl);
    padding-block: var(--space-l);

    flex-shrink: 0;
}

.site-footer__inner {
    --gutter: var(--space-m);
    width: calc(100% - (var(--gutter) * 2));
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: var(--gutter);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-m);
    flex-wrap: wrap;
}

.site-footer__licence {
    margin: 0;
}

.site-footer__donate {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.site-footer__donate:hover,
.site-footer__donate:focus-visible {
    text-decoration: underline;
    color: white;
}
