.nl-footer {
    background: #173750;
    color: #ffffff;
    margin-top: clamp(48px, 6vw, 96px);
    padding: clamp(32px, 4vw, 56px) clamp(16px, 5vw, 48px);
}

.nl-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nl-footer a:hover,
.nl-footer a:focus-visible {
    color: #009fe3;
}

.nl-footer__container {
    margin: 0 auto;
    max-width: 1120px;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 48px);
}

.nl-footer__top {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 36px);
    align-items: flex-start;
}

@media (min-width: 768px) {
    .nl-footer__top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.nl-footer__logo {
    display: inline-flex;
    align-items: center;
    max-width: 220px;
}

.nl-footer__info {
    display: grid;
    gap: clamp(20px, 3vw, 32px);
    width: 100%;
}

@media (min-width: 520px) {
    .nl-footer__info {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

.nl-footer__section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nl-footer__title {
    margin: 0;
    font-size: clamp(0.95rem, 0.8vw + 0.6rem, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nl-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nl-footer__link {
    font-size: 1rem;
    font-weight: 500;
    word-break: break-word;
}

.nl-footer__payments {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nl-footer__payments img {
    height: 36px;
    width: auto;
    filter: brightness(2.8);
}

@media (max-width: 480px) {
    .nl-footer__payments {
        gap: 12px;
    }
    .nl-footer__payments img {
        height: 32px;
    }
}

.nl-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nl-footer__social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.nl-footer__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nl-footer__social:hover,
.nl-footer__social:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    color: #009fe3;
}

.nl-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: clamp(16px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 600px) {
    .nl-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.nl-footer__rss {
    font-weight: 500;
}
