.support-category-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 32%);
	gap: 28px;
	align-items: center;
	margin-bottom: 22px;
	padding: 34px 34px 36px;
	border-radius: 12px;
	background:
		radial-gradient(circle at 92% 16%, rgba(242, 29, 37, .18), transparent 28%),
		linear-gradient(135deg, #101010 0%, #1d1d1f 100%);
	color: #fff;
	overflow: hidden;
}

.support-category-hero:before {
	position: absolute;
	right: -96px;
	bottom: -130px;
	width: 260px;
	height: 260px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 50%;
	content: "";
}

.support-category-hero__content {
	position: relative;
	z-index: 1;
}

.support-category-hero__label {
	position: relative;
	margin: 0 0 8px;
	color: #f21d25;
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.support-category-hero h1 {
	position: relative;
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
}

.support-category-hero__content p:not(.support-category-hero__label) {
	position: relative;
	max-width: 720px;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	line-height: 1.8;
}

.support-category-hero__image {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	margin: 0;
	padding: 16px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
}

.support-category-hero__image img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 170px;
	object-fit: contain;
}

.support-category-breadcrumbs {
	margin: 26px 0 22px;
	color: #888;
	font-size: 13px;
	line-height: 1.6;
}

.support-category-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.support-category-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.support-category-breadcrumbs li + li:before {
	color: #bbb;
	content: ">";
}

.support-category-breadcrumbs a {
	color: #777;
	text-decoration: none;
}

.support-category-breadcrumbs a:hover {
	color: #f21d25;
	text-decoration: none;
}

.support-category-breadcrumbs span {
	color: #151515;
	font-weight: 700;
}

.support-category-search {
	margin: 0 0 16px;
	padding: 24px;
	border: 1px solid #ececef;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
}

.support-category-search__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 120px;
	gap: 12px;
}

.support-category-search input[type="search"] {
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid #d8d8dc;
	border-radius: 6px;
	background: #fff;
	color: #151515;
	font-size: 15px;
	line-height: 1.5;
}

.support-category-search input[type="search"]:focus {
	border-color: #f21d25;
	box-shadow: 0 0 0 3px rgba(242, 29, 37, .12);
	outline: none;
}

.support-category-search button {
	min-height: 52px;
	border: 0;
	border-radius: 6px;
	background: #151515;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease;
}

.support-category-search button:hover {
	background: #f21d25;
}

.support-category-ai {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 26px;
	padding: 18px 20px;
	border: 1px solid rgba(242, 29, 37, .18);
	border-radius: 12px;
	background: #fff7f7;
}

.support-category-ai p {
	margin: 0 0 4px;
	color: #666;
	font-size: 13px;
	line-height: 1.6;
}

.support-category-ai strong {
	display: block;
	color: #151515;
	font-size: 16px;
	line-height: 1.5;
}

.support-category-ai a {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border-radius: 6px;
	background: #f21d25;
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
}

.support-category-ai a:hover {
	background: #c9171e;
	color: #fff;
	text-decoration: none;
}

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

.support-card {
	display: flex;
	min-width: 0;
	margin: 0;
}

.support-card__link {
	display: flex;
	width: 100%;
	min-height: 240px;
	border: 1px solid #ececef;
	border-radius: 12px;
	background: #fff;
	color: #151515;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
	overflow: hidden;
	text-decoration: none;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.support-card__link:hover {
	border-color: rgba(242, 29, 37, .36);
	box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
	color: #151515;
	transform: translateY(-3px);
	text-decoration: none;
}

.support-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 24px;
}

.support-card__title {
	position: relative;
	margin: 0 0 14px;
	padding-top: 26px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0;
}

.support-card__title:before {
	position: absolute;
	top: 0;
	left: 0;
	color: #f21d25;
	font-size: 18px;
	line-height: 1;
	content: "\f15b";
	display: inline-block;
	font-family: 'Font Awesome 5 Free','Font Awesome 5 Brands';
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.support-card__excerpt {
	margin: 0 0 18px;
	color: #666;
	font-size: 14px;
	line-height: 1.8;
}

.support-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: auto 0 20px;
	padding: 0;
	list-style: none;
}

.support-card__tags li {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 3px 10px;
	border-radius: 999px;
	background: #f6f7f9;
	color: #555;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.support-card__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: #f21d25;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.support-card__more:after {
	content: "\2192";
	font-family: "Open Sans", sans-serif;
}

.support-search-empty {
	padding: 34px 28px;
	border: 1px solid rgba(242, 29, 37, .18);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
	text-align: center;
}

.support-search-empty p {
	margin: 0 0 12px;
	color: #555;
	font-size: 15px;
	line-height: 1.8;
}

.support-search-empty strong {
	color: #151515;
	font-size: 17px;
}

.support-search-empty a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 8px;
	padding: 10px 18px;
	border-radius: 6px;
	background: #f21d25;
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
}

.support-search-empty a:hover {
	background: #c9171e;
	color: #fff;
	text-decoration: none;
}

.xtool-product-support {
	margin-top: 24px;
}

.xtool-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.xtool-product-card {
	display: flex;
	min-width: 0;
	margin: 0;
}

.xtool-product-card__link {
	display: flex;
	width: 100%;
	height: 100%;
	border: 1px solid #ececef;
	border-radius: 12px;
	background: #fff;
	color: #151515;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
	overflow: hidden;
	text-decoration: none;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	flex-direction: column;
}

.xtool-product-card__link:hover {
	border-color: rgba(242, 29, 37, .36);
	box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
	color: #151515;
	transform: translateY(-3px);
	text-decoration: none;
}

.xtool-product-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 176px;
	margin: 0;
	padding: 14px;
	background: #f6f7f9;
	overflow: hidden;
}

.xtool-product-card__image img {
	display: block;
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	transition: transform .22s ease;
}

.xtool-product-card__link:hover .xtool-product-card__image img {
	transform: scale(1.03);
}

.xtool-product-card__placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 72px;
	padding: 16px;
	border: 1px dashed #d8d8dc;
	border-radius: 8px;
	background: #fff;
	color: #777;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.xtool-product-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 18px;
}

.xtool-product-card__body h2 {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
}

.xtool-product-card__body p {
	margin: 0 0 16px;
	color: #666;
	font-size: 13px;
	line-height: 1.7;
}

.xtool-product-card__body span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: #f21d25;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.xtool-product-card__body span:after {
	content: "\2197";
	font-family: "Open Sans", sans-serif;
}

.primary-content .pagination {
	margin: 44px 0 10px;
	text-align: center;
}

.primary-content .pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.primary-content .pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #f21d25;
	border-radius: 8px;
	background: #fff;
	color: #f21d25;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.primary-content .pagination .page-numbers.current,
.primary-content .pagination .page-numbers:hover {
	background: #f21d25;
	color: #fff;
	box-shadow: 0 10px 24px rgba(242, 29, 37, .22);
	text-decoration: none;
	transform: translateY(-1px);
}

.primary-content .pagination .page-numbers.dots {
	min-width: auto;
	border-color: transparent;
	background: transparent;
	color: #999;
	box-shadow: none;
	transform: none;
}

.support-side-panel {
	padding: 18px;
	border: 1px solid #ececef;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.support-side-panel h3 {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.support-side-series,
.support-side-tags ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.support-side-series {
	margin-bottom: 22px;
}

.support-side-series a,
.support-side-tags a {
	display: block;
	padding: 9px 11px;
	border-radius: 6px;
	background: #f6f7f9;
	color: #333;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
}

.support-side-series .state__active a,
.support-side-tags .state__active a,
.support-side-series a:hover,
.support-side-tags a:hover {
	background: #f21d25;
	color: #fff;
	text-decoration: none;
}

.support-side-tags {
	padding-top: 18px;
	border-top: 1px solid #ececef;
}

@media (max-width: 984px) {
	.xtool-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.support-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.support-category-hero {
		display: block;
		padding: 28px 22px 30px;
	}

	.support-category-hero__image {
		display: none;
	}

	.support-category-hero h1 {
		font-size: 26px;
	}

	.support-category-search {
		padding: 18px;
	}

	.support-category-breadcrumbs {
		margin: 24px 0 18px;
		font-size: 13px;
	}

	.support-category-search__form,
	.support-category-ai {
		grid-template-columns: 1fr;
	}

	.support-category-ai {
		display: grid;
	}

	.support-category-ai a {
		width: 100%;
	}

	.support-card-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.xtool-product-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.xtool-product-card__image {
		height: 160px;
		padding: 14px;
	}

	.support-card__link {
		min-height: auto;
	}

	.support-card__body {
		padding: 22px;
	}

	.primary-content .pagination {
		margin: 34px 0 4px;
	}

	.primary-content .pagination .nav-links {
		gap: 8px;
	}

	.primary-content .pagination .page-numbers {
		min-width: 44px;
		height: 44px;
		font-size: 15px;
	}
}
