
/* Social Sharing Styles */
.social-sharing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 1px solid #dee2e6;
}

.sharing-label {
  font-weight: 600;
  color: #495057;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.share-btn {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-facebook { color: #1877f2; }
.share-facebook:hover { background: #1877f2; color: white; }

.share-twitter { color: #1da1f2; }
.share-twitter:hover { background: #1da1f2; color: white; }

.share-linkedin { color: #0077b5; }
.share-linkedin:hover { background: #0077b5; color: white; }

.share-copy { color: #6c757d; }
.share-copy:hover { background: #6c757d; color: white; }

@media (max-width: 768px) {
  .social-sharing {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .sharing-label {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
