.blog_mainpage {}
.blog__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.125;
    letter-spacing: -0.02em;
    margin: 0 0 40px;
    color: #323232;
}
.wrap_blog_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wrap_blog_item {
    width: 33%;
}
.blog_item {
    margin: 10px 10px 30px 10px;
}
.blog_item_wrap_img {
    position: relative;
}
.blog_item_img {
    border-radius: 16px;
    margin-bottom: 16px;
}
.blog_item_img img {
    width: 100%;
    border-radius: 16px;
}
.blog_item_tags {
    display: flex;
    position: absolute;
    left: 10px;
    bottom: 10px;
}
.blog_item_tag {
    border-radius: 24px;
    padding: 4px 16px;
    margin-right: 3px;
    background-color: rgba(256,256,256,0.8);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #323232;
}
.blog_item_sect {}
.blog_item_duration {}
.blog_item_meta {
    display: flex;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #7e7e7e;
    margin-bottom: 16px;
}
.blog_item_date {
    display: flex;
    margin-right: 16px;
}
.blog_item_date span {
    display: flex;
    margin-right: 8px;
    padding-top: 1px;
}
.blog_item_comment {
    display: flex;
    margin-right: 16px;
}
.blog_item_comment span {
    display: flex;
    margin-right: 8px;
    padding-top: 3px;
}
.blog_item_title,
.blog_item_title a {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #000;
    margin-bottom: 16px;
}
.blog_item_desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.7);
}

.blog_link_more__cta {
    display: inline-block;
    background-color: #524EAB;
    border-radius: 8px;
    padding: 16px 32px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 120%;
    color: #FFFFFF;
}
.blog_link_more__cta:hover,
.blog_link_more__cta:focus {
    background-color: rgba(99, 94, 204, 0.9);
    color: #ffffff;
    text-decoration: none;
}
@media screen and (min-width: 640px) and (max-width: 979px) {
    .wrap_blog_item {
        width: 50%;
    }
}
@media screen and (max-width: 639px) {
    .wrap_blog_item {
        width: 100%;
    }
}