/* ==========================================
   FOOTER
========================================== */

.site-footer {
    padding: 32px var(--page-padding);
    border-top: 1px solid rgba(28, 27, 41, 0.08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--purple);
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
}

.footer-social a:hover {
    color: var(--purple);
}



/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 640px) {

    /* Footer */

    .site-footer {
        padding: 24px 16px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

}


