/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px; /* adjust based on your header height */
    z-index: 10;
}

@media (max-width: 991px) {
    .sticky-sidebar {
        position: static;
        top: auto;
    }
}

.blog-description p, .blog-description ul, .blog-description ol, .blog-description span {
    font-size: 1.15rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.45rem;
    text-align: justify;
}
