/* Boutons de partage sur les réseaux sociaux */

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

.social-share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.social-share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

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

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

.social-share-copy:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
}

/* Responsive */
@media (max-width: 640px) {
    .social-share {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .social-share-label {
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    .social-share-buttons {
        display: flex;
        gap: 0.4rem;
        flex-wrap: nowrap;
        flex: 1;
    }
    
    .social-share-btn {
        padding: 0.5rem;
        font-size: 0;
        gap: 0;
        flex-shrink: 0;
        min-width: auto;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
}
