footer { padding: 42px 0; }
.footer-layout { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 38px; }
.footer-layout .brand { width: 135px; justify-self: start; }
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social a,
.footer-social-pending {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #F5F7FA;
  background: #171F2A;
  border: 1px solid #2C3644;
  border-radius: 10px;
}
.footer-social a { transition: color .2s, border-color .2s, background .2s, transform .2s; }
.footer-social a:hover {
  color: #D79044;
  border-color: #D79044;
  background: #1D2633;
  transform: translateY(-2px);
}
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-social-pending { opacity: .46; cursor: default; }
.footer-meta { justify-self: end; text-align: right; }
.footer-meta span { display: block; color: #D79044; font-size: .75rem; margin-bottom: 7px; }
.footer-meta p { color: #939DAB; font-size: .75rem; }
@media (max-width: 760px) {
  footer { padding: 38px 0; }
  .footer-layout { grid-template-columns: 1fr; justify-items: center; gap: 22px; }
  .footer-layout .brand,
  .footer-meta { justify-self: center; }
  .footer-meta { text-align: center; }
}
