/* ============================================================
   Section 11 - Footer
   ============================================================ */

.nl-footer {
    width: 100%;
    padding: 48px 128px 20px;
    background: #0F172B;
}

.nl-footer__inner {
    width: min(1184px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nl-footer__top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.nl-footer__brand-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.nl-footer__brand-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.nl-footer__logo-link {
    display: inline-flex;
    align-items: center;
}

.nl-footer__logo {
    width: clamp(220px, 30vw, 360px);
    height: auto;
}

.nl-footer__nav a:focus-visible,
.nl-footer__legal a:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.95);
    outline-offset: 2px;
}

.nl-footer__nav {
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 44px;
    padding-top: 0;
}

.nl-footer__nav a {
    color: #AFBCD5;
    font-family: var(--nl-font, "Plus Jakarta Sans", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.2px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nl-footer__nav a:hover {
    color: #FFFFFF;
    transform: translateX(2px);
}

.nl-footer__bottom-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nl-footer__rule {
    width: 100%;
    border-top: 1px solid rgba(234, 234, 234, 0.22);
}

.nl-footer__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.nl-footer__copyright,
.nl-footer__legal a {
    margin: 0;
    color: #7C7C7C;
    font-family: var(--nl-font, "Plus Jakarta Sans", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.nl-footer__legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nl-footer__legal a {
    transition: color 0.2s ease;
}

.nl-footer__legal a:hover {
    color: #AFBCD5;
}

.nl-footer__dot {
    width: 2px;
    height: 2px;
    border-radius: 999px;
    background: #7C7C7C;
}

@media (max-width: 1200px) {
    .nl-footer {
        padding: 48px 40px 20px;
    }

    .nl-footer__top {
        gap: 36px;
    }

    .nl-footer__nav {
        min-width: 0;
    }
}

@media (max-width: 860px) {
    .nl-footer {
        padding: 40px 18px 20px;
    }

    .nl-footer__inner {
        gap: 32px;
    }

    .nl-footer__brand-col {
        width: 100%;
        gap: 0;
    }

    .nl-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .nl-footer__nav {
        width: auto;
        min-width: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 24px;
    }
}
