/**
 * Variant CSS: trust--years-experience-band
 *
 * A quiet two-column trust band anchored by ONE oversized tenure figure
 * ("X lat na rynku") on the left, with a kicker + headline and 2-3 supporting
 * proof lines on the right. Unlike the 4-up equal metrics grid (metrics-grid-4),
 * a single dominant numeral does the heavy lifting and the list reads as a short
 * argument beside it. All text is --ink (polarity-aware); the figure + emphasized
 * headline word use --accent. Part of the `trust` role.
 */

body.aibt-universal .universal-trust--years-experience-band {
	padding-block: calc(clamp(3rem, 7vw, 5rem) * var(--density, 1));
}

/* Band: figure column | copy column. */
body.aibt-universal .universal-trust--years-experience-band .universal-trust__band {
	gap: clamp(1.6rem, 4vw, 3.2rem) !important;
	align-items: center;
}

/* Figure column — the big tenure numeral. */
body.aibt-universal .universal-trust--years-experience-band .universal-trust__figure-col {
	position: relative;
	padding-right: clamp(1.4rem, 3vw, 2.6rem);
	border-right: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}

body.aibt-universal .universal-trust--years-experience-band .universal-trust__figure {
	font-family: var(--font-display) !important;
	font-size: clamp(4.5rem, 13vw, 8.5rem) !important;
	font-weight: 700 !important;
	line-height: 0.9 !important;
	letter-spacing: -0.04em !important;
	color: var(--accent) !important;
	margin: 0 !important;
}

body.aibt-universal .universal-trust--years-experience-band .universal-trust__figure-unit {
	font-family: var(--font-body) !important;
	font-size: var(--text-base) !important;
	font-weight: 600 !important;
	letter-spacing: var(--tracking-wide) !important;
	text-transform: uppercase !important;
	color: var(--ink) !important;
	opacity: 0.78;
	margin: var(--space-xs, 0.5rem) 0 0 0 !important;
}

/* Copy column. */
body.aibt-universal .universal-trust--years-experience-band .universal-trust__kicker {
	font-family: var(--font-body) !important;
	font-size: var(--text-xs) !important;
	font-weight: 600 !important;
	letter-spacing: var(--tracking-widest) !important;
	text-transform: uppercase !important;
	color: var(--accent) !important;
	margin: 0 0 var(--space-sm) 0 !important;
}

body.aibt-universal .universal-trust--years-experience-band .universal-trust__headline {
	font-family: var(--font-display) !important;
	color: var(--ink) !important;
	margin: 0 0 var(--space-md) 0 !important;
}

body.aibt-universal .universal-trust--years-experience-band .universal-trust__headline em {
	color: var(--accent) !important;
	font-style: italic;
}

/* Proof lines — custom marker, comfortable reading width. */
body.aibt-universal .universal-trust--years-experience-band .universal-trust__lines {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid;
	gap: clamp(0.6rem, 1.4vw, 0.95rem);
}

body.aibt-universal .universal-trust--years-experience-band .universal-trust__lines li {
	position: relative;
	font-family: var(--font-body) !important;
	font-size: var(--text-base) !important;
	line-height: var(--leading-relaxed) !important;
	color: var(--ink) !important;
	padding-left: 1.7rem;
	max-width: 46ch;
}

/* Accent check-tick marker drawn with borders (no extra markup). */
body.aibt-universal .universal-trust--years-experience-band .universal-trust__lines li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.42em;
	width: 0.5rem;
	height: 0.85rem;
	border: solid var(--accent);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Tablet / mobile: stack the band, drop the divider rule. */
@media (max-width: 781px) {
	body.aibt-universal .universal-trust--years-experience-band .universal-trust__band {
		gap: clamp(1.2rem, 4vw, 1.8rem) !important;
	}
	body.aibt-universal .universal-trust--years-experience-band .universal-trust__figure-col {
		border-right: none;
		padding-right: 0;
		padding-bottom: calc(clamp(1rem, 3vw, 1.4rem) * var(--density, 1));
		border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
	}
	body.aibt-universal .universal-trust--years-experience-band .universal-trust__figure-col,
	body.aibt-universal .universal-trust--years-experience-band .universal-trust__copy-col {
		flex-basis: 100% !important;
	}
}

/* Mobile (<=640px): cap the wide unit/kicker tracking so caps don't jitter (A5). */
@media (max-width: 640px) {
	body.aibt-universal .universal-trust--years-experience-band .universal-trust__kicker,
	body.aibt-universal .universal-trust--years-experience-band .universal-trust__figure-unit {
		letter-spacing: 0.08em !important;
	}
}
