How can I arrange a list vertically in the Loft theme footer?

I want to solve my problem in the footer. Can we make this list in the footer vertically?

I use the Loft theme

mi-homeware.myshopify.com

Could anyone assist please thanks

Hey Totsemporium,

Is this what you are looking for?

If so, all you have to do is change the CSS file

https://cdn.shopify.com/s/files/1/0550/2943/2570/t/5/assets/theme.css?v=85524480981905663571655916809?%20[sm]

Update the code from this

.footer__navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
}

to this:

.footer__navigation {
    display: grid;
}

Removing the second row here should get the job done.