/* Social Share Pro */
.socialshare-wrapper {
  display: flex;
  align-items: center;
  margin: 16px 0;
}
.socialshare-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.socialshare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  transition: transform .15s ease, opacity .15s ease;
}
.socialshare-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}
.socialshare-btn:hover {
  transform: scale(1.12);
  opacity: .85;
  text-decoration: none;
}
.socialshare-btn:active {
  transform: scale(1);
  opacity: .6;
}
@media (max-width: 576px) {
  .socialshare-btn svg { width: 30px; height: 30px; }
}
