/*
 * Estilos para cualquier menú de navegación dentro del footer.
 * Para añadir otra zona de footer (ej. otro idioma), agregar su id al selector:
 * #wrapper-footer-colophon ul.menu,
 * #footer-en ul.menu,
 * #tu-nuevo-footer ul.menu
 */
#wrapper-footer-colophon ul.menu,
#footer-en ul.menu
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
}

@media (max-width: 768px)
{
    #wrapper-footer-colophon ul.menu,
    #footer-en ul.menu
    {
        flex-direction: column;
        gap: 0.2rem;
    }
}