/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 34px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: var(--color-green-dark);

    color: var(--color-white);
}


/* =========================
   FOOTER CONTAINER
========================= */

.footer-container {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 30px;
}


/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.footer-brand strong {
    color: var(--color-white);

    font-size: 16px;
    font-weight: 800;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
}


/* =========================
   FOOTER LINKS
========================= */

.footer-links {
    display: flex;
    align-items: center;

    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-gold-light);
}


/* =========================
   COPYRIGHT
========================= */

.footer-copy {
    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

    text-align: right;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .footer-container {
        grid-template-columns: 1fr;

        gap: 18px;

        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        justify-content: center;

        flex-wrap: wrap;

        gap: 14px 20px;
    }

    .footer-copy {
        text-align: center;
    }

}