/* ============================ */
/* Blog Post Sticky Social Share */
/* ============================ */
.share-bar {
    position: fixed;
    top: 40%;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.share-bar a {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-bar a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Share Bar for Mobile */
@media (max-width: 992px) {
    .share-bar {
        top: auto;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        background: rgba(255,255,255,0.95);
        padding: 5px 10px;
        border-radius: 50px;
        gap: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
}
