.new_posts_sect .sect_title {
    text-align: left;
    text-transform: unset;
    font-weight: 500;
    line-height: 1.3;
}
.new_posts_sect .tabs_wrap {
    overflow-x: auto;
    width: 100%;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
}
.new_posts_sect .tabs_wrap:not(:last-child) {
    margin-bottom: 1.25em;
}
.new_posts_sect .tabs {
    display: flex;
    flex-wrap: wrap;
    width: max-content;
}
.new_posts_sect .tab {
    box-sizing: border-box;
    height: 3.125em;
    display: flex;
    align-items: center;
    padding: 0 1em;
    border-bottom: 0.125em solid #EEF4FF;
    color: #2F3132;
    text-decoration: none;
    margin: 0;
    font-weight: 500;
}
.new_posts_sect .tab:not(:last-child) {
    margin-right: 0.5em;
}
.new_posts_sect .tab.active,
.new_posts_sect .tab:hover {
    border-bottom-color: #2D74FF;
}



.new_post_cards {
    display: flex;
    flex-wrap: wrap;
    margin: -0.625em;
}
.new_post_cards:not(:last-child) {
    margin-bottom: 2em;
}
.new_post_card {
    box-sizing: border-box;
    width: calc(50% - 1.25em);
    margin: 0.625em;
    background-color: #F6F6F6;
    padding: 1.25em;
    border-radius: 1.25em;
    display: flex;
    flex-direction: column;
    color: #1E1E1E;
}
.new_post_card:hover {
    text-decoration: none;
}
.new_post_card_img {
    background-position: center;
    background-size: cover;
    border-radius: 0.625em;
}
.new_post_card_img:not(:last-child) {
    margin-bottom: 1.25em;
}
.new_post_card_img:before {
    content: '';
    display: block;
    padding: 32.5% 0;
}
.new_post_card_info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.new_post_card_info:not(:last-child) {
    margin-bottom: 1.5em;
}
.new_post_card_cats {
    display: flex;
    flex-wrap: wrap;
    margin: -0.125em;
}
.new_post_card_cats:not(:last-child) {
    margin-bottom: 0.625em;
}
.new_post_card_cat {
    display: flex;
    align-items: center;
    padding: 0 0.625em;
    box-sizing: border-box;
    background-color: #EAEAFF;
    color: #545BFE;
    height: 1.5em;
    max-width: calc(100% - 0.25em);
    margin: 0.125em;
    border-radius: 0.25em;
    line-height: 1.1;
}
.new_post_card_cat_name {
    font-size: 0.75em;
}
.new_post_card_date  {
    color: #5D5D5D;
    line-height: 1.1;
    font-size: 0.75em;
}
.new_post_card_date:not(:last-child) {
    margin-bottom: 1em;
}
.new_post_card_title {
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.125em;
}
.new_post_card_title:not(:last-child) {
    margin-bottom: 0.66em;
    height: 2.8em;
    text-overflow: ellipsis;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -moz-box-orient: vertical;
    display: -moz-box;
}
.new_post_card_excerpt {
    color: #1a1a1a;
    font-size: 0.875em;
    line-height: 1.4;
    text-overflow: ellipsis;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -moz-box-orient: vertical;
    display: -moz-box;
    height: 5.6em;
}
.new_post_card_excerpt:not(:last-child) {
    margin-bottom: 1.7em;
}
.new_post_card_read {
    font-size: 0.875em;
    background-color: transparent;
    padding: 0;
    margin: auto 0 0;
    color: inherit;
    border: none;
    text-transform: uppercase;
    text-decoration: underline;
    text-align: left;
    cursor: pointer;
}
@media(max-width: 559px) {
    .new_post_card {
        width: calc(100% - 1.25em);
    }
    .new_posts_sect .tabs_wrap {
        font-size: 0.75em;
    }
    .new_posts_sect .tabs_wrap:not(:last-child) {
        margin-bottom: 1.75em;
    }
}