/* Social links in footer brand col */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin: 1.25rem 0 1.75rem;
}

.footer-social-label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.62);
  margin-right: .25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
  flex-shrink: 0;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.footer-social-link svg { width: 15px; height: 15px; }
.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}

@media (max-width: 380px) {
  .footer-social-label { flex-basis: 100%; margin-right: 0; }
}
