@media (min-width: 1200px) {

    .footer__inner {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 6.25rem;
    }

    .footer__column {
        position: relative;
        width: fit-content;
        max-width: calc(100% / 3);
    }
    
    .footer__column:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 0;
        right: -3.125rem;
        width: 1px;
        height: 100%;
        background-color: var(--footer-text-color);
    }
}