.site-shared-footer {
    padding: 48px 24px;
    background: #1d2939 !important;
    color: #fff;
    font-size: 14px;
}

.site-shared-footer,
.site-shared-footer * {
    box-sizing: border-box;
}

.site-shared-footer > .container {
    width: min(100%, 1280px);
    margin: 0 auto;
}

.site-footer-desktop {
    display: block;
}

.site-footer-mobile {
    display: none;
}

.site-shared-footer .site-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(210px, .9fr)
        minmax(150px, .72fr)
        minmax(150px, .72fr)
        minmax(280px, 1.35fr);
    gap: clamp(32px, 4vw, 68px);
    align-items: start;
}

.site-footer-brand,
.site-footer-section,
.site-footer-contact {
    min-width: 0;
}

.site-shared-footer .site-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    text-align: center;
}

.site-shared-footer .site-footer-logo-row {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
}

.site-shared-footer .site-footer-logo-row img {
    display: block;
    width: auto !important;
    max-width: 190px;
    height: 44px !important;
    object-fit: contain;
}

.site-shared-footer .site-footer-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    color: #aab4c3;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}

.site-shared-footer .site-footer-qrcode img {
    display: block;
    width: 92px !important;
    height: 92px !important;
    border-radius: 4px;
    object-fit: cover;
}

.site-shared-footer .site-footer-socials {
    display: flex;
    min-height: 22px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #aab4c3;
    font-size: 17px;
    line-height: 1;
}

.site-shared-footer .site-footer-section h3 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 19px;
    line-height: 1.4;
}

.site-shared-footer .site-footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-shared-footer .site-footer-section li {
    margin: 10px 0;
    color: #aab4c3;
    font-size: 14px;
    line-height: 1.65;
}

.site-shared-footer .site-footer-section a {
    color: #aab4c3;
    text-decoration: none;
}

.site-shared-footer .site-footer-section a:hover {
    color: #fff;
}

.site-shared-footer .site-footer-contact li {
    align-items: flex-start;
    overflow-wrap: anywhere;
}

.site-shared-footer .site-footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #aab4c3;
    text-align: center;
}

.site-shared-footer .site-footer-legal p {
    width: 100%;
    margin: 0;
    text-align: center;
}

@media (max-width: 1100px) and (min-width: 768px) {
    .site-shared-footer .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .site-shared-footer {
        padding: 28px 20px;
    }

    .site-footer-desktop {
        display: none !important;
    }

    .site-footer-mobile {
        display: flex !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: 0 !important;
    }
}
