.ozx-static-footer {
    background: var(--ozarks-blue);
    color: var(--white);
    margin-top: 40px;
    font-family: var(--roboto);
}

.ozx-static-footer__inner,
.ozx-static-footer__bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.ozx-static-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding: 28px 0;
}

.ozx-static-footer__section-title {
    font-size: 1rem;
    margin: 0 0 10px;
    font-family: var(--montserrat);
}

.ozx-static-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ozx-static-footer li + li {
    margin-top: 8px;
}

.ozx-static-footer a {
    color: var(--white);
}

.ozx-static-footer a:hover,
.ozx-static-footer a:focus-visible {
    color: var(--honors-yellow);
}

.ozx-static-footer__contact-brand-link img {
    width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.ozx-static-footer__bottom-wrap {
    border-top: 1px solid var(--transparent-white-50);
}

.ozx-static-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

@media (max-width: 960px) {
    .ozx-static-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ozx-static-footer__grid {
        grid-template-columns: 1fr;
    }

    .ozx-static-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    padding-bottom: 14px;
    }
}
