.site-footer {
    background: #171717;
    color: #ffffff;
    padding: 48px 0 24px;
    border-top: 1px solid #2a2a2a;
}

.footer-top {
    display: grid;
    grid-template-columns: 220px 220px 180px 1fr;
    gap: 32px;
    align-items: start;
}

.footer-title {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

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

.footer-links li + li {
    margin-top: 12px;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #0984e3;
}

.footer-col--social {
    min-width: 120px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #171717;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.footer-social:hover {
    background: #0984e3;
    color: #fff ;
}

.footer-brand {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.footer-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #0984e3;
    color: #ffffff;
    font-size: 18px;
}

.footer-logo-text {
    line-height: 1.15;
    font-size: 14px;
}

.footer-logo-text strong {
    font-size: 16px;
    font-weight: 800;
}

.footer-bottom {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-keywords {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.footer-keywords-label {
    font-size: 14px;
    color: #ffffff;
}

.footer-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #f0f0f0;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    background: transparent;
}

.footer-tag:hover {
    border-color: #8bdd2b;
    color: #8bdd2b;
}

.footer-copyright {
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        justify-content: flex-start;
    }

    .footer-keywords {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 36px 0 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        margin-top: 28px;
        gap: 22px;
    }

    .footer-keywords {
        justify-content: flex-start;
    }
}