/* Стили для кнопки поделиться */
.article-share {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.inline-share-buttons {
    display: flex;
    align-items: center;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s;
}

.share-button:hover {
    background-color: #e0e0e0;
}

.share-button svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Стили для встроенных кнопок социальных сетей */
.inline-social-buttons {
    display: none; /* Изначально скрыты */
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background-color: #2BB867;
    color: #333;
}

/* Стили для кнопок социальных сетей */
.facebook-btn {
    background-color: #4267B2;
    color: white;
}

.twitter-btn {
    background-color: #1DA1F2;
    color: white;
}

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

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

.copy-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.copy-btn.copied {
    background-color: #4CAF50;
    color: white;
}

.social-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Для мобильных устройств */
@media (max-width: 576px) {
    .inline-social-buttons {
        width: 100%;
    }
    
    .social-btn {
        flex: 1;
        padding: 8px;
        font-size: 12px;
    }
}

.article-share {
    position: relative;
}

.share-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
}

.share-button svg {
    width: 24px;
    height: 24px;
}

.social-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    background-color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.social-btn:hover {
    background-color: #e5e7eb;
}

.inline-social-buttons {
    display: flex;
}