.footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(16px, 2vw, 40px);
}

.footer-bottom > :first-child {
    justify-self: start;
}

.footer-filing {
    justify-self: center;
    white-space: nowrap;
}

.footer-bottom > :last-child {
    justify-self: end;
    text-align: right;
}

@media (max-width: 1200px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 8px;
        text-align: center;
    }

    .footer-bottom > :first-child,
    .footer-filing,
    .footer-bottom > :last-child {
        justify-self: center;
        text-align: center;
    }
}
