

.site-footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 28px 24px;
    box-sizing: border-box;
    margin-top: auto;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-nav {
        gap: 4px 14px;
        justify-content: center;
    }

    .footer-meta {
        flex-direction: column;
        gap: 4px;
    }
}
