.html-sitemap {
	padding: 20px 0 40px;
	min-width: 0;
}
.html-sitemap__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
}
.html-sitemap__section {
	margin: 0;
	padding: 18px;
	background: #ffffff;
	border: 1px solid #e4e4e4;
	border-radius: 8px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .05);
}
.html-sitemap__heading {
	color: #c51718;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0f0f0;
}
.html-sitemap__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
}
.html-sitemap__link {
	color: #000000;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: color .2s, transform .2s;
	display: inline-block;
}
.html-sitemap__link:hover {
	color: #C51718;
	text-decoration: underline;
	transform: translateX(3px);
}
.html-sitemap__empty {
	color: #666666;
	font-size: 14px;
	margin: 0;
}

@media screen and (max-width: 768px) {
	.html-sitemap {
		padding: 16px 12px 32px;
	}
	.html-sitemap__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}
