
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(223,169,70,.32);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #fff;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer__social-link:hover {
  color: var(--navy-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.footer__social-icon-wrap {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(223,169,70,.14);
  border: 1px solid rgba(223,169,70,.26);
  transition: background-color .2s ease, border-color .2s ease;
}

.footer__social-link:hover .footer__social-icon-wrap {
  background: rgba(4, 19, 38, .12);
  border-color: rgba(4, 19, 38, .18);
}

.footer__social-icon {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.footer__social-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.footer__social-note {
  max-width: 300px;
}

@media (max-width: 720px) {
  .footer__social {
    gap: 10px;
  }

  .footer__social-link {
    min-height: 40px;
    padding: 0 14px 0 10px;
  }

  .footer__social-icon-wrap {
    width: 28px;
    height: 28px;
  }

  .footer__social-icon {
    width: 14px;
    height: 14px;
  }

  .footer__social-label {
    font-size: 12px;
  }
}
