/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.wise-footer {
    margin-top: 96px;
    border-top: 1px solid var(--line-soft);
    padding: 18px var(--pad);

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.wise-footer a:first-child {
    justify-self: start;
}

.wise-footer__copyright {
    justify-self: center;
}

.wise-footer__copyright {
    margin: 0;
    font-family: var(--mono), monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-dim);
}

.wise-footer__link {
    font-family: var(--mono), monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-muted);
    transition: color 0.2s ease;
    margin: 0 8px;
}

.wise-footer__link:hover {
    color: var(--accent);
}
.wise-footer__links {
    justify-self: end;
}

/* Mobile */
@media (max-width: 768px) {
    .wise-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .wise-footer__links {
        display: none;
    }

    .wise-footer a:first-child {
        order: 1;
    }
    .wise-footer__copyright {
        order: 2;
        text-align: center;
    }
}