/* ==============================================================
   footer.css — футер
   ============================================================== */

.site-footer {
    padding: 32px 0;
    background: #000;
    color: var(--muted-2);
    font-size: 13px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-2);
    transition: all 0.2s ease;
}
.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.footer-social svg { width: 14px; height: 14px; }
