/* UBF - Blog post stilovi */

.blog-img-float {
    float: left;
    width: 40%;
    margin: 0 20px 15px 0;
}
.blog-img-float img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.blog-desc, .th-blog .text-body { text-align: justify; }
.th-blog blockquote { clear: both; display: table-cell; }

/* Share sekcija */
.blog-share-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.blog-share-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.blog-share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.share-facebook { background: #1877f2; }
.share-facebook:hover { background: #0d65d9; }

.share-twitter { background: #1da1f2; }
.share-twitter:hover { background: #0c8de0; }

.share-linkedin { background: #0a66c2; }
.share-linkedin:hover { background: #084e96; }

.share-whatsapp { background: #25d366; }
.share-whatsapp:hover { background: #1ebe57; }

.share-telegram { background: #0088cc; }
.share-telegram:hover { background: #006da3; }

.share-email { background: #6b7280; }
.share-email:hover { background: #4b5563; }

@media (max-width: 576px) {
    .blog-img-float {
        float: none;
        width: 100%;
        margin: 0 0 15px 0;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
