/**
 * Variant CSS: guarantee--promise-split
 *
 * A two-column guarantee — left holds one big declarative promise (kicker +
 * headline + paragraph + "terms" button), right holds supporting points with
 * accent check marks (title + one-line description). An asymmetric layout that
 * foregrounds one core promise and backs it with specifics. Text is --ink
 * (polarity-aware); kicker, em, the marks and the button use --accent / CTA
 * tokens. Stacks to one column on tablet. Part of the `guarantee` role.
 */

body.aibt-universal .universal-guarantee--promise-split {
	padding-block: calc(clamp(3.6rem, 7.5vw, 6rem) * var(--density, 1));
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__cols {
	gap: clamp(2.4rem, 6vw, 5rem) !important;
	align-items: center !important;
}

/* Lead column. */
body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__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-guarantee--promise-split .universal-guarantee__headline {
	font-family: var(--font-display) !important;
	color: var(--ink) !important;
	margin: 0 0 var(--space-md) 0 !important;
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__headline em {
	color: var(--accent) !important;
	font-style: italic;
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__deck {
	font-family: var(--font-body) !important;
	font-size: var(--text-base) !important;
	line-height: var(--leading-relaxed) !important;
	color: var(--ink) !important;
	opacity: 0.8;
	margin: 0 0 var(--space-lg) 0 !important;
	max-width: 38ch;
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__cta-wrap {
	margin: 0 !important;
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__cta .wp-block-button__link {
	background: var(--cta-bg-primary, var(--accent)) !important;
	color: var(--cta-text-primary, var(--on-dark, #ffffff)) !important;
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
	border-radius: var(--decor-radius-pill, 999px) !important;
	padding: 0.85rem 1.7rem !important;
	transition: background var(--duration-fast, 0.18s) var(--ease-default, ease),
		transform var(--duration-fast, 0.18s) var(--ease-default, ease) !important;
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__cta .wp-block-button__link:hover {
	background: var(--accent-hover, var(--accent)) !important;
	transform: translateY(-2px);
}

/* Keyboard focus ring (a11y) — no visual change for mouse users. */
body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__cta .wp-block-button__link:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: inherit;
}

/* Support column — stacked check points. */
body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__support {
	display: flex;
	flex-direction: column;
	gap: clamp(1.3rem, 3vw, 1.9rem);
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__point {
	gap: clamp(0.9rem, 2vw, 1.2rem) !important;
	align-items: flex-start !important;
	flex-wrap: nowrap !important;
	padding-bottom: calc(clamp(1.3rem, 3vw, 1.9rem) * var(--density, 1));
	border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__point:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

/* Accent check mark. */
body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__point-icon {
	flex: 0 0 auto !important;
	width: 2.2rem;
	height: 2.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	color: var(--accent) !important;
	border-radius: var(--decor-radius-pill, 999px);
	background: color-mix(in srgb, var(--accent) 14%, transparent);
	border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__point-body {
	flex: 1 1 auto;
	min-width: 0;
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__point-title {
	font-family: var(--font-display) !important;
	font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	color: var(--ink) !important;
	margin: 0 0 0.3rem 0 !important;
}

body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__point-desc {
	font-family: var(--font-body) !important;
	font-size: var(--text-sm) !important;
	line-height: var(--leading-relaxed) !important;
	color: var(--ink) !important;
	opacity: 0.74;
	margin: 0 !important;
}

/* Stack to one column on tablet. */
@media (max-width: 781px) {
	body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__cols {
		flex-direction: column !important;
	}
	body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__lead,
	body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__support {
		flex-basis: 100% !important;
		width: 100% !important;
	}
	body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__deck {
		max-width: none;
	}
}

/* Kill tracking to avoid clipping (A5). */
@media (max-width: 480px) {
	body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__kicker {
		letter-spacing: 0 !important;
	}
}

/* Respect reduced-motion: drop the hover lift. */
@media (prefers-reduced-motion: reduce) {
	body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__cta .wp-block-button__link {
		transition: background var(--duration-fast, 0.18s) var(--ease-default, ease) !important;
	}
	body.aibt-universal .universal-guarantee--promise-split .universal-guarantee__cta .wp-block-button__link:hover {
		transform: none;
	}
}
