/* Shared Helpful Hands Harvest footer */

.site-footer {
  padding: 56px 0;
  color: #5f6f66;
  background: #ffffff;
  border-top: 1px solid #e4e9df;
}

.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  text-align: center;
}

.site-footer .footer-logo {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto;
}

.site-footer .footer-copy {
  text-align: center;
}

.site-footer .footer-copy strong {
  display: block;
  margin-bottom: 3px;
  color: #123f2b;
  font-size: 1.2rem;
}

.site-footer .footer-copy p {
  margin: 0 0 3px;
  color: #5f6f66;
}

.site-footer .footer-contact {
  display: flex;
  justify-content: center;
  margin: 4px 0 0;
}

.site-footer .footer-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #123f2b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.site-footer .footer-contact-link:hover,
.site-footer .footer-contact-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer .footer-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.site-footer .footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: #123f2b;
  background: #ffffff;
  border: 2px solid #123f2b;
  border-radius: 50%;
  text-decoration: none;
  line-height: 1;
  box-sizing: border-box;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.site-footer .footer-social-links a i {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: "bootstrap-icons";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

.site-footer .footer-social-links a:hover,
.site-footer .footer-social-links a:focus-visible {
  color: #ffffff;
  background: #123f2b;
  transform: translateY(-2px);
}

.site-footer .footer-note {
  margin: 8px 0 0;
  color: #5f6f66;
  text-align: center;
}

@media (max-width: 480px) {
  .site-footer .footer-social-links {
    gap: 14px;
  }

  .site-footer .footer-social-links a {
    width: 56px;
    height: 56px;
  }

  .site-footer .footer-social-links a i {
    font-size: 1.55rem;
  }
}
