.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-col .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  padding: 9px 16px;
  border: 1px solid rgba(201, 166, 58, 0.48);
  border-radius: 999px;
  color: #e0c46a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-col .footer-social-link:hover {
  border-color: #e0c46a;
  background: rgba(201, 166, 58, 0.14);
  color: #fff;
  transform: translateY(-1px);
}

.footer-col .footer-social-link:focus-visible {
  outline: 2px solid rgba(224, 196, 106, 0.92);
  outline-offset: 3px;
}

@media (max-width: 420px) {
  .footer-socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col .footer-social-link {
    width: 100%;
    padding-inline: 10px;
  }
}
