.share-article-section {
  padding: 40px 0;
  background-color: #f8f9fa;
}
.share-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0,0,0,0.02);
  margin: 0 auto;
  max-width: 100%;
}
.share-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.share-title i {
  color: #800000;
  font-size: 1rem;
}
.share-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.share-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
}
.share-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  color: #fff !important;
}
.share-icon.facebook { background-color: #1877F2; }
.share-icon.whatsapp { background-color: #25D366; }
.share-icon.linkedin { background-color: #0077B5; }
.share-icon.twitter { background-color: #1DA1F2; }
.share-icon.copy-link { background-color: #800000; }

@media (max-width: 768px) {
  .share-box {
    padding: 25px;
    border-radius: 15px;
  }
  .share-title {
    font-size: 1rem;
  }
  .share-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
