/**
 * SimRacingCockpit.gg - Single post styles (share buttons)
 * @version 1.0.0
 */

.zak-share-buttons {
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
  font-size: inherit;
}

.zak-share-buttons .share-label {
  margin-right: 8px;
  color: inherit;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  color: #666;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn svg {
  width: 16px;
  height: 16px;
}

.share-x:hover { color: #000; }
.share-reddit:hover { color: #FF4500; }
.share-threads:hover { color: #000; }
.share-facebook:hover { color: #1877F2; }
.share-linkedin:hover { color: #0A66C2; }

@media (max-width: 768px) {
  .zak-share-buttons {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }

  .zak-share-buttons .share-label {
    display: inline-block;
    margin-bottom: 5px;
  }
}
