footer {
  background: #f8fbf7;
  border-top: 1px solid #eaf4e5;
  padding: 45px 0 25px;
}

footer .footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

footer .footer-membership,
footer .footer-brand,
footer .footer-social {
  flex: 1 1 0;
}

footer .footer-membership {
  text-align: left;
}

footer .footer-climate-logo {
  display: inline-block;
  width: 120px;
  max-width: 100%;
  height: auto;
}

footer .footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

footer .footer-social .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #b0d49f;
  border-radius: 50%;
  background: #fff;
  color: #4a4a4a;
  font-size: 24px;
  text-decoration: none;
  transition: border-color 0.15s ease-in, color 0.15s ease-in, transform 0.15s ease-in;
}

footer .footer-social .social:hover,
footer .footer-social .social:focus {
  color: #1f4010;
  border-color: #93c47c;
  outline: none;
  transform: translateY(-2px);
}

footer .footer-social .social:focus-visible {
  box-shadow: 0 0 0 3px rgba(147, 196, 124, 0.4);
}

footer .footer-social .social-instagram:hover,
footer .footer-social .social-instagram:focus {
  color: #c13584;
}

footer .footer-social .social-youtube:hover,
footer .footer-social .social-youtube:focus {
  color: #f61c0d;
}

footer .footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(176, 212, 159, 0.55);
}

footer .footer-copyright {
  margin: 0;
  font-size: 0.9em;
}

footer .nav-footer {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  footer {
    padding-top: 35px;
  }

  footer .footer-main,
  footer .footer-meta {
    flex-direction: column;
  }

  footer .footer-membership,
  footer .footer-social {
    text-align: center;
  }

  footer .footer-social {
    justify-content: center;
  }

  footer .footer-meta {
    gap: 12px;
    margin-top: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  footer .footer-social .social {
    transition: none;
  }

  footer .footer-social .social:hover,
  footer .footer-social .social:focus {
    transform: none;
  }
}
