/*
 * powertrain.css
 *
 * Powertrain + Types of Hybrids section styles (desktop/default).
 *
 * Intended usage:
 * - Included by templates that render the `front/snippets/powertrain_section` snippet.
 */
/* Powertrain Options Section */
.powertrain_slider_app {
	padding-bottom: 8rem;
	width: 100%;
	height: auto;
}
.powertrain_header {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden; /* clip image edges during fade */
	/* Adjustable white overlay gradient variables */
	--pt-overlay-angle: 90deg;          /* direction (90deg = left->right) */
	--pt-overlay-width: 100%;           /* overlay spans full width */
	--pt-overlay-solid-stop: 40%;       /* widened solid region */
	--pt-overlay-mid-stop: 66%;         /* adjusted midpoint for smoother transition */
	--pt-overlay-soft2-stop: 100%;       /* extended gentle fade further right */
	--pt-overlay-fade-stop: 100%;       /* end */
	--pt-overlay-white: 255,255,255;    /* base white channel for reuse */
	--pt-overlay-alpha-strong: 1;       /* opacity at solid region */
	--pt-overlay-alpha-mid: .70;        /* a bit stronger mid haze */
	--pt-overlay-alpha-end: 0;          /* final transparency */
}
/* White overlay gradient (adjust via CSS vars above) */
.powertrain_header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw; /* force full viewport span */
	transform: translateX(-50%); /* center so it bleeds equally */
	height: 100%;
	pointer-events: none;
		background: linear-gradient(
		var(--pt-overlay-angle),
		rgba(var(--pt-overlay-white), 1) 0%,
		rgba(var(--pt-overlay-white), 1) var(--pt-overlay-solid-stop),
		rgba(var(--pt-overlay-white), 0.92) calc(var(--pt-overlay-solid-stop) + 6%),
		rgba(var(--pt-overlay-white), var(--pt-overlay-alpha-mid)) var(--pt-overlay-mid-stop),
		rgba(var(--pt-overlay-white), 0.50) calc(var(--pt-overlay-mid-stop) + 8%),
		rgba(var(--pt-overlay-white), 0.30) 90%,
		rgba(var(--pt-overlay-white), 0.14) 95%,
		rgba(var(--pt-overlay-white), 0.06) 98%,
		rgba(var(--pt-overlay-white), 0) 100%
	);
	z-index: 1;
}
/* Optional stronger variant: add class .overlay-strong on header to widen solid region */
.powertrain_header.overlay-strong {
	--pt-overlay-solid-stop: 24%;
	--pt-overlay-mid-stop: 52%;
	--pt-overlay-alpha-mid: .65;
}

@media (max-width: 640px) {
	/* Narrow screens: reduce white dominance so imagery still reads */
	.powertrain_header {
		--pt-overlay-solid-stop: 22%;
		--pt-overlay-mid-stop: 50%;
		--pt-overlay-soft2-stop: 75%;
	}
}
#powertrain_bg_stack .pt-bg-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: 100% 100%; /* fill container height so size change is visible */
	background-position: right 0 center; /* removed -300px offset to allow full width alignment */
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity .55s cubic-bezier(.4,0,.2,1);
	will-change: opacity;
	/* Slight scale transform can smooth GPU compositing on some browsers */
}
#powertrain_bg_stack .pt-bg-layer.active {
	opacity: 1;
}

.powertrain_options_container {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	background-color: #102330;
}
.powertrain_bg_stack {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.powertrain_header_content_bg {
	padding-top: 8rem;
	padding-bottom: 12rem;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	overflow: visible;
}
.powertrain_header_content_bg::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 150px;
	background: linear-gradient(to top, #102330 20%, rgba(16,35,48,0) 100%);
	pointer-events: none;
	z-index: -1;
}
.powertrain_header_content {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;	
	flex-direction: row;
	align-items: center;
}
.p_h_left_col {
	width: 50%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.p_h_right_col {
	width: 50%;
	height: auto;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
.powertrain_title {
	width: 100%;
	height: auto;
	display: block;
}
.powertrain_title h2 {
	width: 100%;
    font-weight: normal;
    color: #00838f;
	text-transform: uppercase;
	font-size: 4rem;
	line-height: 4rem;
	font-weight: bold;
	letter-spacing: 0;
	font-weight: bold;
	font-family: 'Neulis Sans', Sans-Serif;
}
.powertrain_title p {
	margin-top: 1rem;
	width: 100%;
	height: auto;
	font-size: 1.5rem;
    font-weight: normal;
    line-height: 2.8rem;
    color: #1A1A1A;
}

/* Optional: if we later want a subtle dark gradient overlay for text legibility */
.powertrain_options_content_block {
    margin-top: 5rem;
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
}
.powertrain_options_content {
	width: 100%;
	height: auto;
}
.powertrain_options_flexed {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
}
.powertrain_options_left_col {
	width: 59%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.powertrain_selector_bg {
	margin-top: -13.5rem;
    width: 100%;
    height: auto;
	position: relative;
	z-index: 5;
}
.powertrain_slector_wrap {
  width: 93%;
  max-width: 1420px;
  height: inherit;
  margin: 0px auto;
}
/* Optional: subtle texture layer (commented out; enable if you want a hint of depth) */
.test_container::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(255,255,255,0.25), rgba(255,255,255,0)) 0 0 / 100% 100% no-repeat;
	pointer-events: none;
	mix-blend-mode: overlay;
	opacity: .55;
}


/* Future theming hooks (uncomment / adjust when per-powertrain root classes are present)
.pt-hybrid .test_container { --tc-bg-end: #e6f9f0; }

/* Prevent Learn More link text from wrapping on small screens; ellipsize if needed */
.tp_learn_more a,
.savings_section_kba_flexed a,
.type_border_kba a {
	white-space: nowrap;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	word-break: keep-all;
	overflow-wrap: normal;
}

@media (max-width: 420px) {
	.tp_learn_more a,
	.savings_section_kba_flexed a,
	.type_border_kba a {
		/* allow a tiny reduction on very small screens to help fit */
		font-size: 0.95em;
	}
}
.pt-phev   .test_container { --tc-bg-end: #f3efff; }
.pt-ev     .test_container { --tc-bg-end: #e8f5ff; }
.pt-gas    .test_container { --tc-bg-end: #fff2e8; }
*/

.powertrain_box_wrap {
	width: 90%;
	height: auto;
	margin: 0px auto;
}

.powertrain_box_container {
	position: relative;
	overflow: visible;
	z-index: 1;
}

.powertrain_selector {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
	background-color: #102330;
    /* light → dark panel */
	/*
    background: linear-gradient(
        to bottom,
        rgba(18, 42, 58, 0.98) 0%,
        rgba(10, 26, 35, 1) 55%,
        rgba(6, 16, 24, 1) 100%
    );
	*/
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);

    padding-top: 2.1rem;
    padding-bottom: 1.5rem;

    /* dramatic downward lighting */
    box-shadow:
        0 12px 30px rgba(0,0,0,0.45),
        0 30px 80px rgba(0,170,255,0.25),
        0 60px 120px rgba(0,140,255,0.18),

        /* inner top highlight */
        inset 0 1px 0 rgba(255,255,255,0.08),

        /* subtle bottom reflection line */
        inset 0 -2px 6px rgba(80,235,255,0.15);

    overflow: visible;
}
/*
.powertrain_selector::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -70px;

    width: 115%;
    height: 140px;

    background: radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.95) 0%,
        rgba(235,255,245,0.90) 6%,
        rgba(160,255,235,0.55) 14%,
        rgba(80,235,255,0.35) 26%,
        rgba(0,190,255,0.22) 40%,
        rgba(0,120,200,0.10) 55%,
        rgba(0,0,0,0) 70%
    );

    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}
*/
.powertrain_slider_container {

}
.powertrain_slider_wrap {
	width: 93%;
	height: auto;
	margin: 0px auto;
}
.powertrain_controls_boxed {
}
/* Powertrain Slider Component (simplified) */
.powertrain_slider .pts { width:100%; position:relative; }
.powertrain_slider .pts-tabs { display:flex; gap:0; align-items:flex-end; width:100%; }
.powertrain_slider .pts-tab { flex:1 1 0; text-align:center; }
.powertrain_slider .pts-tab {
	flex: 1 1 0;
	background: none;
	border: none;
	padding: .55rem .25rem .65rem .25rem;
	border-radius: 0;
	font-size: .95rem;
	letter-spacing: .25px;
	line-height: 1.2;
	color: #6a6f74;
	cursor: pointer;
	position: relative;
	text-align: center;
	transition: color .2s ease;
}
.powertrain_slider .pts-tab:hover { color:#000; }
.powertrain_slider .pts-tab:focus-visible { outline:2px solid #000; outline-offset:2px; }
.powertrain_slider .pts-tab.active { color:#000; font-weight:500; }

/* ===== Minimal Theme Variant (Trending Underline + Glass) ===== */
.pts-theme-minimal .powertrain_slider .pts-tabs { gap: 1.25rem; }
.pts-theme-minimal .powertrain_slider .pts-tab {
	background: transparent;
	border: none;
	padding: .35rem .25rem .65rem .25rem;
	border-radius: 0;
	font-size: 1.02rem;
	font-weight: 400;
	color: #5d6369;
	letter-spacing: .25px;
	position: relative;
	isolation: isolate;
}
.pts-theme-minimal .powertrain_slider .pts-tab:before {
	content: "";
	position: absolute; inset:0;
	background: linear-gradient(135deg,rgba(255,255,255,.65),rgba(255,255,255,.15));
	border:1px solid rgba(0,0,0,.05);
	opacity:0; border-radius:12px;
	backdrop-filter: blur(6px) saturate(160%);
	transition: opacity .4s ease, transform .4s ease;
	transform: translateY(4px) scale(.96);
	z-index:-1;
}
.pts-theme-minimal .powertrain_slider .pts-tab:hover:before { opacity:.55; transform: translateY(0) scale(1); }
.pts-theme-minimal .powertrain_slider .pts-tab.active:before { opacity:.85; transform: translateY(0) scale(1); }
.pts-theme-minimal .powertrain_slider .pts-tab.active { color: var(--pt-accent,#000) !important; background: transparent; box-shadow:none; }
.pts-theme-minimal .powertrain_slider .pts-indicator { height: 2px; box-shadow:none; background: linear-gradient(90deg,var(--pt-accent,#000),var(--pt-accent,#000)); }
.pts-theme-minimal .powertrain_slider .pts-range { border:1px solid #e1e4e6; }
.pts-theme-minimal .powertrain_slider .pts-range::-webkit-slider-runnable-track { background: linear-gradient(90deg,var(--pt-accent,#000) 0,var(--pt-accent,#000) 0) no-repeat, linear-gradient(#d5dadd,#d5dadd); background-size:0 100%,100% 100%; }
.pts-theme-minimal .powertrain_slider .pts-range::-webkit-slider-thumb { border-color: var(--pt-accent,#000); }
.pts-theme-minimal .powertrain_slider .pts-range::-moz-range-thumb { border-color: var(--pt-accent,#000); }

/* Glass subtle panel feel (future expansion) */
/* .pts-theme-minimal .powertrain_title_p p { background: linear-gradient(135deg,rgba(255,255,255,.85),rgba(255,255,255,.55)); display:inline-block; padding:.7rem .75rem; border-radius:10px; border:1px solid rgba(0,0,0,.06); } */

/* Indicator now a soft underline glow */
.powertrain_slider .pts-indicator {
	background: linear-gradient(90deg,var(--pt-accent,#000),var(--pt-accent,#000));
	height:4px;
	box-shadow:0 1px 6px -1px var(--pt-accent,#000),0 0 0 1px rgba(0,0,0,.05);
}

/* Slider track modernization */
.powertrain_slider .pts-track-wrapper {
	position: relative;
	width:100%;
	height:22px; /* match thumb size for centering */
	display:flex;
	align-items:center; /* centers track (range) vertically so thumb sits centered */
	padding-top:0;
}
.powertrain_slider .pts-range {
	height:8px;
	border-radius:10px;
	margin:0; /* remove any default vertical offset */
	width:100%;
}

/* Simplified: native range styling (no faux track) */
.powertrain_slider .pts-range { background: linear-gradient(90deg,var(--pt-accent,#000) 0,var(--pt-accent,#000) 0) no-repeat, #d4d4d4; background-size:0 100%,100% 100%; }
.powertrain_slider .pts-range::-webkit-slider-thumb { opacity:1; }
.powertrain_slider .pts-range::-moz-range-thumb { opacity:1; }

/* Thumb vertical centering adjustments */
.powertrain_slider .pts-range::-webkit-slider-thumb { margin-top:-7px; }
/* Firefox centers differently; expand the control height & ensure track centered */

/* Plain text tab style overrides (remove glass hover & accent text color) */
.pts-theme-minimal .powertrain_slider .pts-tab:before { display:none !important; }
.pts-theme-minimal .powertrain_slider .pts-tab { color:#6a6f74 !important; font-weight:400; background:transparent !important; box-shadow:none !important; border:none !important; }
.pts-theme-minimal .powertrain_slider .pts-tab:hover { color:#000 !important; }
.pts-theme-minimal .powertrain_slider .pts-tab.active { color:#000 !important; font-weight:500; }
.powertrain_slider .pts-range::-webkit-slider-runnable-track { height:8px; border-radius:10px; }
.powertrain_slider .pts-range::-moz-range-track { height:8px; border-radius:10px; }
.powertrain_slider .pts-range::-webkit-slider-thumb { box-shadow:0 4px 10px rgba(0,0,0,.25); background:#fff; }
.powertrain_slider .pts-range::-moz-range-thumb { box-shadow:0 4px 10px rgba(0,0,0,.25); background:#fff; }


/* Range focus ring synergy */
.powertrain_slider .pts-range:focus-visible { outline:3px solid color-mix(in srgb, var(--pt-accent,#000) 55%, transparent); outline-offset:4px; }

@supports not (color-mix(in srgb, #000, #fff)) {
	.powertrain_slider .pts-range:focus-visible { outline:2px solid var(--pt-accent,#000); }
}

.powertrain_slider .pts-tabs {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: .5rem;
}

.powertrain_slider .pts-tab {
	background: none;
	border: none;
	padding: .25rem .5rem .5rem .5rem;
	font-family: 'Manrope', Sans-Serif;
	font-size: 1.05rem;
	line-height: 1.2;
	color: #8d8d8d;
	cursor: pointer;
	position: relative;
	transition: color .25s ease;
}

.powertrain_slider .pts-tab:hover, .powertrain_slider .pts-tab:focus { color: #444; outline: none; }
.powertrain_slider .pts-tab.active { color: #000; font-weight: 500; }
.powertrain_slider .pts-tab .pts-tab-label { display:inline-block; line-height:1.2; }
.powertrain_options_flexed .pts-tab.active { color: var(--pt-accent, #000); }

.powertrain_slider .pts-indicator {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--pt-accent, #000);
	border-radius: 2px;
	transition: transform .35s ease, width .35s ease, background-color .3s ease;
}

.powertrain_slider .pts-track-wrapper { position: relative; width:100%; }
.powertrain_slider .pts-range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: transparent; /* hidden; faux track renders beneath */
	outline: none;
	margin: .25rem 0 0 0;
	cursor: pointer;
}
/* Faux centering system */
.powertrain_slider .pts-faux-track { position:absolute; inset:0; pointer-events:none; }
.powertrain_slider .pts-faux-track:before { content:""; position:absolute; left:0; right:0; top:50%; height:6px; transform:translateY(-50%); border-radius:3px; background:#d4d4d4; z-index:0; }
.powertrain_slider .pts-faux-fill { position:absolute; left:0; top:50%; height:6px; transform:translateY(-50%); background:var(--pt-accent,#000); border-radius:3px; transition:width .35s ease; z-index:1; }
.powertrain_slider .pts-thumb { position:absolute; top:50%; width:22px; height:22px; background:#000; border-radius:50%; box-shadow:0 2px 4px rgba(0,0,0,.35),0 0 0 4px #fff inset; transform:translate(-50%,-50%); transition:transform .25s ease,left .25s ease; z-index:2; }
.powertrain_slider .pts-range::-webkit-slider-thumb { opacity:0; }
.powertrain_slider .pts-range::-moz-range-thumb { opacity:0; }
/* Overlay thumb for precise visual centering */
.powertrain_slider .pts-thumb-overlay {
  position:absolute; top:50%; left:0; width:24px; height:24px; border-radius:50%; background:#fff;
  box-shadow:0 2px 4px rgba(0,0,0,.35),0 0 0 2px var(--pt-accent,#000); transform:translate(-50%,-50%);
  pointer-events:none; transition: transform .35s ease, box-shadow .35s ease;
}

/* Simplified Vanilla Slider (pt-*) */
#powertrain_slider_app.pt-slider-block { max-width:100%; font-family:inherit; border-radius: 50vh; }

#powertrain_slider_app .pt-tabs { 
	display:flex; 
	justify-content:space-between; 
	position:relative; 
	margin-bottom:.5rem; 
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 999px;
	padding: 6px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.18),
		inset 0 -1px 0 rgba(0,0,0,0.25),
		0 6px 14px rgba(0,0,0,0.25);
	overflow: hidden; /* clip sliding pill to rounded group */
}

#powertrain_slider_app .pt-tab { 
	font-family: 'NeulisSans', sans-serif;
	letter-spacing: .05rem;
	flex:1 1 0; 
	background:transparent; 
	border:1px solid transparent; 
	padding-top: 1rem;
    padding-bottom: 0.8rem; 
	display:flex; 
	align-items:center; 
	justify-content:center; 
	font-size:1.3rem; 
	cursor:pointer; color:#fff; position:relative; 
	font-weight:900; line-height:1; /* lock line-height to prevent vertical shift on weight change */
	transition: color .28s ease, background-color .28s ease, border-color .28s ease, box-shadow .38s ease; 
	/* avoid transforms on text container to keep font rendering crisp */
	-webkit-font-smoothing: antialiased;
	border-radius: 50vh;
	line-height: 1.5rem !important;
	text-transform: uppercase;
	z-index: 1; /* keep text above sliding pill indicator */
}
#powertrain_slider_app .pt-tab:not([aria-selected="true"]):hover { 
	color:#fff; 
	text-decoration:underline; 
	text-underline-offset: .3rem; 
}
#powertrain_slider_app .pt-tab[aria-selected="true"] { 
	color:#fff;
	font-weight:680; /* instant weight */
}
#powertrain_slider_app .pt-tab[aria-selected="true"]:hover { 
	color:#fff;
	text-decoration:none; /* no underline on active hover */
}

/* Subtle caption under the slider */
#powertrain_slider_app .pt-scale-caption {
	margin-top: .5rem; /* increased again (adjust here if you need more/less) */
	margin-bottom:0rem; /* slight buffer below */
	font-size:.8rem; /* a touch larger */
	letter-spacing:.06em; /* slightly tighter now that size increased */
	text-transform: none;
	text-align:center;
	color:#757575; /* lighter / closer to white */
	font-weight: bold;
	opacity:1; /* ensure intended alpha comes from color itself */
	pointer-events:none; /* allow clicks to pass through if overlapping */
	user-select:none; /* standard */
	-webkit-user-select:none; 
	-moz-user-select:none; 
	-ms-user-select:none; 
	position:relative; z-index:1; /* ensure above any overlapping backgrounds */
}
#powertrain_slider_app .pt-scale-caption::selection { background:transparent; }
@media (min-width: 680px) {
	#powertrain_slider_app .pt-scale-caption { font-size:1rem; }
}
@media (prefers-contrast: more) {
	#powertrain_slider_app .pt-scale-caption { color:#eaeaea; text-shadow:0 0 0 transparent; }
}
#powertrain_slider_app .pt-tab:focus-visible { outline:2px solid var(--pt-accent,#000); outline-offset:2px; border-radius:4px; }

@keyframes ptTabActivate { 
	0% { box-shadow:0 0 0 rgba(0,0,0,0); }
	100% { box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 0 1px rgba(0,0,0,.06); }
}
@-webkit-keyframes ptTabActivate { 
	0% { box-shadow:0 0 0 rgba(0,0,0,0); }
	100% { box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 0 1px rgba(0,0,0,.06); }
}

@media (prefers-reduced-motion: reduce) {
	#powertrain_slider_app .pt-tab { transition:none; }
	#powertrain_slider_app .pt-tab[aria-selected="true"] { animation:none; }
}
#powertrain_slider_app .pt-indicator {
	position:absolute; 
	top:3px;
	bottom:3px;
	left:0;
	width:0; /* JS controls width */
	background:#00838f;
	border-radius:999px;
	box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 0 1px rgba(0,0,0,.06);
	transition:transform .3s ease,width .3s ease; 
	z-index:0;
}
#powertrain_slider_app .pt-track-wrap { position:relative; min-height:56px; /* enlarged hit area */ }
#powertrain_slider_app .pt-range {
	position:absolute;
	left:0;
	right:0;
	top:0;
	width:100%;
	background:transparent;
	margin:0;
	height:56px; /* enlarged from 40px for easier grabbing */
	-webkit-appearance:none;
	appearance:none;
	outline:none;
	z-index:6;
	cursor: pointer;
}
#powertrain_slider_app .pt-range::-webkit-slider-thumb {
	-webkit-appearance:none;
	appearance:none;
	width:28px;
	height:28px;
	background:transparent;
	border:none;
	box-shadow:none;
	opacity:0; /* keep hit area but hide native thumb (iOS Safari) */
}
#powertrain_slider_app .pt-range::-moz-range-thumb {
	width:28px;
	height:28px;
	background:transparent;
	border:none;
}
#powertrain_slider_app .pt-track-visual { 
position:absolute; left:0; top:50%; 
transform:translateY(-50%); 
width:100%; 
height:6px; 
pointer-events:none; 
border-radius: 999px;


	background: linear-gradient(
		to right,
		#ff4d4d 0%,
		#ff9f43 25%,
		#ffe066 50%,
		#4cd964 75%,
		#2dd4ff 100%
	);

	box-shadow:
		0 0 6px rgba(80,235,255,0.35),
		0 0 14px rgba(80,235,255,0.18),
		inset 0 1px 2px rgba(255,255,255,0.35);

}


/* (Caption positioning consolidated above) */
#powertrain_slider_app .pt-track-bar { position:absolute; inset:0; border-radius:3px; z-index:0; background:var(--pt-spectrum-gradient, #d4d4d4); }

/* Fill hidden (we rely on static spectrum under the thumb) */
#powertrain_slider_app .pt-track-fill { display:none; }
#powertrain_slider_app .pt-thumb {
	position:absolute;
	top:50%;
	width:22px;
	height:22px;
	background:#000;
	border-radius:50%;
	transform:translate(-50%, -50%);
	z-index:2;
	box-shadow:0 2px 4px rgba(0,0,0,.35),0 0 0 4px #fff inset;
	transition:left .3s ease;
}
#powertrain_slider_app .pt-thumb.pt-anim {
	transition:left .3s ease;
}

/* (Removed temporary layout helper overrides to restore original styling) */


/* Thumb */
.powertrain_slider .pts-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	background: #000;
	border: 2px solid #000;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0,0,0,.35), 0 0 0 4px #fff inset;
	transition: transform .25s ease, box-shadow .25s ease;
}
.powertrain_slider .pts-range::-webkit-slider-thumb:hover { transform: scale(1.05); }
.powertrain_slider .pts-range::-webkit-slider-thumb:active { transform: scale(.95); }

.powertrain_slider .pts-range::-moz-range-track { background: transparent; }
.powertrain_slider .pts-range::-moz-range-thumb {
	width: 22px; height: 22px; background:#000; border:2px solid #000; border-radius:50%; box-shadow:0 2px 4px rgba(0,0,0,.35), 0 0 0 4px #fff inset; transition:transform .25s ease;
}
.powertrain_slider .pts-range:focus-visible { outline: 2px solid #0a84ff; outline-offset: 4px; }

/* Panel */
.powertrain_slider .pts-panel { width: 100%; }
.powertrain_slider .pts-panel-inner {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}
.powertrain_slider .pts-text { flex: 1 1 55%; }
.powertrain_slider .pts-heading { font-size: 1.4rem; line-height:1.3; margin:0 0 .75rem 0; font-weight:500; }
.powertrain_slider .pts-desc { font-size: 1.05rem; line-height:1.55rem; margin:0; color:#221f1f; }
.powertrain_slider .pts-image-wrap { flex: 1 1 45%; display:flex; justify-content:center; align-items:flex-start; }
.powertrain_slider .pts-image-wrap img { max-width: 100%; height:auto; display:block; }

/* Fade Transition */
.pts-fade-enter-active, .pts-fade-leave-active { transition: opacity var(--pt-fade-duration) var(--pt-ease); }
.pts-fade-enter-from, .pts-fade-leave-to { opacity:0; }

/* Powertrain content swap transition */
.pt-swap-enter-active, .pt-swap-leave-active { position:relative; transition: opacity .35s ease; }
.pt-swap-enter-from, .pt-swap-leave-to { opacity:0; }
.pt-swap-enter-to, .pt-swap-leave-from { opacity:1; }

/* Manual phased content fade (background-first sequencing) */
.pt-dynamic-outer { position: relative; }
/* (Removed old single-wrapper transition classes after migrating to layered stack) */

/* Layered powertrain content stack */
.pt-layer-stack { 
	width: 100%;
	position: relative; 
	min-height: 320px; 
	transition: height .4s ease;
}

:root { --pt-fade-duration: .28s; --pt-ease: cubic-bezier(.4,0,.2,1); }

.pt-layer-stack .pt-layer {
	position: absolute;
	top:0; left:0; width:100%;
	opacity:0;
	pointer-events:none;
	transition: opacity var(--pt-fade-duration) var(--pt-ease);
	will-change: opacity; 
}
.pt-layer-stack .pt-layer.is-active {
	opacity:1;
	pointer-events:auto;
	z-index:2;
}
.pt-layer-stack .pt-layer:not(.is-active){ z-index:1; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pts-fade-enter-active, .pts-fade-leave-active { transition:none; }
  .powertrain_slider .pts-indicator { transition:none; }
  .powertrain_slider .pts-range { transition:none; }
}

.top_vehicle_picks_container {
	width: 100%;
	height: auto;
}
.top_vehicle_picks_wrap {
	width: 100%;
    height: auto;
}
.top_vehicle_picks {
	width: 100%;
	height: auto;
}
/* Hide first top picks block (legacy markup) */
.top_vehicle_picks .top_picks_block:first-of-type {
	display: none !important;
}
.top_picks_block {
	margin-top: 3rem;
	width: 100%;
	height: auto;
}
.top_picks_block:first-of-type {
	margin-top: 0;
}
.top_picks_block:nth-of-type(2) {
	margin-top: 0;
}
.top_picks_block h2 {
	width: 100%;
	height: auto;
	margin-top: 0;
	font-size: 1.2rem;
	color: #ababab;
	font-weight: normal;
	display:flex; /* flex layout as requested */
	align-items: baseline;
	gap:.75rem;
	font-family: 'Neulis Sans', Sans-Serif;
}
.top_picks_block h2 a:link, .top_picks_block h2 a:visited {
	color:#9a9a9a; /* more muted gray */
	font-size:.95rem;
	text-decoration: none;
	font-weight:500;
	transition:color .25s ease, opacity .25s ease;
	white-space:nowrap;
	margin-left:auto;
	text-transform: uppercase;
}
.top_picks_block h2 a:hover { 
	color:#ffffff; 
	text-decoration: underline;
}
.top_picks_block.first-block h2 {
	margin-top: 0;
}
.top_picks_block:not(.first-block) h2 {
	margin-top: 0;
}
.top_picks_block ul {
	list-style-type: none;
	display: list-item;
}
.top_picks_block li {
	margin-top: 1rem;
	display: block;
	width: 100%;
	height: auto;
	padding-top: 1rem;
	text-decoration: none;
	/*
	box-shadow: 0 0 0 1px rgba(255,255,255,0.5), 0 4px 18px -6px rgba(0,0,0,0.012);
	*/
	position: relative;
}
.top_picks_block li.tp_pick_item { cursor:pointer; }
.top_picks_block li.tp_pick_item .tp_learn_more a { position:relative; z-index:2; text-align: center;}
/* Keep underline on hover; remove focus ring from whole tile. If keyboard user tabs to link, focus-visible will show underline */
.top_picks_block li.tp_pick_item:hover .tp_learn_more a,
.top_picks_block li.tp_pick_item .tp_learn_more a:focus-visible { text-decoration:none; }
.top_picks_block li::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(255,255,255,0.25), rgba(255,255,255,0)) 0 0 / 100% 100% no-repeat;
	pointer-events: none;
	mix-blend-mode: overlay;
	opacity: .55;
}
.tp_wrap {
	width: 93%;
	height: auto;
	margin: 0px auto;
}
.tp_flexed {
	width: 100%;
	height: 82px;
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	align-items: center;
}
.tp_thumb {
	width: 100%;
	max-width: 90px;
	height: 82px;
	display: flex;
	align-items: center;
}
.tp_thumb img {
	width: 100%;
	height: auto;
    transform: scaleX(-1); /* flip horizontally */
    transition: transform .35s ease;
}
.tp_thumb img.no-flip { transform: none; }
.tp_content {
	/* Allow it to take available space but shrink when needed */
	flex: 1 1 auto;
	min-width: 0; /* critical so child text can shrink/wrap instead of pushing flex siblings */
	height: 82px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.tp_content h3 {
    font-weight: bold;
    color: #fff;
    font-size: 1.6rem; /* base size; JS will shrink if overflow */
    line-height: 1.8rem;
    white-space: normal; /* allow wrapping */
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
    font-family: 'Neulis Sans', Sans-Serif;
}
.tp_content p {
	margin-top: .3rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
	line-height: 1.2rem;
    font-family: 'Manrope', Sans-Serif;
}
.tp_learn_more {
	margin-left: auto;
}

/* pill link (robust selector + correct box-shadow order) */
.tp_learn_more a {
	margin: 2rem 0;
	padding-top: 1rem;
	padding-left: 1.6rem;
	padding-bottom: .8rem;
	padding-right: 1.6rem;

	background-color: #fff;
	color: #1A1A1A;
	font-family: 'NeulisSans', sans-serif;
	font-weight: 900;
	font-size: .9rem;
	line-height: 1.4rem;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50vh;
	/* ✅ color last; also reads a secondary token if you use it elsewhere */
	box-shadow: 0 0 0 1px var(--pt-accent, var(--pt-active-accent, #ababab));
	transition: color .25s ease, box-shadow .25s ease, transform .25s ease;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.tp_learn_more a:hover {
 box-shadow: 0 0 0 2px var(--pt-accent, var(--pt-active-accent, #ababab));
}
/*
.tp_learn_more a > * { position: relative; z-index: 1; }
.tp_learn_more a::after {
  content:""; position:absolute; inset:0; border-radius:inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 35%, rgba(255,255,255,0) 100%);
  opacity:.8; pointer-events:none; z-index:0; transition:opacity .25s ease;
}
.tp_learn_more a:hover { box-shadow: 0 0 0 1px #fff; }
.tp_learn_more a:hover::after { opacity:.9; }
.tp_learn_more a:focus-visible { outline:2px solid #fff; outline-offset:3px; }
.tp_learn_more a:active { transform: translateY(1px); box-shadow: 0 0 0 1px rgba(255,255,255,.85); }
*/




/* Restored container for vehicle image + glow */
.powertrain_vehicle_images {
	width:100%;
	height:auto;
	display:flex;
	justify-content:flex-end;
	position:relative; /* establishes stacking context */
	z-index:0;
}
.powertrain_vehicle_images img.pt-veh-img { 
	position:relative; 
	z-index:1; 
	/* max-width: 620px; */
	width: 100%; 
	height:auto; 
	display:block; 
}

.pt-veh-glow {
	position:absolute;
	right:-9rem; bottom:0; top:50%; transform:translate(0,-50%);
	width: clamp(420px,48vw,880px);
	height: clamp(340px,38vw,700px);
	background: radial-gradient(circle, rgba(96,146,173,0.48) 0%, rgba(29,88,194,0) 60%);
	opacity:0; pointer-events:none; z-index:-1; /* send glow behind vehicle */
	animation: ptVehGlowIn 2s ease-out .65s forwards;
}

/* Optional theme overrides via parent powertrain classes */
.pt-hybrid .pt-veh-glow { background:radial-gradient(circle, rgba(120,170,140,0.5) 0%, rgba(40,120,70,0) 60%); }
.pt-ev .pt-veh-glow { background:radial-gradient(circle, rgba(110,160,230,0.55) 0%, rgba(40,110,200,0) 62%); }
.pt-phev .pt-veh-glow { background:radial-gradient(circle, rgba(150,140,220,0.55) 0%, rgba(70,50,180,0) 62%); }
.pt-gas .pt-veh-glow { background:radial-gradient(circle, rgba(210,150,90,0.45) 0%, rgba(180,90,30,0) 60%); }

@keyframes ptVehGlowIn {
	0% { opacity:0; transform:translate(2rem,-50%) scale(.9); filter:blur(2px); }
	55% { opacity:.85; transform:translate(.5rem,-50%) scale(1.02); filter:blur(0); }
	100% { opacity:.7; transform:translate(0,-50%) scale(1); }
}
@-webkit-keyframes ptVehGlowIn {
	0% { opacity:0; -webkit-transform:translate(2rem,-50%) scale(.9); filter:blur(2px); }
	55% { opacity:.85; -webkit-transform:translate(.5rem,-50%) scale(1.02); filter:blur(0); }
	100% { opacity:.7; -webkit-transform:translate(0,-50%) scale(1); }
}

/* Vehicle image graceful reserve + fade-in */
.pt-veh-img {
	display: block;
	/* max-width: 620px; */
	width: 100%;
	height: auto;
	aspect-ratio: 620 / 330; /* Provides layout stability in supporting browsers */
	object-fit: contain;
	opacity: 1; /* Vue pts-fade controls opacity; keep size stable */
	background: linear-gradient(110deg, rgba(255,255,255,0.15) 8%, rgba(255,255,255,0.30) 18%, rgba(255,255,255,0.15) 33%);
	background-size: 200% 100%;
	animation: pt-veh-shimmer 1.4s linear infinite;
	border-radius: 4px;
}
.pt-veh-img.is-ready {
	background: transparent;
	animation: none;
}
/* .pt-veh-img.is-loading hook intentionally removed (no-op); shimmer handled by .pt-veh-img */
@keyframes pt-veh-shimmer {
	0% { background-position: 180% 0; }
	100% { background-position: -20% 0; }
}

.powertrain_type {
	width: 100%;
	height: auto;
}
.powertrain_type h2 { /* sizing unified later using --pt-h2-size */
	color: var(--pt-accent, #D62828);
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'NeulisSans', sans-serif;
}

.p_content_sec_one_flexed {
	padding-bottom: 1.5rem;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.one_liner_container {
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.one_liner_container h3 {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.3rem;
    color: #fff;
}

.shop_kba_link {
	width: 30%;
	padding-left: 2.5%;
	margin-left: auto;
	height: auto;
}

.icon_animations_container {
	padding-left: 2.5%;
	margin-left: auto;
	height: auto;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------
	 Typographic refinement for powertrain module
	 - Uses clamp() for fluid sizing between small and large viewports
	 - Keeps existing visual weight but tightens hierarchy
	 - Easy future tuning via CSS custom properties
---------------------------------------------- */

/* Powertrain title */
.powertrain_type h2 { 
	font-size: 3rem; 
	line-height: 1.1; 
	letter-spacing: 0; 
	text-shadow: 1px 1px 1px #000;
	position: relative;
	z-index: 100;
}

/* One-liner */
.p_content_sec_one_flexed h3 { font-size:1.6rem; line-height:1.3; font-weight:350; letter-spacing:0; }

/* Inventory link area minor refinement */
.shop_kba_link a {
	font-size: 0.95rem; /* keep supporting role */
	letter-spacing: .25px;
	font-weight: 500;
}

@media (max-width: 640px) {
	.shop_kba_link a { font-size: 0.9rem; }
}

.vehicle_specs_flexed_row {
	margin-top: 4rem;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	column-gap: 2.5rem; /* keep original horizontal spacing */
	row-gap: 3.25rem; /* added extra vertical separation between first and second row */
	flex-wrap: wrap;
}
.powertrain_spec_flexed {
	/* Two-column layout: gap in this context is 2.5rem (see .vehicle_specs_flexed_row earlier)
	   Width per item = (100% - gap) / 2 = (100% - 2.5rem) / 2 */
	flex: 0 0 calc((100% - 2.5rem)/2);
	max-width: calc((100% - 2.5rem)/2);
	height: auto;
	display: flex;
	flex-direction: row;
	gap: 1.1rem;
}

.powertrain_spec_content {
	width: auto;
	height: auto;
}
.powertrain_spec_content h4 {
	font-family: 'NeulisSans', Sans-Serif;
	font-weight: 400;
	color: var(--pt-accent, #ababab);
	font-size: 1.5rem;
	line-height: 1.5rem;
	transition: color .25s ease;
}
.powertrain_spec_content p {
	margin-top: .5rem;
    font-weight: normal;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.8rem;
}
.vehicle_specs_flexed_column {
	width: 100%;
	height: auto;
}
/* Real-World Savings Section */
.savings_section_container {
	margin-top: 2.3rem;
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	/*
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 4px 18px -6px rgba(0, 0, 0, 0.012);
	*/
}
/* Overlay sheen (mirrors .top_picks_block li::after) */
.savings_section_container::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(255,255,255,0.25), rgba(255,255,255,0)) 0 0 / 100% 100% no-repeat;
	pointer-events: none;
	mix-blend-mode: overlay;
	opacity: .55;
}

.savings_section_wrap {
	width: 83%;
	height: auto;
	margin: 0px auto;
}
.savings_section {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-color: transparent; /* parent handles gradient */
}
.savings_section h3 {
	margin-top: 2rem;
	width: 100%;
	height: auto;
	font-size: 2.3rem;
    line-height: 1.1;
    letter-spacing: 0;
	color: #fff;
	font-weight: 300;
}
.savings_section p {
	margin-top: 1rem;
    font-family: 'Manrope', Sans-Serif;
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 2rem;
	color: #fff;
}


.savings_section_kba_flexed {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* the pill link */
.savings_section_kba_flexed a:link,
.savings_section_kba_flexed a:visited {
	width: 100%;
	max-width: 250px;
	margin: 2rem 0;
	padding-top: .9rem;
	padding-bottom: .8rem;
	background-color: #fff;
	color: #1A1A1A;
	font-family: 'Neulis Sans', Sans-Serif;
	font-weight: 900;
    font-size: .9rem;
    line-height: 1.4rem;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-flex;          /* inline so it sizes to content */
	justify-content: center;
	align-items: center;
	border-radius: 50vh;
	box-shadow: var(--pt-accent, var(--pt-active-accent, #ababab)) 0 0 0 1px;
	transition: color .25s ease, box-shadow .25s ease, transform .25s ease;
	position: relative;
	overflow: hidden;              /* clip the overlay to rounded corners */
	isolation: isolate;            /* contain the pseudo-element effects */
}

/* keep all child content above the overlay */
.savings_section_kba_flexed a > * {
  position: relative;
  z-index: 1;
}

/* overlay sheen (no blend mode so it shows on pure black) */
.savings_section_kba_flexed a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0.00) 100%
  );
  opacity: .8;                   /* visible on #000; adjust 0.5–0.85 */
  pointer-events: none;
  z-index: 0;                    /* sit under text but above bg */
  transition: opacity .25s ease;
}

/* polish */
.savings_section_kba_flexed a:hover {
	box-shadow: var(--pt-accent, var(--pt-active-accent, #ababab)) 0 0 0 2px;
}
.savings_section_kba_flexed a:hover::after { opacity: .9; }
.savings_section_kba_flexed a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}



.powertrain_spec_row {
	margin-top: 2.6rem;
	width: auto;
	height: auto;
}
.powertrain_spec_row p {
	margin-top: .3rem;
    font-family: 'Manrope', Sans-Serif;
    font-weight: normal;
    color: #fff;
    font-size: 1.4rem;
    line-height: 2rem;
}
/* Align bullet lists with heading text (remove default browser left overhang) */
.powertrain_spec_row ul {
	list-style: disc;
	list-style-position: outside; /* fallback */
	margin: .4rem 0 0 0; /* top margin small spacing under h4 */
	padding: 0; /* reset default padding */
}
.powertrain_spec_row ul li {
	margin-top: .5rem;
	position: relative;
	margin-left: 1.1rem; /* create manual indent to align bullet edge with h4 text start */
	padding-left: .4rem; /* space between custom bullet and text */
	font-size: 1.3rem;
	color: #fff;
}
/* Optional custom bullet to ensure consistent alignment across browsers */
.powertrain_spec_row ul li::marker {
	font-size: .7em; /* slightly smaller marker for visual balance */
}
/* Modern look tweaks */
.powertrain_slider .pts-tabs {
	position: relative;
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	gap: 0;
}

.powertrain_slider .pts-tab {
	flex: 1 1 0;
	background: none;
	border: none;
	padding: .55rem .25rem .65rem .25rem;
	border-radius: 0;
	font-family: 'Manrope', Sans-Serif;
	font-size: .95rem;
	letter-spacing: .25px;
	line-height: 1.2;
	color: #6a6f74;
	cursor: pointer;
	position: relative;
	text-align: center;
	transition: color .2s ease;
}
.powertrain_slider .pts-tab:hover { color:#000; }
.powertrain_slider .pts-tab:focus-visible { outline:2px solid #000; outline-offset:2px; }
.powertrain_slider .pts-tab.active { color:#000; font-weight:500; }

/* ===== Minimal Theme Variant (Trending Underline + Glass) ===== */
.pts-theme-minimal .powertrain_slider .pts-tabs { gap: 1.25rem; }
.pts-theme-minimal .powertrain_slider .pts-tab {
	background: transparent;
	border: none;
	padding: .35rem .25rem .65rem .25rem;
	border-radius: 0;
	font-size: 1.02rem;
	font-weight: 400;
	color: #5d6369;
	letter-spacing: .25px;
	position: relative;
	isolation: isolate;
}
.pts-theme-minimal .powertrain_slider .pts-tab:before {
	content: "";
	position: absolute; inset:0;
	background: linear-gradient(135deg,rgba(255,255,255,.65),rgba(255,255,255,.15));
	border:1px solid rgba(0,0,0,.05);
	opacity:0; border-radius:12px;
	backdrop-filter: blur(6px) saturate(160%);
	transition: opacity .4s ease, transform .4s ease;
	transform: translateY(4px) scale(.96);
	z-index:-1;
}
.pts-theme-minimal .powertrain_slider .pts-tab:hover:before { opacity:.55; transform: translateY(0) scale(1); }
.pts-theme-minimal .powertrain_slider .pts-tab.active:before { opacity:.85; transform: translateY(0) scale(1); }
.pts-theme-minimal .powertrain_slider .pts-tab.active { color: var(--pt-accent,#000) !important; background: transparent; box-shadow:none; }
.pts-theme-minimal .powertrain_slider .pts-indicator { height: 2px; box-shadow:none; background: linear-gradient(90deg,var(--pt-accent,#000),var(--pt-accent,#000)); }
.pts-theme-minimal .powertrain_slider .pts-range { border:1px solid #e1e4e6; }
.pts-theme-minimal .powertrain_slider .pts-range::-webkit-slider-runnable-track { background: linear-gradient(90deg,var(--pt-accent,#000) 0,var(--pt-accent,#000) 0) no-repeat, linear-gradient(#d5dadd,#d5dadd); background-size:0 100%,100% 100%; }
.pts-theme-minimal .powertrain_slider .pts-range::-webkit-slider-thumb { border-color: var(--pt-accent,#000); }
.pts-theme-minimal .powertrain_slider .pts-range::-moz-range-thumb { border-color: var(--pt-accent,#000); }

/* Glass subtle panel feel (future expansion) */
/*
.pts-theme-minimal .powertrain_title_p p { background: linear-gradient(135deg,rgba(255,255,255,.85),rgba(255,255,255,.55)); display:inline-block; padding:.4rem .75rem; border-radius:10px; border:1px solid rgba(0,0,0,.06); } */

/* Indicator now a soft underline glow */
.powertrain_slider .pts-indicator {
	background: linear-gradient(90deg,var(--pt-accent,#000),var(--pt-accent,#000));
	height:4px;
	box-shadow:0 1px 6px -1px var(--pt-accent,#000),0 0 0 1px rgba(0,0,0,.05);
}

/* Slider track modernization */
.powertrain_slider .pts-track-wrapper {
	position: relative;
	width:100%;
	height:22px; /* match thumb size for centering */
	display:flex;
	align-items:center; /* centers track (range) vertically so thumb sits centered */
	padding-top:0;
}
.powertrain_slider .pts-range {
	height:8px;
	border-radius:10px;
	margin:0; /* remove any default vertical offset */
	width:100%;
}

/* Simplified: native range styling (no faux track) */
.powertrain_slider .pts-range { background: linear-gradient(90deg,var(--pt-accent,#000) 0,var(--pt-accent,#000) 0) no-repeat, #d4d4d4; background-size:0 100%,100% 100%; }
.powertrain_slider .pts-range::-webkit-slider-thumb { opacity:1; }
.powertrain_slider .pts-range::-moz-range-thumb { opacity:1; }

/* Thumb vertical centering adjustments */
.powertrain_slider .pts-range::-webkit-slider-thumb { margin-top:-7px; }
/* Firefox centers differently; expand the control height & ensure track centered */

/* Plain text tab style overrides (remove glass hover & accent text color) */
.pts-theme-minimal .powertrain_slider .pts-tab:before { display:none !important; }
.pts-theme-minimal .powertrain_slider .pts-tab { color:#6a6f74 !important; font-weight:400; background:transparent !important; box-shadow:none !important; border:none !important; }
.pts-theme-minimal .powertrain_slider .pts-tab:hover { color:#000 !important; }
.pts-theme-minimal .powertrain_slider .pts-tab.active { color:#000 !important; font-weight:500; }
.powertrain_slider .pts-range::-webkit-slider-runnable-track { height:8px; border-radius:10px; }
.powertrain_slider .pts-range::-moz-range-track { height:8px; border-radius:10px; }
.powertrain_slider .pts-range::-webkit-slider-thumb { box-shadow:0 4px 10px rgba(0,0,0,.25); background:#fff; }
.powertrain_slider .pts-range::-moz-range-thumb { box-shadow:0 4px 10px rgba(0,0,0,.25); background:#fff; }


/* Range focus ring synergy */
.powertrain_slider .pts-range:focus-visible { outline:3px solid color-mix(in srgb, var(--pt-accent,#000) 55%, transparent); outline-offset:4px; }

@supports not (color-mix(in srgb, #000, #fff)) {
	.powertrain_slider .pts-range:focus-visible { outline:2px solid var(--pt-accent,#000); }
}

.powertrain_slider .pts-tabs {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: .5rem;
}

.powertrain_slider .pts-tab {
	background: none;
	border: none;
	padding: .25rem .5rem .5rem .5rem;
	font-family: 'Manrope', Sans-Serif;
	font-size: 1.05rem;
	line-height: 1.2;
	color: #8d8d8d;
	cursor: pointer;
	position: relative;
	transition: color .25s ease;
}
.powertrain_slider .pts-tab:hover, .powertrain_slider .pts-tab:focus { color: #444; outline: none; }
.powertrain_slider .pts-tab.active { color: #000; font-weight: 500; }
.powertrain_options_flexed .pts-tab.active { color: var(--pt-accent, #000); }

.powertrain_slider .pts-indicator {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--pt-accent, #000);
	border-radius: 2px;
	transition: transform .35s ease, width .35s ease, background-color .3s ease;
}

.powertrain_slider .pts-track-wrapper { position: relative; width: 100%; }
.powertrain_slider .pts-range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: linear-gradient(90deg,#000 0%,#000 0%,#d4d4d4 0%);
	outline: none;
	margin: .25rem 0 0 0;
	cursor: pointer;
	transition: background .25s ease;
}

/* Thumb */
.powertrain_slider .pts-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	background: #000;
	border: 2px solid #000;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0,0,0,.35), 0 0 0 4px #fff inset;
	transition: transform .25s ease, box-shadow .25s ease;
}
.powertrain_slider .pts-range::-webkit-slider-thumb:hover { transform: scale(1.05); }
.powertrain_slider .pts-range::-webkit-slider-thumb:active { transform: scale(.95); }

.powertrain_slider .pts-range::-moz-range-track { background: transparent; }
.powertrain_slider .pts-range::-moz-range-thumb {
	width: 22px; height: 22px; background:#000; border:2px solid #000; border-radius:50%; box-shadow:0 2px 4px rgba(0,0,0,.35), 0 0 0 4px #fff inset; transition:transform .25s ease;
}
.powertrain_slider .pts-range:focus-visible { outline: 2px solid #0a84ff; outline-offset: 4px; }

/* Panel */
.powertrain_slider .pts-panel { width: 100%; }
.powertrain_slider .pts-panel-inner {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}
.powertrain_slider .pts-text { flex: 1 1 55%; }
.powertrain_slider .pts-heading { font-size: 1.4rem; line-height:1.3; margin:0 0 .75rem 0; font-weight:500; }
.powertrain_slider .pts-desc { font-size: 1.05rem; line-height:1.55rem; margin:0; color:#221f1f; }
.powertrain_slider .pts-image-wrap { flex: 1 1 45%; display:flex; justify-content:center; align-items:flex-start; }
.powertrain_slider .pts-image-wrap img { max-width: 100%; height:auto; display:block; }

/* powertrain options right column layout */
.powertrain_options_right_col {
	margin-top: 0rem;
	width: 40%;
	height: inherit;
	display: flex;
	flex-direction: column;
}
.p_content_sec_one_flexed {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.one_liner_container {
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.shop_kba_link {
	width: 30%;
	padding-left: 2.5%;
	margin-left: auto;
	height: auto;
	/*
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	*/
}

.icon_animations_container {
	padding-left: 2.5%;
	margin-left: auto;
	height: auto;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
}


.vehicle_specs_flexed_row {
	margin-top: 3.5rem;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	column-gap: 1.6rem; /* preserve horizontal gap */
	row-gap: 2.6rem; /* increased vertical separation */
	flex-wrap: wrap;
}
.powertrain_spec_flexed {
	/* Second context uses a smaller horizontal gap (1.6rem). Two columns: (100% - 1.6rem)/2 */
	flex: 0 0 calc((100% - 1.6rem)/2);
	max-width: calc((100% - 1.6rem)/2);
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.1rem;
}

.powertrain_spec_icon {
	width: auto;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.powertrain_spec_icon img {
	display: block;
	width: auto;
	max-width: 60px;
	height: 100%;
	max-height: 60px;
}

.powertrain_spec_content {
	width: auto;
	height: auto;
}
.powertrain_spec_row {
	margin-top: 3.5rem;
	width: 100%;
	height: auto;
}

.powertrain_spec_row:first-child {
	margin-top: 3.5rem;
	width: 100%;
	height: auto;
}
.powertrain_spec_row h4 {
    font-family: 'NeulisSans', Sans-Serif;
    font-weight: 400;
	color: var(--pt-accent, #ababab);
    font-size: 1.5rem;
    line-height: 1.5rem;
	transition: color .25s ease;
}

.search_inventory_advertisement {
	/* Shown conditionally via v-if when PHEV is active */
	margin-top: 6.2rem;
	width: 90%;
	height: auto;
}
.search_inventory_advertisement img {
	width: 100%;
	height: auto;
}

.powertrain_info_video_container {
	margin-top: 4rem;
	width: 90%;
	height: auto;
	/*
	box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 0px 1px, rgba(0, 0, 0, 0.01) 0px 4px 18px -6px;
	*/
    position: relative;
}

.powertrain_info_video_link {

	display: block;
	width: 100%;
	color: inherit;
	text-decoration: none;
}
.powertrain_info_video_link:hover,
.powertrain_info_video_link:visited,
.powertrain_info_video_link:active {
	color: inherit;
	text-decoration: none;
}
.powertrain_info_video_link:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: 4px;
	border-radius: 10px;
}
.powertrain_info_video_flexed {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
}
.powertrain_info_left_col {
	width: 70%;
	height: auto;
	display: flex;
}
.hybrid_info_video_thumb_container {
	width: 190px;
	height: inherit;
	position: relative;

	/*
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 4px 18px -6px rgba(0, 0, 0, 0.012);
	*/
}
.hybrid_info_video_thumb {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	flex: 0 0 190px;
	width: 190px;
	height: inherit;
	background-color: #0b1410;
	overflow: hidden;
	/*
	box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
	*/
}
/*
.hybrid_info_video_thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(11, 18, 14, 0.48) 0%, rgba(20, 32, 26, 0.26) 46%, rgba(20, 32, 26, 0.12) 70%, rgba(18, 30, 24, 0) 100%);
	opacity: 0.98;
	z-index: 2;
	pointer-events: none;
}
*/
.hybrid_info_video_thumb img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hybrid_info_video_thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(16, 35, 48, 0) 0%, rgba(16, 35, 48, 1) 100%);
	pointer-events: none;
	z-index: 2;
}

.hybrid_info_video_play {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	width: 100%;
	height: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
}
.video_icon {
	position: relative;
	z-index: 2;
}
.play_icon {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	width: 227px;
	height: 128px;
	display: flex;
	justify-content: center;
	align-content: center;
}
/* Play Button */

/* triangle */
.play_btn_info::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-40%) translateY(-50%);
	transform: translateX(-40%) translateY(-50%);
	transform-origin: center center;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 17px solid #fff;
	z-index: 100;
	-webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* pulse wave */
.play_btn_info:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    z-index: 4;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .75);
    top: -33%;
    left: -34%;
    background: rgba(198, 16, 0, 0);
}
@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;

  }
}
@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}
/* Play Button */

.powertrain_info_right_col {
	margin-left: auto;
	width: 35%;
	height: inherit;
	display: flex;
	flex-direction: column;
}

.hybrid_info_video_content {
	width: auto;
	height: inherit;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
.hybrid_info_video_heading {
	margin-top: 5rem;
   /* margin-left: -10.5rem;*/
	width: 100%;
	height: auto;
}
.hybrid_info_video_heading h2 {
    font-weight: 500;
    color: #fff;
    font-size: 2.7rem;
    text-transform: uppercase;
	letter-spacing: 0;
    line-height: 2.7rem;
    position: relative;
    z-index: 3;
	text-shadow: 2px 2px 2px rgb(0, 0, 0, .5);
}
.hybrid_info_video_text {
    margin-top: 1rem;
	width: 100%;
	position: relative;
	z-index: 1;
    font-family: 'Manrope', Sans-Serif;
    font-weight: normal;
    color: #fff;
    font-size: 1.4rem;
    line-height: 2rem;
}
.hybrid_sales {
	width: 100%;
	height: auto;
}
.hybrid_sales a:link, .hybrid_sales a:visited {
	margin: 1rem 0;
    padding-top: 1rem;
    padding-left: 1.6rem;
    padding-bottom: .8rem;
    padding-right: 1.6rem;
    background-color: #fff;
    color: #1A1A1A;
    font-family: 'NeulisSans', sans-serif;
    font-weight: 900;
    font-size: .9rem;
    line-height: 1.4rem;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50vh;
    box-shadow: 0 0 0 1px var(--pt-accent, var(--pt-active-accent, #ababab));
    transition: color .25s ease, box-shadow .25s ease, transform .25s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.hybrid_sales a:hover {
	box-shadow: 0 0 0 2px var(--pt-accent, var(--pt-active-accent, #ababab));
}
/* Powertrain Options Section */

/* Types of Vehicles Section */
.types_of_hybrids_container {
	padding-top: 8rem;
	padding-bottom: 8rem;
	width: 100%;
	height: auto;
	position: relative;
	background-color: #102330;
}
.types_of_hybrids_background {
    width: 100%;
    height: auto;
    position: relative;
	z-index: 2;
    background-color: #102330;
}
.section_header {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
}
.flex_start {
	justify-content: flex-start !important;
}
.types_of_hybrids_block {
	position: relative;
	z-index: 2;
	/*
	padding-top: 5rem;
	*/
	padding-bottom: 8rem;
	width: 100%;
	height: auto;
}
.types_of_hybrids_content {
	width: 100%;
	height: auto;
}
.pc_hybrid_types {
	display: block;
}
.hybrid_types_layered {
	width: 100%;
	height: 550px;
	position: relative;
}
.hybrid_type_layer_one {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	width: 100%;
	height: 550px;
	display: flex;
	flex-direction: row;
}
#hybrid_type_left_column, #hybrid_type_right_column {
	width: 23%;
	height: inherit;
	display: flex;
	align-items: center;
	position: relative;
    z-index: 0;
}
#hybrid_type_right_column {
	margin-left: auto;
}
.ht_item_right {
	margin-left: auto;
}
#hybrid_type_middle_column {
	width: 55%;
	height: inherit;
	position: relative;	
}
.hybrid_type_item {
	background-color: #fff;
}
.leaf_animation { 
    animation: bounce 2s alternate infinite; 
}
#leaf_animation_top_right {
	position: absolute;
	top: -25px;
	right: -55px;
	z-index: 1;
	width: 140px;
	height: 120px;
}
#leaf_animation_top_right img {
	width: 140px;
	height: 120px;
}
#leaf_animation_top_left {
	position: absolute;
	bottom: 0px;
	left: -55px;
	z-index: 1;
	width: 140px;
	height: 120px;
	animation-delay: 2.5s;
}
#leaf_animation_top_left img {
	width: 140px;
	height: 120px;
}
@keyframes bounce {
	from { transform: translate3d(0,0,0); }
	to { transform: translate3d(0,15px,0); }
}
@-webkit-keyframes bounce {
	from { -webkit-transform: translate3d(0,0,0); }
	to { -webkit-transform: translate3d(0,15px,0); }
}
.middle_hybrid_types_flexed_layer {
	position: relative;
	z-index: 2;
	width: 100%;
	height: inherit;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2.5%;
}
.extended_hybrid_type_item {
	width: 95%;
	height: 550px;
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.type_title_bg {
	width: 100%;
	height: auto;
}
.type_wrap {
	width: 90%;
	height: auto;
	margin: 0px auto;
}
.type_title {
	width: 100%;
	min-height: auto;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.type_title h2 {
    color: #1A1A1A;
    font-size: 2.1rem;
    line-height: 1.1;
    letter-spacing: 0;
	font-weight: 900;
	text-transform: uppercase;
}
.type_title_small {
	margin-top: -2.5rem;
	margin-left: .2rem;
	font-size: 1.4rem;
	letter-spacing: 0;
	font-weight: normal;
}
.hybrid_type_background {
	width: 100%;
	height: 200px;
	background-color: #000;
	position: relative;
	background-repeat: no-repeat;
	/* Fill the div height; allow width to overflow, and push image further down */
	background-size: auto 150%;
	background-position-x: right;
	background-position-y: 0rem;
}
.hybrid_type_background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4); /* 0.4 = 40% opacity overlay */
  z-index: 1;
}
.hybrid_type_background::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40%;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 100%);
	z-index: 0; /* stay beneath the vehicle thumbnail, only blending the header image */
	pointer-events: none;
}
.hybrid_type_background_gas {
	background-image: url('../../../../../../cm_jdp_ev_assets/hybrid/powertrain_section/gas_header_background.jpg');             
}
.hybrid_type_background_hybrid {
	background-image: url('../../../../../../cm_jdp_ev_assets/hybrid/powertrain_section/hybrid_header_background.jpg');
}
.hybrid_type_background_plug_in_hybrid {
	background-image: url('../../../../../../cm_jdp_ev_assets/hybrid/powertrain_section/plug_in_hybrid_header_background.jpg');  
}
.hybrid_type_background_electric {
	background-image: url('../../../../../../cm_jdp_ev_assets/hybrid/powertrain_section/ev_header_background.jpg');  
}
.type_thumbnial_bg {
	margin-top: -9rem;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2; /* ensure vehicle thumbnail sits above header gradients */
}
.type_thumbnial_large {
	width: 100%;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.rotate_image_right img {
transform: scaleX(-1);
}
.type_thumbnial_large img {
	width: 115%;
	height: auto;
	max-height: 167px;
}
.type_thumbnial_small {
	width: 100%;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.type_thumbnial_small img {
	width: 110%;
	height: auto;
}
#left_type_thumbnail {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	width: 350px;
}
.type_text_bg {
	margin-top: 1rem;
	width: 100%;
	height: auto;
}
.type_text {
	width: 100%;
	height: auto;
	flex-basis: 1px
}
.type_text ul {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	flex-basis: 1px;
	height: 100%;
	align-items: center;
}
.type_text li {
	width: 100%;
	height: auto;
}
.type_text li p {
	margin-top: 0rem;
    margin-top: .3rem;
    font-family: 'Manrope', Sans-Serif;
    font-weight: normal;
    color: #000;
    font-size: 1.4rem;
    line-height: 2rem;
}
.type_kba_bg {
	margin-top: auto;
	padding-bottom: 2rem;
	width: 100%;
	height: auto;
}
.type_kba_wrap {
	width: 70%;
	height: auto;
	margin: 0px auto;
}
.type_kba {
	margin-top: 1rem;
    display: block;
    width: 100%;
    height: auto;
    padding: 1px;
    transition: .4sease;
    outline: none;
    outline-style: none;
    text-decoration: none;
    text-transform: capitalize;
    text-align: center;
}
.type_kba a:link, .type_kba a:visited {
	font-family: 'NeulisSans', sans-serif;
	display: flex;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: .8rem;
    width: 100%;
    height: auto;
	font-weight: 900;
    text-decoration: none;
	border-radius: 50vh;
    font-size: 1.333rem;
    color: #1A1A1A;
    border-radius: 50vh;
    letter-spacing: .05rem;
    text-transform: uppercase;
   /* box-shadow: rgba(0, 0, 0, 1) 0px 0px 0px 1px; */
    background-color: #fff;
	position: relative;
}
.type_kba a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 35%, rgba(255, 255, 255, 0.00) 100%);
    opacity: .8;
    pointer-events: none;
    z-index: 0;
    transition: opacity .25s ease;
}
.gas_engine_inventory_kba {
	box-shadow: rgb(214, 40, 40) 0px 0px 0px 2px;
}
.gas_engine_inventory_kba:hover {
	box-shadow: rgb(214, 40, 40) 0px 0px 0px 3px;
}
.non_plug_in_hybrid_kba {
	box-shadow: rgb(58, 125, 68) 0px 0px 0px 2px;
}
.non_plug_in_hybrid_kba:hover {
	box-shadow: rgb(58, 125, 68) 0px 0px 0px 3px;
}
.plug_in_hybrid_kba {
	box-shadow: rgb(0, 131, 143) 0px 0px 0px 2px;
}
.plug_in_hybrid_kba:hover {
	box-shadow: rgb(0, 131, 143) 0px 0px 0px 3px;
}
.electric_engine_kba {
	box-shadow: rgb(118, 206, 141) 0px 0px 0px 2px;
}
.electric_engine_kba:hover {
	box-shadow: rgb(118, 206, 141) 0px 0px 0px 3px;
}
/* Use the section’s --pt-accent (or --pt-active-accent), else fallback */
.type_border_kba a:link, .type_border_kba a:visited {
	/* keep your existing visuals … */
	display: flex;
	justify-content: center;
	padding-top: 1rem;
	padding-bottom: .8rem;
	width: 100%;
	box-sizing: border-box;
	max-width: 100%;
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: 900;
	color: #1A1A1A;
	border-radius: 50vh;
	letter-spacing: .05rem;
	text-transform: uppercase;
	background-color: #fff;
	font-family: 'NeulisSans', sans-serif;
	box-shadow: 0 0 0 1px var(--pt-accent, var(--pt-active-accent, #ababab));
}
.type_border_kba a:hover {
	box-shadow: 0 0 0 1px #fff;
}
/* enable overlay without changing layout */
.type_border_kba a {
  position: relative;
  overflow: hidden;   /* clip to rounded corners */
  isolation: isolate; /* contain the overlay blend */
}
/* keep link contents above the overlay */
.type_border_kba a > * {
  position: relative;
  z-index: 1;
}
/* the subtle top-to-bottom sheen */
.type_border_kba a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0.00) 100%
  );
  opacity: .8;              /* tweak 0.5–0.9 to taste */
  pointer-events: none;
  z-index: 0;
  transition: opacity .25s ease;
}
/* optional: a tiny hover lift for the sheen only */
.type_border_kba a:hover::after { opacity: .9; }

/* Types of Vehicles Section */