.mj-inpirasi-item {
    padding: 18px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    color: #424242;
    border-left: 4px solid #E5E5E5;
    list-style: none;
    cursor: pointer;

    border-radius: unset !important;
}

.mj-inpirasi-item.selected {
    border-left: 4px solid #21928F;
}

.mj-inpirasi-item.selected > label {
    color: #21928F;
}

.mj-inpirasi-item > label {
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    
    color: var(--text-main);

    margin-bottom: 8px;

    display: block;
    cursor: pointer;
}

.mj-inpirasi-item > span {
    display: inline-block;
    
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    color: #424242;
    padding: 0 12px;
    border-right: 1px solid #e5e5e5;
}

.mj-inpirasi-item > span:first-of-type {
    padding: 0 12px 0 0;
}

.mj-inpirasi-item > span:last-of-type {
    border-right: none;
}

.mj-inpirasi-content {
    display: none;
}

.mj-inpirasi-content.show-content{
    display: flex;
}

.blog-tab-switch > nav {
    background: #EAF8F7;
    border: 1px solid #F5F5F5;
    margin: 0px;
}

.card-blog-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#blog-highlight img {
    width: 50%;
    height: 400px;
    object-fit: cover;
}

#category-post-holder {
    position: relative;
    min-height: 240px;
}

#new-article .mj-card-display > img,
#category-post-inner .mj-card-display > img,
#solusi-post-inner .mj-card-display > img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

#solusi-post-inner {
    position: relative;
    min-height: 240px;
}

#solusi-post-inner .mj-card-display {
    background: transparent;
}

.blog-category-holder {
    position: relative;
}

.blog-category-inner {
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 6px;
    background: #EAF8F7;
    border: 1px solid #F5F5F5;
    border-radius: 32px;
    box-sizing: border-box;
}

.blog-category-inner > a {
    text-decoration: none;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #196D6B;
    border-radius: 24px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 12px;
}

.blog-category-inner > a:last-child {
    margin-right: 0;
}

.blog-category-inner > a.active {
    background: #FFFFFF;
    box-shadow: 0px 1px 3px rgb(16 24 40 / 10%), 0px 1px 2px rgb(16 24 40 / 6%);
}

.blog-category-selector {
    display: none;
}

#cat-more {
    text-align: right;
}

ul.solusi-category {
    padding: 0;
    margin: 0;
}

ul.solusi-category > li {
    padding: 18px;
    cursor: pointer;
    border-left: 4px solid #e5e5e5;
    list-style: none;
}

ul.solusi-category > li.active {
    border-left: 4px solid var(--lime-500);
}

ul.solusi-category > li > label {
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    color: var(--text-main);
    margin-bottom: 8px;
    display: block;
    cursor: pointer;
}

ul.solusi-category > li > span {
    display: inline-block;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #424242;
}

#blog-highlight a.mj-title-text:hover {
    color: var(--text-secondary);
}

#whatsapp-tooltip-content {
    cursor: pointer;
}

@media all and (max-width: 768px) {
    #blog-highlight img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .blog-category-inner {
        width: 100%;
        flex-wrap: wrap;
        padding: 12px;
        border-radius: 8px;
        position: absolute;
        z-index: 4;
        display: none;
    }

    .blog-category-inner > a,
    .blog-category-inner > a.active {
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: 8px;
        padding: 0 18px;
        font-size: 16px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.2);
    }

    .blog-category-inner > a.active {
        background: #FFF;
    }

    .blog-category-selector {
        width: 100%;
        padding: 12px;
        background: #ECF5E5;
        border: 1px solid #F5F5F5;
        border-radius: 32px;
        margin-bottom: 12px;
        display: block;
    }
    
    .blog-category-selector > span {
        text-decoration: none;
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        color: #196D6B;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 12px;
        background: #FFFFFF;
        box-shadow: 0px 1px 3px rgb(16 24 40 / 10%), 0px 1px 2px rgb(16 24 40 / 6%);
    }

    #cat-more {
        text-align: left;
        margin: 8px 0 4px 0;
    }
}