.site-footer {
    margin-top: 0;
    color: #e8f2f0;
    background: #417572 !important;
    font-family: var(--portal-font);
}

.site-footer__inner {
    width: min(100% - 40px, 1400px);
    margin: 0 auto;
    padding: 72px 0 52px;
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 0.7fr));
    gap: 52px;
}

.site-brand--footer {
    margin-bottom: 22px;
    color: #fff !important;
}

.site-brand--footer .site-brand__logo {
    width: auto;
    height: 70px;
    max-width: min(280px, 100%);
    filter: brightness(0) invert(1);
}

.site-brand--footer .site-brand__mark {
    box-shadow: none;
}

.site-footer__brand p {
    max-width: 360px;
    margin: 0;
    color: #d1e2df;
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
}

.site-footer__column h2 {
    margin: 5px 0 20px;
    color: #fff;
    font-family: var(--portal-font) !important;
    font-size: 14px;
    line-height: 1.2 !important;
    font-weight: 750 !important;
    letter-spacing: 0.02em;
}

.site-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column li {
    margin: 0 0 12px;
}

.site-footer__column a {
    color: #d1e2df !important;
    font-size: 14px;
    line-height: 1.5;
    transition: color 160ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
    color: #fff !important;
}

.site-footer__bottom {
    width: min(100% - 40px, 1400px);
    margin: 0 auto;
    padding: 24px 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
    margin: 0;
    color: #c3d9d5;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .site-footer__inner {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-footer__inner {
        width: min(100% - 32px, 1400px);
        padding: 52px 0 36px;
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .site-footer__column:last-child {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        width: min(100% - 32px, 1400px);
        padding: 22px 0 26px;
        display: block;
    }

    .site-footer__bottom p + p {
        margin-top: 8px;
    }
}
