/* social-share-widget.css */

.social-share-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.social-share-widget button {
  background: none;
  border: 2px solid #000;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-share-widget button:hover {
  transform: scale(1.1);
  background-color: #000;
}

.social-share-widget img {
  width: 24px;
  height: 24px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0);
  transition: filter 0.2s ease;
}

.social-share-widget button:hover img {
  filter: brightness(1000%) invert(1);
}