.post-social-sharing {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.post-social-sharing .share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.post-social-sharing .share-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Brand Colors */
.post-social-sharing .facebook {
    color: #1877f2;
}

.post-social-sharing .instagram {
    color: #e4405f;
}

.post-social-sharing .linkedin {
    color: #0a66c2;
}

.post-social-sharing .whatsapp {
    color: #25d366;
}

.post-social-sharing .threads {
    color: #000;
}

/* Hover Backgrounds */
.post-social-sharing .facebook:hover {
    background: #1877f2;
    color: #fff;
}

.post-social-sharing .instagram:hover {
    background: #e4405f;
    color: #fff;
}

.post-social-sharing .linkedin:hover {
    background: #0a66c2;
    color: #fff;
}

.post-social-sharing .whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.post-social-sharing .threads:hover {
    background: #000;
    color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
    .post-social-sharing {
        justify-content: center;
    }

    .post-social-sharing .share-btn {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}