/* share-buttons.css - 仅组件样式，无全局重置 */
.share-buttons {
    display: flow-root;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem 1.3rem;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    background: white;
    color: #1e293b;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    text-decoration: none;  /* 去掉下划线 */
}

.social-btn i {
    font-size: 1.25rem;
}

.btn-fb:hover {
    background: #1877f2;
    color: white;
}

.btn-yt:hover {
    background: #ff0000;
    color: white;
}

.btn-li:hover {
    background: #0a66c2;
    color: white;
}

.btn-wb:hover {
    background: #ff8200;
    color: white;
}

.social-btn:active {
    transform: scale(0.96);
}

@media (max-width: 480px) {
    .social-btn {
        padding: 0.5rem 1rem;
        gap: 0.4rem;
        font-size: 0.85rem;
    }
    .social-btn i {
        font-size: 1rem;
    }
}