.wcts-pdp-at6-section {
	align-items: center;
}

.wcts-pdp-at6-section__body {
	display: grid;
	align-content: center;
	justify-items: start;
	gap: clamp(0.9rem, 1.75vw, 1.35rem);
	min-width: 0;
}

.wcts-pdp-at6-section--intro {
	grid-template-columns: minmax(0, 0.9fr) minmax(21rem, 1.1fr);
}

.wcts-pdp-at6-section--power {
	grid-template-columns: minmax(21rem, 1fr) minmax(0, 0.94fr);
}

.wcts-pdp-at6-section--terrain {
	gap: clamp(1rem, 2vw, 1.5rem);
}

.wcts-pdp-at6-section--terrain .wcts-pdp-at6-section__body {
	justify-items: center;
	width: 100%;
	max-width: 68rem;
	margin-inline: auto;
	text-align: center;
}

.wcts-pdp-at6-section--terrain .wcts-pdp-vehicle-section__heading {
	max-width: 28ch;
}

.wcts-pdp-at6-section--terrain .wcts-pdp-vehicle-section__copy {
	max-width: 64rem;
}

.wcts-pdp-at6-section--terrain .wcts-pdp-at6-media {
	justify-self: center;
	width: min(100%, 60rem);
	height: auto;
	min-height: clamp(18rem, 31vw, 28rem);
	aspect-ratio: 16 / 9;
	background: #ffffff;
	overflow: visible;
}

.wcts-pdp-at6-section--terrain .wcts-pdp-at6-media img {
	object-fit: contain;
	transform: none !important;
}

.wcts-pdp-at6-section--cooling,
.wcts-pdp-at6-section--design {
	width: 100vw;
	margin-inline: calc(50% - 50vw);
	padding:
		clamp(3rem, 7vw, 6rem)
		max(clamp(1rem, 5vw, 3rem), calc((100vw - 82rem) / 2));
	background: #080a0c;
	color: #ffffff;
	overflow: hidden;
	isolation: isolate;
}

.wcts-pdp-at6-section--cooling {
	position: relative;
	align-items: start;
	background: #08090b;
}

.wcts-pdp-at6-section--cooling .wcts-pdp-at6-section__body {
	max-width: 48rem;
}

.wcts-pdp-at6-section--design {
	grid-template-columns: minmax(0, 0.86fr) minmax(21rem, 1.14fr);
	min-height: clamp(35rem, 62vw, 50rem);
	background: #08090b;
	color: #ffffff;
}

.wcts-pdp-at6-section--cooling .wcts-pdp-vehicle-section__heading {
	color: #ffffff;
}

.wcts-pdp-at6-section--cooling .wcts-pdp-vehicle-section__copy {
	color: rgba(255, 255, 255, 0.76);
}

.wcts-pdp-at6-section--design .wcts-pdp-vehicle-section__heading {
	color: #ffffff;
}

.wcts-pdp-at6-section--design .wcts-pdp-vehicle-section__copy {
	color: rgba(255, 255, 255, 0.76);
}

.wcts-pdp-at6-media {
	position: relative;
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: clamp(22rem, 40vw, 37rem);
	margin: 0;
	background: #f2f4f6;
	overflow: hidden;
}

.wcts-pdp-at6-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition:
		filter 220ms ease,
		transform 680ms ease;
}

.wcts-pdp-at6-media:hover img {
	filter: saturate(1.05) contrast(1.04);
	transform: scale(1.018);
}

.wcts-pdp-at6-media--power {
	background: #ffffff;
}

.wcts-pdp-at6-media--power img {
	object-fit: contain;
	padding: 0;
	box-sizing: border-box;
}

.wcts-pdp-at6-media--wide {
	min-height: clamp(24rem, 46vw, 42rem);
}

.wcts-pdp-at6-media--design {
	align-self: stretch;
	min-height: 100%;
	background: transparent;
}

.wcts-pdp-at6-media--design img {
	object-fit: contain;
	filter: none;
}

.wcts-pdp-at6-cards {
	--wcts-premium-card-min-height: 11.5rem;

	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: minmax(var(--wcts-premium-card-min-height), 1fr);
	align-items: stretch;
	justify-items: stretch;
	gap: clamp(0.75rem, 1.4vw, 1rem);
	width: 100%;
	margin: clamp(0.4rem, 1.2vw, 0.8rem) 0 0;
	padding: 0;
	list-style: none;
}

.wcts-pdp-at6-card {
	display: grid;
	grid-template-rows: auto auto 1fr;
	align-self: stretch;
	align-content: start;
	justify-self: stretch;
	gap: 0.55rem;
	min-width: 0;
	min-height: var(--wcts-premium-card-min-height);
	margin: 0;
	height: 100%;
	box-sizing: border-box;
	padding: clamp(1rem, 2vw, 1.3rem);
	border: 1px solid rgba(17, 20, 24, 0.1);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.93);
	box-shadow: 0 1rem 2.6rem rgba(17, 20, 24, 0.07);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.wcts-pdp-at6-cards > li.wcts-pdp-at6-card {
	margin: 0;
}

.wcts-pdp-at6-card:hover {
	border-color: rgba(215, 25, 32, 0.48);
	box-shadow: 0 1.25rem 2.9rem rgba(17, 20, 24, 0.11);
	transform: translateY(-2px);
}

.wcts-pdp-at6-card__icon {
	display: inline-grid;
	flex: 0 0 auto;
	place-items: center;
	width: clamp(3.35rem, 4vw, 3.85rem);
	height: clamp(3.35rem, 4vw, 3.85rem);
}

.wcts-pdp-at6-card__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.wcts-pdp-at6-card__title {
	margin: 0;
	color: #111418;
	font-size: 1.08rem;
	font-weight: 760;
	line-height: 1.18;
}

.wcts-pdp-at6-card__text {
	margin: 0;
	color: #57616d;
	font-size: 0.96rem;
	font-weight: 500;
	line-height: 1.5;
}

.wcts-pdp-at6-section--cooling .wcts-pdp-at6-cards {
	margin-top: clamp(1rem, 2vw, 1.4rem);
}

.wcts-pdp-at6-section--design .wcts-pdp-at6-cards {
	--wcts-premium-card-min-height: 10rem;

	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 44rem;
	margin-top: clamp(1rem, 2vw, 1.4rem);
}

.wcts-pdp-at6-section--cooling .wcts-pdp-at6-card {
	border-color: rgba(255, 255, 255, 0.16);
	background: #161718;
	box-shadow: none;
}

.wcts-pdp-at6-section--design .wcts-pdp-at6-card {
	min-height: 10rem;
	border-color: rgba(255, 255, 255, 0.16);
	background: #161718;
	box-shadow: none;
}

.wcts-pdp-at6-section--cooling .wcts-pdp-at6-card:hover {
	border-color: rgba(215, 25, 32, 0.82);
	background: #161718;
}

.wcts-pdp-at6-section--design .wcts-pdp-at6-card:hover {
	border-color: rgba(215, 25, 32, 0.82);
	background: #161718;
}

.wcts-pdp-at6-section--cooling .wcts-pdp-at6-card__title {
	color: #ffffff;
}

.wcts-pdp-at6-section--design .wcts-pdp-at6-card__title {
	color: #ffffff;
}

.wcts-pdp-at6-section--cooling .wcts-pdp-at6-card__icon,
.wcts-pdp-at6-section--design .wcts-pdp-at6-card__icon {
	width: clamp(3.8rem, 4.7vw, 4.35rem);
	height: clamp(3.8rem, 4.7vw, 4.35rem);
}

.wcts-pdp-at6-section--cooling .wcts-pdp-at6-card__text {
	color: rgba(255, 255, 255, 0.72);
}

.wcts-pdp-at6-section--design .wcts-pdp-at6-card__text {
	color: rgba(255, 255, 255, 0.72);
}

.wcts-pdp-at6-cards--terrain {
	--wcts-premium-card-min-height: 10.5rem;

	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: clamp(0.8rem, 1.8vw, 1.4rem);
	padding-inline: clamp(0.6rem, 2vw, 1.4rem);
}

.wcts-pdp-at6-cards--technical {
	--wcts-premium-card-min-height: 12rem;
}

.wcts-pdp-at6-section--intro .wcts-pdp-at6-cards {
	--wcts-premium-card-min-height: 0;

	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
	align-items: start;
	gap: 0.42rem;
	width: auto;
	margin-top: clamp(0.25rem, 1vw, 0.65rem);
}

.wcts-pdp-at6-section--intro .wcts-pdp-at6-card {
	position: relative;
	display: block;
	min-height: 0;
	height: auto;
	padding: 0 0 0 1.05rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.wcts-pdp-at6-section--intro .wcts-pdp-at6-card::before {
	position: absolute;
	left: 0;
	top: 0.68em;
	width: 0.42rem;
	height: 1px;
	background: #111418;
	content: "";
}

.wcts-pdp-at6-section--intro .wcts-pdp-at6-card:hover {
	border-color: transparent;
	box-shadow: none;
	transform: none;
}

.wcts-pdp-at6-section--intro .wcts-pdp-at6-card__title {
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.45;
}

@media (prefers-reduced-motion: no-preference) {
	.wcts-pdp-product--vehicle.wcts-pdp-vehicle-motion-ready .wcts-pdp-at6-media img {
		transform: translateY(1.2rem) scale(0.96);
		transition:
			filter 220ms ease,
			transform 900ms cubic-bezier(0.2, 0.72, 0.18, 1);
	}

	.wcts-pdp-product--vehicle.wcts-pdp-vehicle-motion-ready .wcts-pdp-vehicle-reveal--visible .wcts-pdp-at6-media img {
		transform: translateY(0) scale(1);
	}

	.wcts-pdp-product--vehicle.wcts-pdp-vehicle-motion-ready .wcts-pdp-vehicle-reveal--visible .wcts-pdp-at6-media:hover img {
		transform: translateY(0) scale(1.018);
	}

	.wcts-pdp-product--vehicle.wcts-pdp-vehicle-motion-ready .wcts-pdp-at6-card {
		opacity: 0;
		transform: translateY(1rem);
		transition:
			opacity 520ms cubic-bezier(0.2, 0.72, 0.18, 1),
			transform 520ms cubic-bezier(0.2, 0.72, 0.18, 1);
		transition-delay: var(--wcts-motion-item-delay, 0ms);
	}

	.wcts-pdp-product--vehicle.wcts-pdp-vehicle-motion-ready .wcts-pdp-vehicle-reveal--visible .wcts-pdp-at6-card {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1100px) {
	.wcts-pdp-product--vehicle {
		gap: clamp(2.75rem, 7vw, 4.4rem);
	}

	.wcts-pdp-at6-section--intro,
	.wcts-pdp-at6-section--power,
	.wcts-pdp-at6-section--design {
		grid-template-columns: 1fr;
	}

	.wcts-pdp-at6-section--power .wcts-pdp-at6-media {
		order: 2;
	}

	.wcts-pdp-at6-section--design {
		min-height: 0;
	}

	.wcts-pdp-at6-section--cooling,
	.wcts-pdp-at6-section--design {
		padding-block: clamp(4.35rem, 11vw, 6.2rem);
	}

	.wcts-pdp-at6-media--design {
		min-height: clamp(21rem, 56vw, 33rem);
	}

	.wcts-pdp-at6-section--cooling,
	.wcts-pdp-at6-section--design {
		padding-block: clamp(5.55rem, 13.5vw, 8rem);
		padding-inline: max(1rem, calc((100vw - 62rem) / 2));
	}

	.wcts-pdp-at6-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wcts-pdp-at6-cards--terrain {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 0;
		padding-inline: 0;
	}

	.wcts-pdp-at6-section--terrain .wcts-pdp-at6-media {
		width: 100%;
		min-height: clamp(17rem, 42vw, 25rem);
	}
}

@media (max-width: 760px) {
	.wcts-pdp-product--vehicle {
		gap: clamp(2.75rem, 7vw, 4.4rem);
	}

	.wcts-pdp-at6-section--cooling,
	.wcts-pdp-at6-section--design {
		width: 100vw;
		margin-inline: calc(50% - 50vw);
		padding-block: clamp(5.65rem, 16vw, 7.9rem);
		padding-inline: max(1rem, calc((100vw - 38rem) / 2));
	}

	.wcts-pdp-at6-cards,
	.wcts-pdp-at6-cards--terrain {
		grid-template-columns: 1fr;
	}

	.wcts-pdp-at6-card {
		min-height: var(--wcts-premium-card-min-height);
		height: 100%;
		padding: 1rem;
	}

	.wcts-pdp-at6-section--intro .wcts-pdp-at6-card,
	.wcts-pdp-tiger-section--design .wcts-pdp-at6-card {
		min-height: 0;
	}

	.wcts-pdp-at6-media,
	.wcts-pdp-at6-media--wide {
		min-height: clamp(18rem, 68vw, 25rem);
	}

	.wcts-pdp-at6-section--terrain .wcts-pdp-at6-section__body {
		justify-items: start;
		text-align: left;
	}

	.wcts-pdp-at6-section--terrain .wcts-pdp-at6-media {
		min-height: clamp(16rem, 60vw, 22rem);
	}

	.wcts-pdp-at6-media--power img {
		padding: 0;
	}

	.wcts-pdp-at6-media--design {
		min-height: clamp(19rem, 70vw, 26rem);
	}

	.wcts-pdp-at6-media--design::after {
		display: none;
	}
}
