.site-footer {
    position: relative;
    width: 100%;
    padding: 1rem 2rem 1.5rem;
}

@media (max-width: 1024px) {
    .site-footer {

        display: none;
    }
}

.footer-inner {
    position: relative;
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    margin: 0;
    text-align: center;
}

.legal-link {
    position: absolute;
    right: 0;
    margin: 0;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .legal-link {
        bottom: 0.5rem;
        left: 0.75rem;
    }
}

.legal-link:hover {
    color: var(--color-green);
}


.mobile-menu-footer {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.5rem;
        margin-top: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid var(--color-border);
        text-transform: none;
        white-space: nowrap;
    }

    .mobile-menu-footer a {
        text-transform: none;
    }
}