.news_sect {
    position: relative;
    z-index: 2;
}
.news_sect:first-child {
    padding-top: 5em;
}
.news_sect .items {
    display: flex;
    flex-wrap: wrap;
    margin: -0.75em;
}
.news_sect .item {
    margin: 0.75em;
    width: calc(50% - 1.5em);
    box-sizing: border-box;
    border-radius: 1em;
    padding: 1.5em;
    box-shadow: 0 1px 1px 0 rgba(199, 211, 234, 0.12) inset, 0 1.5em 3em 0 rgba(199, 211, 234, 0.05) inset;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news_sect .item:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0.125em;
    left: 0.125em;
    border-radius: inherit;
    width: calc(100% - 0.25em);
    height: calc(100% - 0.25em);
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(22, 22, 24, 0.00) 0%, #6041FF 100%);
}
.news_sect .item_date {
    color: #EFEDFD;
    font-size: 0.75em;
}
.news_sect .item_date:not(:last-child) {
    margin-bottom: 1em;
}
.news_sect .item_title {
    font-family: Outfit, sans-serif;
    font-size: 1.25em;
    font-weight: 800;
}
.news_sect .item_title:not(:last-child) {
    margin-bottom: 0.6em;
}
.news_sect .item_description {
    color: rgba(239, 237, 253, 0.70);
    font-size: 0.875em;
    line-height: 1.3;
}
.news_sect .item_description:not(:last-child) {
    margin-bottom: 1.5em;
}
.news_sect .item_butt {
    max-width: 100%;
    margin-top: auto;
    width: auto;
}
.news_sect .items:not(:last-child) {
    margin-bottom: 4.25em;
}
.news_sect .load_more {
    margin: 0 auto;
    max-width: 100%;
    width: 11em;
}
@media(max-width: 639px) {
    .news_sect:first-child {
        padding-top: 2em;
    }
    .news_sect .item {
        width: calc(100% - 1.5em);
        padding: 1.5em 1em;
    }
    .news_sect .items:not(:last-child) {
        margin-bottom: 3em;
    }
}