/**
 * Variant CSS: features--highlight-strip
 *
 * Four highlights as a compact horizontal bar — a large emoji icon over a short
 * label, separated by hairlines. No cards, no descriptions: quick "at a glance"
 * accents that cap a section or stand alone as a strengths bar. Labels stay
 * --ink (polarity-aware); the kicker takes --accent. On desktop the items share
 * one row with thin dividers; on mobile they wrap to a 2×2 grid and the dividers
 * drop. Part of the `features` role.
 */

body.aibt-universal .universal-features--highlight-strip {
	padding-block: calc(clamp(3rem, 7vw, 5rem) * var(--density, 1));
}

/* Intro. */
body.aibt-universal .universal-features--highlight-strip .universal-features__intro {
	margin-bottom: clamp(2rem, 4.5vw, 3rem);
}

body.aibt-universal .universal-features--highlight-strip .universal-features__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 auto var(--space-sm) auto !important;
}

body.aibt-universal .universal-features--highlight-strip .universal-features__headline {
	font-family: var(--font-display) !important;
	color: var(--ink) !important;
	margin: 0 !important;
}

body.aibt-universal .universal-features--highlight-strip .universal-features__headline em {
	color: var(--accent) !important;
	font-style: italic;
}

/* The strip. */
body.aibt-universal .universal-features--highlight-strip .universal-features__strip {
	gap: 0 !important;
	align-items: stretch !important;
}

body.aibt-universal .universal-features--highlight-strip .universal-features__item {
	flex: 0 1 230px !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0.4rem clamp(1.2rem, 3vw, 2.2rem);
}

/* Hairline dividers between items (desktop single row). */
body.aibt-universal .universal-features--highlight-strip .universal-features__item + .universal-features__item {
	border-left: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}

body.aibt-universal .universal-features--highlight-strip .universal-features__icon {
	font-size: clamp(1.9rem, 4vw, 2.4rem) !important;
	line-height: 1 !important;
	margin: 0 auto var(--space-sm) auto !important;
}

body.aibt-universal .universal-features--highlight-strip .universal-features__label {
	font-family: var(--font-display) !important;
	font-size: clamp(1.02rem, 2vw, 1.18rem) !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	color: var(--ink) !important;
	margin: 0 !important;
}

/* Mobile: wrap to a 2×2 grid; drop the dividers (they read wrong when wrapped). */
@media (max-width: 720px) {
	body.aibt-universal .universal-features--highlight-strip .universal-features__item {
		flex: 0 1 calc(50% - 0.5rem) !important;
		padding-block: 1rem;
	}
	body.aibt-universal .universal-features--highlight-strip .universal-features__item + .universal-features__item {
		border-left: 0;
	}
}

/* A8/A9 left-shift fix (2026-06-08): centered intro element(s) were max-width-capped by
   WP constrained layout but pinned left by horizontal margin:0. Force margin-inline:auto.
   Section class doubled -> specificity (0,4,1) beats h2.__headline-style rules; harmless on
   already-centered elements (auto margins compute to 0). Only left/right are overridden. */
body.aibt-universal .universal-features--highlight-strip.universal-features--highlight-strip .universal-features__headline { margin-inline: auto !important; }
