.layout-articles {
	padding: 60px 0;
}
.articles_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
	grid-gap: 60px 250px;
}
.article_item {
	margin:0;
}
.article_item a:hover {
	text-decoration:underline;
}
.article_title {
	font-weight: 600;
	font-size: 32px;
	line-height: 39px;
}
.articles_pagination {
	display: flex;
    gap: 20px;
	padding-top:60px;
}
.page-numbers {
	font-weight: 400;
	font-size: 21px;
	line-height: 26px;
	color: #615E5E;
}
.page-numbers.current {
	font-weight: 600;
}
.icon_arrow_right {
	width:18px;
	height:14px;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.25 13.5L9.675 11.8687L13.6687 7.875H0V5.625H13.6687L9.675 1.63125L11.25 0L18 6.75L11.25 13.5Z' fill='%23C9C9C9'/%3E%3C/svg%3E%0A");
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	display: inline-flex;
}
.icon_arrow_left {
	width:18px;
	height:14px;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.75 13.5L8.325 11.8687L4.33125 7.875H18V5.625H4.33125L8.325 1.63125L6.75 0L0 6.75L6.75 13.5Z' fill='%23C9C9C9'/%3E%3C/svg%3E%0A");
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	display: inline-flex;
}
@media (max-width:1440px){
	.layout-articles {
		padding:60px 15px;
	}
	.articles_wrapper {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 30px 0;
	}
	.article_title {
		font-weight: 600;
		font-size: 24px;
		line-height: 1.4;
	}
}