.footer-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 0;
    width: 46.6rem;
    max-width: 100%;
    padding-top: 0.8rem;
    line-height: 1.5;
}

@media screen and (max-width: 575.9px) {
    .footer-menu {
        order: -1;
        grid-template-columns: repeat(2, 1fr);
        padding-top: 0;
    }
}