.site-footer {
    padding: max(24px, 1.875vw) 0 max(16px, 1.25vw);
    border-radius: var(--m-xs) var(--m-xs) 0 0;
}

.site-footer .custom-logo-link {
    grid-area: 1/3/span 2/span 3
}

.site-footer .footer-address {
    grid-area: 3/3/3/span 3
}

.site-footer .footer-contact {
    grid-area: 1/7/span 3/span 3;
    gap: max(12px, 0.78125vw);
}

.site-footer .footer-contact a {
    display: flex;
    align-items: center;
    gap: .75em;
    font-weight: 400;
    line-height: 1.58;
    letter-spacing: .03em;
    padding: 0 .75em;
    color: var(--blue);
    background: var(--white);
    border-radius: 100vmin;
}

.site-footer .footer-contact a.icon-btn.linkedin::before {
    content: "";
    display: block;
    height: 1em;
    aspect-ratio: 12/13;
    mask: url(../img/icon-linkedin.svg) no-repeat center/contain;
    -webkit-mask: url(../img/icon-linkedin.svg) no-repeat center/contain;
    background: currentColor;
}

.site-footer .footer-nav {
    grid-area: 1/10/1/span 2;
} 

.site-footer .site-badge {
    grid-area: 1/12/span 3/span 3;
    margin-right: max(24px, 1.875vw);
    justify-self: flex-end;
}

.site-footer .footer-copyright {
    grid-area: 4/3/4/span 5;
    margin-top: var(--m-md);
}

.site-footer .footer-legal-nav {
    grid-area: 4/9/4/span 5;
    margin-top: var(--m-md);
    margin-right: max(24px, 3.046875vw);
}

.site-footer .footer-legal-nav .menu li:not(:last-child)::after {
	content: "|";
	margin: 0 .5ch;
}

.site-footer .footer-legal-nav .menu {
	display: flex;
}

@media (max-width: 1499.98px) {
    .site-footer .custom-logo-link {
        grid-area: 1/2/span 2/span 3;
    }

    .site-footer .footer-address {
        grid-area: 3/2/3/span 3;
    }

    .site-footer .footer-contact {
        grid-area: 1/6/span 3/span 4;
    }

    .site-footer .footer-nav {
        grid-area: 1/8/1/span 3;
    }

    .site-footer .site-badge {
        grid-area: 1/11/span 3/span 3;
        margin-right: 0;
    }

    .site-footer .footer-copyright {
        grid-area: 4/2/4/span 6;
    }

    .site-footer .footer-legal-nav {
        grid-area: 4/8/4/span 6;
        margin-right: 0;
        justify-self: flex-end;
    }
}

@media (max-width: 991.98px) {
    .site-footer .custom-logo-link {
        grid-area: 1/2/1/span 12;
        justify-self: center;
    }

    .site-footer .footer-address {
        grid-area: 2/2/2/span 12;
        justify-self: center;
        text-align: center;
    }

    .site-footer .footer-address .wrapper {
        display: flex;
        flex-direction: column;
    }

    .site-footer .footer-address .wrapper .dot {
        display: none;
    }

    .site-footer .footer-contact {
        grid-area: 3/2/3/span 12;
        justify-self: center;
        align-items: center;
        margin-top: var(--m-sm);
    }

    .site-footer .footer-nav {
        grid-area: 4/2/4/span 12;
        justify-self: center;
        margin-top: var(--m-sm);
    }

    .site-footer .site-badge {
        display: none;
    }

    .site-footer .footer-legal-nav {
        grid-area: 5/2/5/span 12;
        justify-self: center;
    }

    .site-footer .footer-legal-nav .menu {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        row-gap: var(--m-xs);
    }
    
    .site-footer .footer-copyright {
        grid-area: 6/2/6/span 12;
        justify-self: center;
        text-align: center;
        line-height: 1.35;
    }
}