/**
 * Social Share Block Styles
 */

.social-share-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid #dee2e6;
}

.social-share-label {
  font-weight: 600;
  color: #6c757d;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-share-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-share-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.social-share-link i {
  line-height: 1;
}

/* Platform-specific colors on hover */
.social-share-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.social-share-twitter:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.social-share-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
}

.social-share-email:hover {
  background: #6c757d;
  border-color: #6c757d;
  color: #fff;
}

/* If showing labels */
.social-share-link .social-share-text {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .social-share-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .social-share-links {
    width: 100%;
    justify-content: flex-start;
  }
}
