footer {
    background: white;
    padding: var(--griditem);
    width: 100%;
    box-sizing: border-box;
}

body.content-type-landing-page footer {
    background: var(--secondary-color);
}

body.website-background-active footer {
    background: var(--secondary-color);
}

body.content-type-einfache-seite footer {
    margin-top: calc(4 * var(--griditem));
}

.footer-menu {
    margin: 0 auto;
}

.footer-menu ul:not(.contextual-links) {
    display: flex;
    justify-content: center;
    gap: calc(var(--griditem) * 0.5);
    text-decoration: none;
    text-transform: uppercase;
}

.footer-menu ul:not(.contextual-links) li a {
    color: black;
    font-weight: normal;
    text-decoration: none;
}

.footer-menu ul:not(.contextual-links) li a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer-menu ul:not(.contextual-links) {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
}
