.footer {
    margin-top: auto;
    background-color: #F2F2F2;
    box-shadow: 0 -1px 0 #CCC;
    z-index: 1;
}

.footer__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    padding: 32px 0px;
    margin: 0;
}

.footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0;
}

.footer__copyright {
    color: #767676;
    margin: 0;
}

.footer__copyright {
    width: 100%;
    max-width: fit-content;
}

@media (min-width: 992px) {

    .footer__content {
        flex-direction: row;
        margin: 0 auto;
        padding: 48px 80px;
    }

    .footer__links {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 32px;
    }
}