/* Кнопки поделиться в соцсетях */
.social-share {
    margin: 2rem 0;
}

.social-share h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color, #333);
    font-weight: 600;
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Цвета для разных соцсетей */
.share-btn.vk {
    background: #4680C2;
    color: white;
}

.share-btn.vk:hover {
    background: #3a6ba5;
    color: white;
}

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


.share-btn.telegram:hover {
    background: #006ba3;
    color: white;
}

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

.share-btn.whatsapp:hover {
    background: #1da851;
    color: white;
}

.share-btn.email {
    background: #6c757d;
    color: white;
}

.share-btn.email:hover {
    background: #545b62;
    color: white;
}

/* Мобильная версия */
@media (max-width: 576px) {
    .social-share {
        margin: 1.5rem 0;
    }
    
    .share-buttons {
        gap: 0.5rem;
    }
    
    .share-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        gap: 0.4rem;
        flex: 1;
        justify-content: center;
        min-width: calc(50% - 0.25rem);
    }
    
    .share-btn svg {
        width: 18px;
        height: 18px;
    }
}