.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.footer-social-label {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
}

.footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-icons .social-btn {
  display: grid;
  place-items: center;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  line-height: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  font-size: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.footer-social-icons .social-btn:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 20px rgba(0, 0, 0, 0.18);
}

.footer-social-icons .social-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--muted);
  display: block;
  margin: 0 auto;
  transition: fill 200ms ease;
}

.footer-social-icons .social-btn:hover svg {
  fill: var(--gold);
}

@media (max-width: 520px) {
  .footer-social {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }
}
