/* Social Sharing Styles */

.social-share-container {
  margin: 2rem 0;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  width: 48px;
  height: 48px;
}

.share-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-btn:active {
  transform: translateY(0);
}

.share-btn[data-platform="facebook"]:hover {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}

.share-btn[data-platform="twitter"]:hover {
  background: rgba(29, 161, 242, 0.1);
  color: #1da1f2;
}

.share-btn[data-platform="linkedin"]:hover {
  background: rgba(0, 119, 181, 0.1);
  color: #0077b5;
}

.share-btn[data-platform="whatsapp"]:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.share-btn[data-platform="telegram"]:hover {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
}

.copy-link-btn:hover {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
}

.share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.share-icon svg {
  width: 20px;
  height: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .share-buttons {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .share-btn {
    width: 44px;
    height: 44px;
    padding: 0.6rem;
  }
  
  .share-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .social-share-container {
    margin: 1.5rem 0;
  }
  
  .share-buttons {
    justify-content: center;
    gap: 0.4rem;
  }
  
  .share-btn {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }
  
  .share-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .share-btn {
    color: var(--text-primary-dark, #f7fafc);
  }
  
  .share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}