/* Список статей: https://ajax.local/articles.html */

.articles-catalog {
	margin: 0 0 28px;
}

.articles-catalog p.ul,
.articles-catalog ul.ul {
	margin: 0;
	padding: 0;
}

.articles-catalog ul,
.articles-catalog p.ul ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	counter-reset: article-item;
}

#maincol .articles-catalog ul li,
.articles-catalog li {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 0;
	background: none;
	border: 0;
	line-height: inherit;
}

.articles-catalog li a {
	counter-increment: article-item;
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 44px 14px 16px;
	background: #fff;
	border: 1px solid #e4e4e4;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
	color: #2f2f2f;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 600;
	box-sizing: border-box;
	transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.articles-catalog li a::before {
	content: counter(article-item);
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #c23736;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 32px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(194, 55, 54, .25);
}

.articles-catalog li a::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border-right: 2px solid #c23736;
	border-bottom: 2px solid #c23736;
	transform: rotate(-45deg);
	opacity: .55;
	transition: opacity .18s ease, right .18s ease;
}

.articles-catalog li a:hover {
	color: #c23736;
	border-color: #c23736;
	box-shadow: 0 8px 18px rgba(194, 55, 54, .12);
	text-decoration: none;
	transform: translateY(-1px);
}

.articles-catalog li a:hover::after {
	opacity: 1;
	right: 13px;
}

.articles-catalog__label {
	margin: 0 0 12px;
	padding: 0;
	color: #c23736;
	font-size: 16px;
	font-weight: 700;
}

.articles-catalog--more {
	margin-top: 8px;
	padding-top: 22px;
	border-top: 1px solid #e6e6e6;
}

@media (max-width: 640px) {
	.articles-catalog li a {
		font-size: 13px;
		padding: 12px 36px 12px 12px;
		gap: 10px;
	}

	.articles-catalog li a::before {
		flex-basis: 28px;
		width: 28px;
		height: 28px;
		line-height: 28px;
		font-size: 12px;
	}
}
