/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 12 2025 | 19:24:24 */
.social-share__buttons a {
	color: var(--white);
}
/* Основные стили контейнера */
.social-share-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.social-share__label {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    flex-shrink: 0;
}

.social-share__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Общие стили кнопок */
.social-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-share__icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.social-share__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.social-share__btn:hover .social-share__icon {
    transform: scale(1.1);
}

/* Индивидуальные стили для каждой кнопки */
.social-share__twitter {
    background-color: #000000;
}

.social-share__twitter:hover {
    background-color: #222;
}

.social-share__facebook {
    background-color: #1877f2;
}

.social-share__facebook:hover {
    background-color: #166fe5;
}

.social-share__linkedin {
    background-color: #0a66c2;
}

.social-share__linkedin:hover {
    background-color: #0959ab;
}

.social-share__pinterest {
    background-color: #e60023;
}

.social-share__pinterest:hover {
    background-color: #cc001f;
}

.social-share__telegram {
    background-color: #0088cc;
}

.social-share__telegram:hover {
    background-color: #0077b5;
}

/* Адаптивность */
@media (max-width: 480px) {
    .social-share-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .social-share__buttons {
        gap: 8px;
    }
    
    .social-share__btn {
        width: 36px;
        height: 36px;
    }
    
    .social-share__icon {
        width: 18px;
        height: 18px;
    }
}