.social .social-icon {
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.social .social-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social .social-facebook {
  background: #1877f2;
}

.social .social-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #c13584 35%, #e1306c 58%, #f77737 78%, #fcaf45 100%);
}

.social .social-icon:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 7px 18px rgba(0, 0, 0, .35);
}

.social .social-icon:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .social .social-icon {
    width: 42px;
    height: 42px;
    padding: 9px;
  }
}
