.footer-grid-with-wechat {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(320px, auto) auto;
    align-items: center;
    gap: 18px 28px;
}

.footer-grid-with-wechat .footer-brand-block {
    min-width: 0;
}

.footer-grid-with-wechat .footer-links {
    justify-content: center;
    align-items: center;
    gap: 12px 16px;
}

.footer-grid-with-wechat > .wechat-follow {
    justify-self: end;
}

.wechat-follow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 240px;
    margin-top: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    vertical-align: top;
}

.wechat-follow img {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
}

.wechat-follow strong {
    display: block;
    margin-bottom: 2px;
    color: var(--blue);
    font-size: 13px;
}

.wechat-follow p {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .footer-grid-with-wechat {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .footer-grid-with-wechat .footer-links {
        justify-content: flex-start;
    }

    .footer-grid-with-wechat > .wechat-follow {
        justify-self: start;
    }

    .wechat-follow {
        width: auto;
        max-width: none;
    }
}
