.site-footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__links a {
    color: inherit;
    font-size: .9rem;
    font-weight: 750;
    text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__links a[aria-current="page"] {
    color: #3b82f6;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 640px) {
    .site-footer__container {
        align-items: flex-start;
        flex-direction: column;
    }
}
