.main-articles {
	margin-top: 150px;
}
.main-articles__list {
	margin-top: 50px;
}
.main-articles__more-btn {
	width: 226px;
	height: 56px;
	font-weight: 400;
	font-size: 18px;
	line-height: 56px;
	color: #fff;
	border-radius: 30px;
	background: #3d92a6;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	margin-top: 50px;
}
.main-articles__more-btn:hover {
	opacity: .9;
	color: #fff;
}
.main-articles__h2 {
	font-family: var(--font-gothic);
	font-weight: 500;
	font-size: 50px;
	line-height: 100%;
	letter-spacing: 0.04em;
	color: var(--color-1);
	margin-bottom: 40px;
}

@media (max-width: 991.98px) {

	.main-articles {
		margin-top: 50px;
	}
	.main-articles__h2 {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.main-articles__list {
		margin-top: 0;
	}

}

.article-card {
	border-radius: 30px;
	position: relative;
	background: #0f111d;
	padding: 30px 30px 120px;
	height: 100%;
}
.article-card:hover {
	background: var(--color-1);
}
.article-card__dark {
	background: none;
}
.article-card__mini {
	padding-bottom: 137px;
}
.article-card__badge {
	border-radius: 100%;
	width: 64px;
	height: 64px;
	background-color: var(--color-1);
	background-position: center;
	background-repeat: no-repeat;
}
.article-card:hover .article-card__badge {
	background-color: #0F111D;
}
.article-card__badge_1 {
	background-image: url(img/b_1.svg);
}
.article-card__badge_2 {
	background-image: url(img/b_2.svg);
}
.article-card__badge_3 {
	background-image: url(img/b_3.svg);
}
.article-card__badge_4 {
	background-image: url(img/b_4.svg);
}
.article-card__badge_5 {
	background-image: url(img/b_5.svg);
}
.article-card__badge_6 {
	background-image: url(img/b_6.svg);
	background-position: left 12px top 18px;
}
.article-card__badge_7 {
	background-image: url(img/b_7.svg);
}
.article-card__name {
	font-weight: 500;
	font-size: 23px;
	line-height: 110%;
	letter-spacing: 0.03em;
	color: #fff;
	margin-top: 20px;
	display: inline-block;
	text-decoration: none;
	min-height: 172px;
}
.article-card__name:hover {
	color: #fff;
	opacity: .9;
}
.article-card__dark .article-card__name {
	color: #f7f7f7;
	border-color: rgba(255, 255, 255, .2);
}
.article-card__category {
	border-radius: 10px;
	padding: 9px 10px;
	background: #e8e8e8;
	font-weight: 500;
	font-size: 16px;
	line-height: 110%;
	color: #0f111d;
	text-align: center;
}
.article-card__btn {
	position: absolute;
	bottom: 40px;
	left: 30px;
	border-radius: 15px;
	padding: 0 20px;
	font-size: 18px;
	color: #fff;
	height: 50px;
	line-height: 50px;
	margin-top: 40px;
	text-align: center;
	width: calc(100% - 60px);
	background: var(--color-1);
	transition: all .2s;
}
.article-card:hover .article-card__btn {
	background-color: #0F111D;
}
.article-card__dark .article-card__btn {
	color: #f7f7f7;
	background: none;
}
.article-card:hover .article-card__btn {
	opacity: .9;
}

@media (max-width: 991.98px) {

	.article-card {
		border-radius: 10px;
		padding: 20px 20px 80px;
		height: auto;
	}
	.article-card__name {
		font-size: 16px;
		margin-top: 20px;
		padding-bottom: 20px;
		margin-bottom: 20px;
		display: block;
		min-height: auto;
	}
	.article-card__badge {
		width: 40px;
		height: 40px;
		background-size: 20px auto;
	}
	.article-card__category {
		border-radius: 20px;
		font-size: 12px;
	}
	.article-card__btn {
		bottom: 20px;
		left: 20px;
		border-radius: 10px;
		padding: 0 20px;
		font-size: 16px;
		height: 40px;
		line-height: 40px;
		margin-top: 0;
		width: calc(100% - 40px);
	}

}