.site-footer {
    box-sizing: border-box;
    width: 100%;
    padding: 34px 28px 30px;
    background: #111;
    color: #fff;
    font-family: inherit;
}

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

.site-footer__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.site-footer__brand {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    text-decoration: none;
    transition: opacity .2s ease;
}

.site-footer__links a:hover {
    opacity: .65;
}

.site-footer__copyright {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

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

    .site-footer__links {
        flex-direction: column;
        gap: 12px;
    }
}
.site-footer__source-note {
    width: 100%;
    max-width: none;
    margin-top: 16px;

    color: rgba(255, 255, 255, 0.30);
    font-size: 10px;
    line-height: 1.5;
    font-weight: 400;
}
