.html-sitemap {
	color: #e7e7e7;
	background: #1e1e1e;
}

.html-sitemap__header {
	max-width: 760px;
}

.html-sitemap__title {
	margin: 30px 0 0;
	color: #e7e7e7;
	text-transform: uppercase;
}

.html-sitemap__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 42px;
}

.html-sitemap__section {
	min-width: 0;
	border: 1px solid rgba(231, 231, 231, 0.14);
	border-radius: 5px;
	padding: 28px;
	background: rgba(242, 206, 181, 0.04);
}

.html-sitemap__section-title {
	margin: 0 0 22px;
	color: #f2ceb5;
	font-weight: 300;
	font-size: 24px;
	line-height: normal;
	text-transform: uppercase;
}

.html-sitemap__list,
.html-sitemap__list ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.html-sitemap__list ul {
	margin-top: 12px;
	padding-left: 18px;
}

.html-sitemap__list li {
	position: relative;
	padding-left: 18px;
	color: #e7e7e7;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.35;
}

.html-sitemap__list li::before {
	content: "";
	position: absolute;
	top: 0.67em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #f2ceb5;
	transform: translateY(-50%);
}

.html-sitemap__list a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease;
}

.html-sitemap__list a:hover {
	color: #f2ceb5;
}

.html-sitemap__empty {
	margin: 0;
	color: rgba(231, 231, 231, 0.74);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.45;
}

@media (max-width: 1023px) {
	.html-sitemap__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.html-sitemap__grid {
		grid-template-columns: 1fr;
		margin-top: 30px;
	}

	.html-sitemap__section {
		padding: 22px;
	}

	.html-sitemap__section-title {
		font-size: 20px;
	}
}
