/* Shared Nature Positive series identity */
.np-series-footer-region,
.np-series-footer-region * {
  box-sizing: border-box;
}

.np-series-footer-region {
  --np-series-bg: #12382b;
  --np-series-text: #f6faf7;
  --np-series-muted: #c9dbd1;
  --np-series-link: #e4f5d8;
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(246, 250, 247, .22);
  border-radius: 0;
  background: var(--np-series-bg);
  color: var(--np-series-text);
  font-family: inherit;
  text-align: left;
}

.np-series-footer-inner {
  width: min(100%, 1200px);
  min-height: 76px;
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.np-series-footer-identity {
  margin: 0;
  display: grid;
  gap: 2px;
  line-height: 1.45;
}

.np-series-footer-identity strong {
  color: var(--np-series-text);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .14em;
}

.np-series-footer-identity span {
  color: var(--np-series-muted);
  font-size: 14px;
}

.np-series-footer-link {
  min-height: 44px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--np-series-link);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-underline-offset: .25em;
  text-decoration-thickness: 1px;
}

.np-series-footer-link:hover {
  color: #fff;
  text-decoration-thickness: 2px;
}

.np-series-footer-link:focus-visible {
  outline: 3px solid #f2d66d;
  outline-offset: 4px;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .np-series-footer-inner {
    min-height: 0;
    padding: 14px 20px 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .np-series-footer-link {
    width: 100%;
    justify-content: flex-start;
  }
}
