.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.social-links .social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: #6847f5;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(58, 38, 151, 0.16);
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.social-links .social-link:hover {
  background: #4f32cc;
  color: #fff;
  box-shadow: 0 8px 18px rgba(58, 38, 151, 0.24);
  transform: translateY(-2px);
}

.social-links .social-link:focus-visible {
  outline: 3px solid #d2c5ff;
  outline-offset: 3px;
}

.social-link img {
  width: 17px;
  height: 17px;
  display: block;
}

@media (max-width: 560px) {
  .social-links .social-link {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .social-link img {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-links .social-link {
    transition: none;
  }
}

@media print {
  .social-links {
    display: none;
  }
}
