/**
 * News Share Buttons Styles
 * 新闻分享按钮样式
 * 
 * @package Milestrong
 * @since 2.0.0
 */

/* 分享按钮容器 */
.news-share-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.news-share-buttons-container {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* 分享按钮样式 */
.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-color: #017fff;
    text-decoration: none;
}

.share-button img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.share-button .share-icon {
    font-size: 18px;
    line-height: 1;
    color: #333;
}

.share-button:hover .share-icon {
    color: #017fff;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .news-share-buttons {
        gap: 10px;
    }
    
    .news-share-buttons-container {
        gap: 10px;
    }
    
    .share-button {
        width: 35px;
        height: 35px;
    }
    
    .share-button img {
        width: 18px;
        height: 18px;
    }
    
    .share-button .share-icon {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .news-share-buttons {
        gap: 8px;
    }
    
    .news-share-buttons-container {
        gap: 8px;
    }
    
    .share-button {
        width: 32px;
        height: 32px;
    }
    
    .share-button img {
        width: 16px;
        height: 16px;
    }
    
    .share-button .share-icon {
        font-size: 14px;
    }
}