footer {
    padding: var(--spacer-xs) var(--spacer-s);
    display: flex;
    justify-content: space-between;
}
footer nav {
    display: flex;
    gap: var(--spacer-xxs);
}
footer nav a:hover {
    transform: unset !important;
}

.site-footer {
    align-items: center;
}


#menu-footer {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-left: 0 !important;
}
#menu-footer a {
    text-decoration: none;
}


.menu-item {
    list-style: none;
}


@media screen and (max-width: 768px) {
    #menu-footer {
        flex-direction: column;
        gap: var(--spacer-s);
        align-items: flex-start;
    }

    nav.footer, .footer-menu {
        width: 100% !important;
    }

    footer {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

