.page-id-142830 {
	--suv-red: #bd0c1c;
	--suv-red-dark: #94101c;
	--suv-ink: #111;
	--suv-muted: #656565;
	--suv-surface: #fff;
	--suv-border: #e6e6e6;
	--suv-bg: #f5f5f5;
}

.page-id-142830 .site-main {
	max-width: 100%;
	padding: 0;
	background: var(--suv-bg);
}

.page-id-142830 .page-header {
	max-width: 1280px;
	margin: 0 auto;
	padding: clamp(40px, 7vw, 82px) 20px 18px;
	text-align: center;
}

.page-id-142830 .page-title {
	margin: 0;
	color: var(--suv-ink);
	font-size: clamp(34px, 6vw, 58px);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.page-id-142830 .page-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px clamp(64px, 8vw, 100px);
}

.page-id-142830 .page-content > p:first-child {
	max-width: 780px;
	margin: 0 auto clamp(34px, 5vw, 54px);
	color: var(--suv-muted);
	font-size: clamp(16px, 2vw, 19px);
	line-height: 1.7;
	text-align: center;
}

.suv-category-directory__heading {
	margin: 0 auto 30px;
	text-align: center;
}

.suv-category-directory__eyebrow {
	margin: 0 0 8px;
	color: var(--suv-red);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.suv-category-directory__heading h2 {
	margin: 0 0 8px;
	color: var(--suv-ink);
	font-size: clamp(26px, 4vw, 38px);
	font-weight: 900;
	letter-spacing: -.025em;
}

.suv-category-directory__heading > p:last-child {
	margin: 0;
	color: var(--suv-muted);
}

.suv-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.suv-category-card {
	min-width: 0;
	overflow: hidden;
	background: var(--suv-surface);
	border: 1px solid var(--suv-border);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.suv-category-card:hover,
.suv-category-card:focus-within {
	border-color: rgba(189, 12, 28, .4);
	box-shadow: 0 16px 38px rgba(0, 0, 0, .13);
	transform: translateY(-5px);
}

.suv-category-card a {
	display: block;
	height: 100%;
	color: var(--suv-ink);
	text-decoration: none;
}

.suv-category-card a:focus-visible {
	outline: 3px solid var(--suv-red);
	outline-offset: -3px;
}

.suv-category-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #eee;
}

.suv-category-card__media::after {
	position: absolute;
	inset: auto 0 0;
	height: 35%;
	background: linear-gradient(transparent, rgba(0, 0, 0, .18));
	content: "";
	pointer-events: none;
}

.suv-category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.suv-category-card:hover .suv-category-card__media img {
	transform: scale(1.04);
}

.suv-category-card__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 88px;
	padding: 18px;
}

.suv-category-card__body h3 {
	margin: 0;
	color: var(--suv-ink);
	font-size: 17px;
	font-weight: 850;
	line-height: 1.25;
}

.suv-category-card__body span {
	flex: 0 0 auto;
	padding: 5px 8px;
	color: var(--suv-red-dark);
	background: #fff1f2;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

@media (max-width: 1024px) {
	.suv-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.page-id-142830 .page-header {
		padding-top: 34px;
	}

	.page-id-142830 .page-content {
		padding-inline: 14px;
	}

	.suv-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.suv-category-card {
		border-radius: 9px;
	}

	.suv-category-card__body {
		display: block;
		min-height: 96px;
		padding: 13px;
	}

	.suv-category-card__body h3 {
		margin-bottom: 9px;
		font-size: 14px;
	}
}

@media (max-width: 380px) {
	.suv-category-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.suv-category-card,
	.suv-category-card__media img {
		transition: none;
	}
}

