/**
 * Variant CSS: social--big-handle-statement
 *
 * Social with the handle as the hero — kicker, an oversized @name (accent), one
 * line of invitation and a row of platform icon links. A bold, marketing accent
 * unlike the card grids and lists: the profile becomes the signature. Text stays
 * --ink (polarity-aware); the handle, kicker and icon hover take --accent. Part
 * of the `social` role.
 */

body.aibt-universal .universal-social--big-handle-statement {
	padding-block: calc(clamp(3rem, 7vw, 5rem) * var(--density, 1));
	text-align: center;
}

body.aibt-universal .universal-social--big-handle-statement .universal-social__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-social--big-handle-statement .universal-social__handle {
	font-family: var(--font-display) !important;
	font-size: clamp(2.4rem, 8vw, 4.6rem) !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: -0.03em !important;
	color: var(--accent) !important;
	margin: 0 auto var(--space-md) auto !important;
	overflow-wrap: anywhere;
}

body.aibt-universal .universal-social--big-handle-statement .universal-social__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.76;
	max-width: 46ch;
	margin: 0 auto clamp(1.6rem, 3.5vw, 2.4rem) auto !important;
}

/* Icon bar. */
body.aibt-universal .universal-social--big-handle-statement .universal-social__bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.8rem;
}

body.aibt-universal .universal-social--big-handle-statement .universal-social__link {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: var(--ink);
	border: 1.5px solid color-mix(in srgb, var(--ink) 20%, transparent);
	text-decoration: none;
	transition: color var(--duration-fast, 0.18s) var(--ease-default, ease),
		border-color var(--duration-fast, 0.18s) var(--ease-default, ease),
		background var(--duration-fast, 0.18s) var(--ease-default, ease),
		transform var(--duration-fast, 0.18s) var(--ease-default, ease);
}

body.aibt-universal .universal-social--big-handle-statement .universal-social__link:hover,
body.aibt-universal .universal-social--big-handle-statement .universal-social__link:focus-visible {
	color: var(--cta-text-primary, #ffffff);
	background: var(--accent);
	border-color: var(--accent);
	transform: translateY(-3px);
}

/* Visible keyboard focus ring — distinct from the filled hover state. */
body.aibt-universal .universal-social--big-handle-statement .universal-social__link:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

/* Smaller screens: shrink the handle so a longer @name never clips. */
@media (max-width: 420px) {
	body.aibt-universal .universal-social--big-handle-statement .universal-social__handle {
		font-size: clamp(1.9rem, 9vw, 2.6rem) !important;
	}
}

/* Honor reduced-motion: drop the icon lift. */
@media (prefers-reduced-motion: reduce) {
	body.aibt-universal .universal-social--big-handle-statement .universal-social__link {
		transition: color var(--duration-fast, 0.18s) var(--ease-default, ease),
			border-color var(--duration-fast, 0.18s) var(--ease-default, ease),
			background var(--duration-fast, 0.18s) var(--ease-default, ease);
	}
	body.aibt-universal .universal-social--big-handle-statement .universal-social__link:hover,
	body.aibt-universal .universal-social--big-handle-statement .universal-social__link:focus-visible {
		transform: none;
	}
}
