/**
 * Stabilise the tech-specs Nivo slider height.
 *
 * The slides (frequency-response vs impulse charts) have different aspect
 * ratios, so Nivo resizes the slider between slides. Lock it to a single
 * aspect-ratio box and letterbox each chart with object-fit so nothing jumps.
 * Paired with assets/js/fix-tech-specs-slider.js (forces a fade transition).
 *
 * The white backdrop matters during the fade: without it, the letterbox is
 * transparent and the outgoing (taller) chart shows through the top/bottom
 * bands of the incoming (shorter) chart for a moment. A solid white backdrop —
 * which matches both charts' near-white background — turns that into a clean
 * cross-fade instead of a ghost frame.
 */
.tech-specs-slider .nivoSlider {
	height: auto !important;
	aspect-ratio: 400 / 230;
	overflow: hidden;
	background: #fff;
}

.tech-specs-slider .nivoSlider img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	object-position: center;
	top: 0 !important;
	left: 0 !important;
	background: #fff;
}
