#siteFooter {
    background: var(--border-strong);
    color: #c6c6c6;
}

.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.site-footer__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-footer__socials {
    display: flex;
    gap: 0.25rem;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: 1px solid transparent;
    color: #c6c6c6;
    text-decoration: none;
    transition: var(--transition-interactive);
}

.site-footer__social-link:hover {
    color: #fff;
    background: #3d3b43;
}

.site-footer__social-link svg {
    width: 16px;
    height: 16px;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #3d3b43;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.site-footer__legal a {
    font-size: 0.8rem;
    color: #c6c6c6;
    text-decoration: none;
    transition: color 110ms var(--ease-standard);
}

.site-footer__legal a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__copy {
    font-size: 0.75rem;
    color: #8c8c8c;
    font-family: var(--font-mono);
}

@media (max-width: 600px) {
    .site-footer__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
