/* ===== BASE ===== */

.footer {
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    color: var(--color-text);
    font-size: 0.9rem;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* ===== META ===== */

.footer__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.footer__copyright {
    margin: 0;
}

.footer__nav {
    display: flex;
    gap: 1rem;
}

.footer__link {
    text-decoration: none;
    color: var(--color-text);
}

.footer__link:hover {
    color: var(--color-accent);
}

/* ===== SOCIALS ===== */

.footer__socials {
    display: flex;
    gap: 1rem;
}

.footer__social {
    display: inline-flex;
}

.social-icon {
    width: 18px;
    height: 18px;
    display: block;
    color: var(--color-text);
}

/* ===== MOBILE STACK ===== */

@media (max-width: 768px) {

    .footer {
        padding: 1rem 1.5rem;
    }

    .footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .footer__meta {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer__nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}