.footer-meta {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(calc(100% - 3rem), 1440px);
    margin: 1.5rem auto 0;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem 1.25rem;
    color: rgba(255, 255, 255, .68);
    font-size: .72rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: .25em;
}

.footer-logos {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
}

.footer-logos img {
    display: block;
    width: 44px;
    height: 44px;
    padding: 4px;
    border-radius: .45rem;
    background: #fff;
    object-fit: contain;
}

@media (max-width: 700px) {
    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        width: min(calc(100% - 2rem), 1440px);
    }

    .footer-logos {
        justify-content: flex-start;
    }

    .footer-logos img {
        width: 40px;
        height: 40px;
    }
}
