/* ── Social Share Bar ── */
.social-share {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1060;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: all .25s ease;
    opacity: .85;
}

.social-share a:hover {
    opacity: 1;
    width: 48px;
}

.social-share .share-fb { background: #1877F2; }
.social-share .share-x  { background: #000;    }
.social-share .share-li { background: #0A66C2; }
.social-share .share-wa { background: #25D366; }
.social-share .share-tg { background: #0088CC; }

.social-share a:first-child { border-radius: 0 8px 0 0; }
.social-share a:last-child  { border-radius: 0 0 8px 0; }

@media (max-width: 768px) {
    .social-share {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
    }

    .social-share a {
        flex: 1;
        border-radius: 0 !important;
        width: auto;
        height: 44px;
    }

    .social-share a:hover {
        width: auto;
    }
}
