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

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

.footer-menu {
    margin: 0 auto;
}

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

.footer-menu ul li a {
    color: black;
    font-weight: normal;
    text-decoration: none;
}

.footer-menu ul li a:hover {
    text-decoration: underline;
}