/* ==========================================================================
   Footer Component
   ========================================================================== */

.site-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* ---- Bottom Bar ---- */
.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer__copyright {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs) var(--space-md);
}

.footer__legal a {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.footer__legal a:hover,
.footer__legal a:focus {
    color: var(--color-sage);
}
