.share-article {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 14px;
}

.share-article a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f2f2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.share-article a:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.share-article svg {
    width: 18px;
    height: 18px;
    fill: #333;
}
