.social-share {
    margin: 40px 0;
    padding: 20px;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centrage horizontal */
    gap: 20px;
}

.share-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-text-2);
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.share-btn i {
    font-size: 1.2rem;
    font-style: normal;
    font-family: serif;
}

.share-btn.facebook i,
.share-btn.whatsapp i {
    font-size: 0.9rem;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.x-twitter {
    background: #000000;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.telegram {
    background: #0088cc;
}

@media (max-width: 600px) {
    .social-share {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}