/* menu */
.menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em 2em;
    justify-content: flex-end;
    font-size: var(--theme--font-size--normal);
}

/* menu-item-depth-0 */
.menu-footer .menu-item-depth-0 {
    position: relative;
}

.menu-footer .menu-item-depth-0.copyright {
    flex: 1;
    order: 1;
}

/* menu-link-depth-0 */
.menu-footer .menu-link-depth-0 {
    position: relative;
    padding: 0;
    color: var(--theme--color--darker);
    text-decoration: none;
}

.menu-footer .menu-link-depth-0:hover {
    color: var(--theme--color--text);
}

@media (min-width: 768px) {
    .menu-footer {
        flex-direction: row;
    }

    .menu-footer .menu-item-depth-0.copyright {
        order: -1;
    }
}
