/* Section de partage d'article - Scolynk AI */
.share-article-section {
    margin: 3rem 0 2rem 0;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    text-align: center;
}
.share-article-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color, #222);
}
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.6rem;
    text-decoration: none;
    color: #fff;
    background: #222;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: none;
}
.share-btn.facebook { background: #1877f3; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; color: #fff; }
.share-btn.twitter { background: #1da1f2; }
.share-btn:hover {
    transform: translateY(-3px) scale(1.08);
    opacity: 0.92;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
@media (max-width: 600px) {
    .share-article-section { padding: 1.2rem 0.3rem; }
    .share-buttons { gap: 0.7rem; }
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
} 