.shen-category-explorer { width: 100%; }
.shen-category-explorer__inner {
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
}
.shen-category-explorer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 28px;
}
.shen-category-explorer__heading {
	margin: 0;
	color: #172033;
	font-size: 28px;
	font-weight: 700;
}
.shen-category-explorer__search {
	position: relative;
	width: min(100%, 370px);
}
.shen-category-explorer__search svg {
	position: absolute;
	left: 14px;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	fill: none;
	stroke: #7b8494;
	stroke-width: 2;
}
.shen-category-explorer__search input {
	width: 100%;
	height: 42px;
	padding: 0 14px 0 42px;
	border: 1px solid #d8dce3;
	border-radius: 3px;
	background: #fff;
	color: #303849;
}
.shen-category-explorer__groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.shen-category-explorer__group-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	color: #175c76;
	font-size: 15px;
	font-weight: 500;
}
.shen-category-explorer__group-title a { color: inherit; text-decoration: none; }
.shen-category-explorer__group-title a.is-filter-active { color: #001f55; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }

.shen-category-explorer__group-icon { font-size: 18px; line-height: 1; }
.shen-category-explorer__cards { display: flex; flex-wrap: wrap; gap: 10px; }
.shen-category-explorer__card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 40px;
	padding: 8px 15px;
	border: 1px solid #e1e4e8;
	border-radius: 0;
	background: #fff;
	color: #303849;
	font-size: 14px;
	line-height: 1.3;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.shen-category-explorer__card small { color: #8b93a0; font-size: .78em; }
.shen-category-explorer__card:hover,
.shen-category-explorer__card:focus-visible {
	border-color: #175c76;
	color: #175c76;
}
.shen-category-explorer__card.is-active {
	border-color: #175c76;
	background: #175c76;
	color: #fff;
}
.shen-category-explorer__card.is-active small { color: currentColor; opacity: .8; }

@media (max-width: 767px) {
	.shen-category-explorer__top { align-items: stretch; flex-direction: column; gap: 18px; }
	.shen-category-explorer__search { width: 100%; }
	.shen-category-explorer__groups { grid-template-columns: 1fr; }
	.shen-category-explorer__card { flex: 1 1 auto; }
}
