/* =========================================
   Footer
========================================= */

.footer {
    position: relative;
    z-index: 5;

    padding: 4rem 1rem;

    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.5);
}

.footer__inner {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;

    font-family: "Manrope", sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;

    text-align: center;
}

.footer p {
    margin: 0;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer a {
    color: inherit;
    text-decoration: none;

    transition: color 0.25s ease;
}

.footer a:hover {
    color: var(--text-light);
}

.footer__credit a {
    color: rgba(255, 255, 255, 0.8);
}


/* Desktop */

@media only screen and (min-width: 48rem) {

    .footer {
        padding: 3rem clamp(3rem, 7vw, 8rem);
    }

    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        gap: 3rem;

        text-align: left;
    }

    .footer__legal {
        position: absolute;
        left: 50%;

        transform: translateX(-50%);
    }
}