

.footer {
    background: var(--bg-alt);
    padding: 1.8rem 8%;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    color: var(--text-sub);
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-note {
    color: var(--text-sub);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .footer { 
        padding: 1.5rem 6%; 
    }
    .footer-bottom { 
        justify-content: center; 
        text-align: center; 
        flex-direction: column;
        gap: 0.4rem;
    }
}
