/* Footer help buttons: keep the original boxed look even if global `a` styles win. */
.footer .footer-help-nav {
  max-width: 880px;
  margin: 0 auto 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 10px;
}

.footer .footer-help-nav > a,
.footer .footer-help-nav > .footer-help-nav__btn {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  box-sizing: border-box !important;
  width: 100% !important;
  min-height: 34px !important;
  padding: 6px 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #2f3b4a !important;
  border: 1px solid #dde3ea !important;
  border-radius: 6px !important;
  background: #f7f9fb !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
}

.footer .footer-help-nav > a:hover,
.footer .footer-help-nav > a:focus,
.footer .footer-help-nav > .footer-help-nav__btn:hover,
.footer .footer-help-nav > .footer-help-nav__btn:focus {
  color: #111111 !important;
  background: #eef2f6 !important;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .footer .footer-help-nav {
    max-width: 100%;
    margin-left: 14px;
    margin-right: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer .footer-help-nav > a,
  .footer .footer-help-nav > .footer-help-nav__btn {
    min-height: 40px !important;
    font-size: 14px !important;
  }
}
