.blog-container {
    justify-content: space-between;
}

.title-circle {
    height: 20px;
    width: 20px;
    display: block;
    background: #23bf65;
    border-radius: 50%;
}
.blog-title{
    margin: 1rem 0;
}

.blog-sidebar {
    width: 25%;
}

.popular-tags {
    border-bottom: 1px solid #ffffff1a;
}

.blog-sidebar__container {
    border-top: 4px solid #27975b;
    position: sticky;
    top: 10px;

}

.popular-tags__item {
    display: inline-block;
    background: #ffffff1a;
    margin: .4rem;
    padding: .4rem;
    border-radius: .5rem;
    color: #d6d6d6;
}

.post-item__description {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    height: 6rem;
}

.category-item:hover, .category-item.active {
    background: #ffffff1a;
    border-radius: .5rem;
}

.blog-posts {
    width: 75%;
}

@media (max-width: 1199px) {
    .blog-container {
        justify-content: center;
    }
    .blog-title{
        flex-wrap: wrap;
        line-height: 2;
        margin: 1rem !important;
    }

    .blog-sidebar {
        display: none;
    }

    .blog-posts {
        width: 100%;
    }

}
