footer {
    margin-top: auto;
    padding: 1rem 0.8rem;
    color: #dfeeff;
    background: rgba(8, 20, 33, 0.92);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(6px);
}

footer nav {
    background: transparent;
}

.menu-footer ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 0.56rem 1.1rem;
}

.menu-footer li {
    font-size: 0.84rem;
    text-align: center;
}

.menu-footer a {
    text-decoration: none;
    color: #d3e9d7;
    transition: color 0.2s ease;
}

.menu-footer a:hover,
.menu-footer a:focus-visible {
    color: #ffffff;
}

@media (max-width: 700px) {
    .menu-footer ul {
        flex-direction: column;
        align-items: center;
        gap: 0.34rem;
    }
}
