.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

@media screen and (min-width: 1080px) {
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

.footer-grid li {
    grid-column: span 1;
}

#site-footer .menu-item {
    font-size: 1.5rem;
}
@media screen and (max-width: 959px) {
    #site-footer .menu-item {
        font-size: 1.25rem;
    }
}