.hierarchical-menu, .sub-menu, .menu-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    color: 2B3638;
}

.menu-category, .menu-subcategory {
    margin-bottom: 10px;
}

.category-title, .subcategory-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 4px 0;
    transition: all .3s ease-in-out;
}

.expand-icon {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.menu-posts {
    display: none;
    padding-left: 20px;
}

.menu-posts li a {
    display: block;
    padding: 5px 0;
}

.menu-post.active-post a {
    font-weight: bold;
}

.active-category > .category-title,
.active-subcategory > .subcategory-title,
.menu-post.active-post a {
    font-weight: bold;
}

    ul.menu-posts a {
    color: #3C504F;
}
li.menu-category {
    border-bottom: 1px solid rgba(60, 80, 79, 0.3);
}
    li.menu-subcategory.active-subcategory {
    border-bottom: 1px solid rgba(60, 80, 79, 0.15);
        margin-left: 10px;
}
    .category-title:hover, .subcategory-title:hover, .menu-post:hover {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 5px;
}


/* Responsive Styles */
@media screen and (max-width: 768px) {
    /* Add responsive styles here */
}