/**
 * Bank footer layout parity for networklabs.hn.
 * Labs webflow export lacked .footer-block-two.one-column-wide and related rules.
 * Also restores GET UPDATES submit arrow (footer-submit-arrow.svg).
 */

.bank-footer.start-dark .footer-container {
  border-radius: 4px;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 40px;
  font-family: Open Sans, sans-serif;
  display: block;
  position: relative;
}

.bank-footer .footer-wrapper-two {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.bank-footer .footer-block-two {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bank-footer .footer-block-two.signup-newsletter {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: none;
  min-width: 400px;
  display: block;
}

.bank-footer .footer-block-two.one-column-wide {
  max-width: 20%;
}

.bank-footer .footer-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.bank-footer .footer-title._2nd {
  margin-top: 34px;
}

.bank-footer a.footer-title-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.bank-footer a.footer-title-link:hover,
.bank-footer a.footer-title-link:focus-visible {
  color: #1d5dff;
  border-bottom-color: rgba(29, 93, 255, 0.35);
  outline: none;
}

.bank-footer .moon-footer-link {
  color: #fff;
  cursor: pointer;
  margin-top: 12px;
  font-size: 16px;
  text-decoration: none;
  display: block;
}

.bank-footer .moon-footer-link:hover {
  color: #ff7a00;
}

.bank-footer .w-dyn-list,
.bank-footer .w-dyn-items,
.bank-footer .w-dyn-item {
  display: block;
  width: 100%;
}

.bank-footer .footer-mission {
  color: #1a1b1fcc;
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}

.bank-footer .footer-logo-container {
  display: flex;
  align-items: center;
}

.bank-footer .footer-form-container {
  margin-top: 30px;
}

.bank-footer .footer-form-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2px;
  display: flex;
}

.bank-footer .footer-form-field {
  border: 1px solid #a6b1bf;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 100%;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
}

.bank-footer .footer-form-submit {
  background-color: #1a1b1f;
  background-image: url("../images/footer-submit-arrow.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 50px;
  height: 48px;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
}

.bank-footer .footer-form-submit:hover {
  background-color: #3a4554;
}

.bank-footer .footer-fineprint {
  width: 100%;
  margin-top: 36px;
}

.bank-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Dark theme — match bank footer surfaces */
html[data-theme="dark"] .bank-footer .moon-footer-link {
  color: rgba(255, 255, 255, 0.88);
}

html[data-theme="dark"] .bank-footer .footer-mission {
  color: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .bank-footer .footer-form-field {
  color: var(--nb-fg, #f2f4f8);
  background-color: rgba(255, 255, 255, 0.03);
  border-color: var(--nb-border, rgba(255, 255, 255, 0.14));
}

@media screen and (max-width: 991px) {
  .bank-footer .footer-container {
    width: 90%;
    max-width: 750px;
  }

  .bank-footer .footer-block-two.signup-newsletter {
    display: none;
  }

  .bank-footer .footer-wrapper-two {
    flex-wrap: wrap;
  }

  .bank-footer .footer-block-two.one-column-wide {
    max-width: none;
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .bank-footer .footer-block-two.one-column-wide {
    width: 100%;
    max-width: none;
  }

  .bank-footer .footer-wrapper-two {
    flex-direction: column;
  }
}
