.footer {

    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 12px;
    color: var(--color-muted);
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    text-decoration: none;
    color: var(--color-muted);
    transition: color 0.2s ease;
}

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

.footer-root {
    display: none;
}

@media (max-width: 768px) {
    #footer-root {
        display: none !important;
        height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .footer-root {
        display: block;
        position: relative;
        z-index: 1;
        margin-top: -16px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .footer {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
        padding: 0 12px 8px;
        font-size: 10px;
        white-space: nowrap;
    }

    .footer__links {
        gap: 10px;
    }
}
