/* Social Share Container */
.social-sharing {
  h3 {
    margin-top: 4px;
    margin-bottom: 10px;
  }

  .social-share-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;

    a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    /* Individual Social Icons */
    a[href*='facebook.com'] {
      background: #1877f2;
    }

    a[href*='x.com'],
    a[href*='twitter.com'] {
      background: #000000;
    }

    a[href*='threads.net'] {
      background: #000000;
    }

    a[href*='reddit.com'] {
      background: #ff4500;
    }

    a[href*='pocket.com'] {
      background: #ee4056;
    }

    a[href*='feed'],
    a[href*='rss'] {
      background: #ee802f;
    }

    a[href*='mailto'] {
      background: #ea4335;
    }

    a[href*='whatsapp'] {
      background: #25d366;
    }

    a[href*='t.me'],
    a[href*='telegram'] {
      background: #0088cc;
    }

    a[href*='linkedin'] {
      background: #0a66c2;
    }

    a[href*='pinterest'] {
      background: #e60023;
    }

    /* Hover Effects */
    a:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      opacity: 0.9;
    }
  }
}
