


.nl-footer {
  --nl-footer-navy: var(--brand-navy);
  --nl-footer-lavender: var(--brand-lavender);
  --nl-footer-white: var(--brand-white);

  width: 100%;
  padding: 58px 0 22px;
  color: var(--nl-footer-white);
  background: #09101F;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

.nl-footer *,
.nl-footer *::before,
.nl-footer *::after {
  box-sizing: border-box;
}

.nl-footer p {
  margin-top: 0;
}

.nl-footer-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nl-footer-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.7fr 0.65fr;
  gap: 42px;
  align-items: start;
}

.nl-footer-brand strong {
  display: block;
  color: var(--nl-footer-white);
  font-size: 20px;
  line-height: 1.2;
}

.nl-footer-brand p {
  max-width: 330px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.nl-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 8px;
}

.nl-footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nl-footer-column-heading {
  width: fit-content;
  margin: 0 0 3px;
  padding: 0;
  color: var(--nl-footer-white) !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.8px;
  text-decoration: none;
}

.nl-footer-heading-link:hover {
  color: var(--nl-footer-lavender) !important;
}

.nl-footer-links a:not(.nl-footer-column-heading) {
  width: fit-content;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: inherit;
  text-decoration: none;
}

.nl-footer-links a:not(.nl-footer-column-heading):hover {
  color: var(--nl-footer-lavender);
}

.nl-footer-small {
  text-align: right;
}

.nl-footer-small p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
}

.nl-footer-contact-details {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.nl-footer-contact-details address {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-style: normal;
}

.nl-footer-contact-details a {
  color: inherit;
  text-decoration: none;
}

.nl-footer-contact-details a:hover {
  color: var(--nl-footer-lavender);
}


@media (max-width: 1050px) {
  .nl-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .nl-footer-small {
    text-align: left;
  }
}


@media (max-width: 760px) {
  .nl-footer {
    padding-top: 48px;
  }

  .nl-footer-container {
    width: min(100% - 30px, 1180px);
  }

  .nl-footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nl-footer-small {
    text-align: left;
  }

  .nl-footer-contact-details address {
    flex-direction: column;
  }

  .nl-footer-contact-divider {
    display: none;
  }
}

