.section_articles {
    padding-bottom: 60px;
}

.articles_list {
	display: grid;
    grid-row-gap: 28px;
    row-gap: 28px;
    margin-bottom: 28px;
}

.article_item-link {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #202020;
    text-decoration: none;
    height: 300px;
    border: 1px solid #dfdfdf;
    outline: none;
    overflow: hidden;
    transition: color .2s;
}

.article_item-link:hover {
    color: #ec691f;
}

.article_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.article_img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: .35s;
}

.article_item-link:hover .article_img img {
    transform: scale(1.05);
    will-change: contents;
}

.article_link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 16px;
}

.article_link::before {
    content: '';
    position: absolute;
    top: calc(100% - 64px);
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: #f6f6f6;
    transform-origin: 100% 0;
    transform: skewY(20.5deg);
    border-top: 1px solid #ec691f;
    pointer-events: none;
    z-index: -1;
}

.article_link_icon {
    width: 30px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='55' height='16' viewBox='0 0 55 16'%3E%3Cpath fill='%23919191' d='M45 15.471l-0.392.333L44 16l-1-1V9H0V7H45V9h0v3.848L51.6 8 45 3h0c-0.014 0-1.278-.871-1.979-1.414A4.252 4.252 0 0 1 43 1V0h1L54.38 7.737V8.262Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    transition: width .2s;
    margin-bottom: 18px;
}

.article_item-link:hover .article_link_icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='55' height='16' viewBox='0 0 55 16'%3E%3Cpath fill='%23ec691f' d='M45 15.471l-0.392.333L44 16l-1-1V9H0V7H45V9h0v3.848L51.6 8 45 3h0c-0.014 0-1.278-.871-1.979-1.414A4.252 4.252 0 0 1 43 1V0h1L54.38 7.737V8.262Z'/%3E%3C/svg%3E");
	width: 55px;
}

.article_name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    min-height: 44px;
}

.shape {
    float: right;
    shape-outside: polygon(100% 0, 0 0, 100% 100%);
    width: 20%;
    height: 22px;
}

@media (max-width: 767.98px) {
	.section_articles {
	    padding-left: 20px;
	    padding-right: 20px;
	}
}

@media (max-width: 479.98px) {
	.shape {
		display: none;
	}
}

@media (min-width: 480px) {
    .article_item-link {
        font-size: 18px;
        height: 315px;
    }

    .article_link {
        padding: 25px 20px;
    }

    .article_link::before {
        top: calc(100% - 32px);
    }
}

@media (min-width: 768px) {
	.articles_list {
	    grid-column-gap: 28px;
	    column-gap: 28px;
	    grid-template-columns: repeat(2, 1fr);
	}

	.article_link::before {
		top: calc(100% - 64px);
	}

	.shape {
		display: none;
	}
}

@media (min-width: 1280px) {
	.section_articles {
	    padding-bottom: 100px;
	}

	.articles_list {
	    row-gap: 36px;
	    grid-row-gap: 36px;
	    grid-column-gap: 36px;
	    column-gap: 36px;
        margin-bottom: 36px;
	    grid-template-columns: repeat(3, 1fr);
	}

	.article_link::before {
		top: calc(100% - 32px);
	}

	.shape {
		display: block;
	}
}

@media (min-width: 1620px) {
	.articles_list {
	    grid-template-columns: repeat(4, 1fr);
	}
}