/* 社群按鈕容器 */
.wsite-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wsite-social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3f3f3f;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.wsite-social-item:hover {
    background-color: #2a2a2a;
}

.wsite-social-facebook { background-color: #3b5998; }
.wsite-social-mail     { background-color: #ea4335; }
.wsite-social-youtube  { background-color: #ff0000; }