.site-footer {
    margin-top: 56px
}

.site-footer-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.site-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 24px 36px;
}

.site-footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer .brand {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.site-footer .footer-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer .footer-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.site-footer .footer-nav a:hover {
    opacity: .9
}

.site-footer .footer-bottom {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #fff;
    opacity: .9;
    font-size: 14px;
}

@media (max-width:520px) {
    .site-footer-inner {
        padding: 24px 18px 30px
    }
}