#featured_articles_container {
    height: 300px;
    overflow: hidden;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
}
#featured_articles_container .single_featured_article {
    flex-grow: 1;
    border-radius: var(--r-lg);
    overflow: hidden;
}
#featured_articles_container .single_featured_article:not(:last-child) {
    margin-right: .5rem;
}
#featured_articles_container .single_featured_article img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#featured_articles_container .single_featured_article .card-img-overlay {
    top: unset;
    z-index: 1;
}
#featured_articles_container .single_featured_article .card-img-overlay:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom,rgba(37,38,40,0) 0,rgba(37,38,40,.8) 60%,#252628 100%);
}

#blog_articles_container .single_blog_article {
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #ccc;
}
#blog_articles_container .single_blog_article:last-child {
    border-bottom: none;
}
#blog_articles_container .single_blog_article img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 350px;
}

.main_blog_container {
    display: flex;
    flex-wrap: nowrap;
    align-items: start;
}
.main_blog_container .main_articles_container {
    padding-right: 60px;
    flex-grow: 1;
}
.main_blog_container .blog_sidebar_container {
    width: 25%;
    min-width: 300px;
}


/* Blog Tree Categories */
#box_blog_categories_body .has-children {
    position: relative;
}
#box_blog_categories_body .has-children .toggle {
    position: absolute;
    right: 5px;
    top: 0;
    height: 32px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    cursor: pointer;
}
#box_blog_categories_body .has-children .toggle i {
    font-size: 20px;
    transition: transform 100ms  linear;
}
#box_blog_categories_body .has-children .children:not(.closed) + .toggle i {
    transform: rotate(180deg);
    transition: transform 100ms  linear;
}
#box_blog_categories_body .single_blog_category {
    width: 100%;
    padding: 5px 0;
}
.has-children .single_blog_category {
    padding-right: 20px !important;
}

#box_blog_categories_body .active {
    color: var(--accent-solid);
    font-weight: 500 !important;
}

#box_blog_categories_body ul.nav li ul.children {
    padding-left: 20px !important;
    border-left: 1px dashed #e2e8f0;
    transition: 1500ms linear;
}
#box_blog_categories_body ul.nav li ul.children.closed {
    height: 0;
    overflow: hidden;
    transition: 1500ms linear;
}

#box_blog_categories_body ul.nav li a:before {
    display: none !important;
}
/* Blog Tree Categories */