/**
 * Kubota Europe product intro (WPBakery element `vc_kbeu_product_intro`).
 *
 * Based on the Figma design 3721-2795: a left-aligned block with the product
 * subtitle as a large heading (64px / Roman) over the product description
 * paragraph (24px / Light), both in black.
 *
 * Font family "Helvetica Neue LT Pro" is provided by the plugin's fonts
 * stylesheet (this handle depends on `kbeu-fonts`); we reference it through the
 * `--kbeu-font-principal` variable declared there. The bundled family ships the
 * 300 / 500 / 700 weights, so the design's 400 (Roman) title resolves to the
 * nearest available face.
 */

.kbeu-product-intro {
	color: #000;
}

.kbeu-product-intro__inner {
	max-width: 882px;
}

.kbeu-product-intro__title {
	margin: 0;
	font-family: var( --kbeu-font-principal );
	font-weight: 400;
	line-height: 1.2;
	font-size: clamp( 34px, 4.4vw, 64px );
	color: #000;
}

.kbeu-product-intro__text {
	margin-top: clamp( 12px, 1.5vw, 29px );
	font-family: var( --kbeu-font-principal );
	font-weight: 300;
	line-height: 1.55;
	font-size: clamp( 17px, 1.7vw, 24px );
	color: #000;
}

.kbeu-product-intro__text > :first-child {
	margin-top: 0;
}

.kbeu-product-intro__text > :last-child {
	margin-bottom: 0;
}
