/* ===== FOOTER ===== */
.footer {
    background: #0545a1;
    color: #e5e7eb;
    padding: 50px 0 18px;
    font-size: 13px;
    font-family: Garet, Inter, system-ui, -apple-system;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer__col img {
    width: 175px;
    height: auto;
    display: block;
    margin: 4px 0 40px;
}

.footer__head {
    font-size: clamp(12px, 3.4vw, 18px);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    margin: 14px 0 20px;
}

.footer__item {
    margin: 0 0 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

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

.footer__item a:hover,
.footer__list a:hover {
    text-decoration: underline;
}

.footer__addr {
    line-height: 1.6;
    margin-top: 4px;
    font-weight: 600;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin: 8px 0;
}

.footer__list a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 14px 0 0;
}

.footer__social img {
    width: 18px;
    height: 18px;
    display: block;
    opacity: .9;
    transition: transform .12s ease, opacity .12s ease;
}

.footer__social a:hover img {
    transform: translateY(-1px);
    opacity: 1;
}

.footer__bottom .full-line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.footer__bottomline {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .12);
    margin: 24px 0;
    flex: 0 0 100%;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 0 4px;
}

.footer__copy {
    margin: 0;
    color: #e5e7eb;
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer__legal a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 12px;
}

.footer__legal a:hover {
    text-decoration: underline;
}

.footer a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .6);
    outline-offset: 2px;
    border-radius: 6px;
}

.footer__legal a::after {
    content: none;
}

.footer__legal a+a::before {
    content: "|";
    margin: 0 10px;
    opacity: .7;
}

@media (max-width: 720px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 560px) {
    .footer {
        padding-top: 22px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin: 0 15px;
        line-height: 20px;
    }

    .footer__col>img {
        margin: 4px auto 24px;
    }

    .footer__social {
        justify-content: center;
    }
}