/*
 * AXEK Elements – Titre AXEK (par 6LEX – https://6lex.co)
 * Titre en segments : normal (couleur 1) · 2ᵉ couleur · surligné (marqueur/bloc).
 * Le fond du surlignage suit le texte et se découpe proprement en multi-lignes
 * grâce à box-decoration-break: clone.
 */
.axek-ti.axek-ti{
	margin: 0;
	font-weight: 600;
	font-size: var(--ax-section);
	line-height: 1.12;
	letter-spacing: -.025em;
	color: var(--ax-encre);
}
.axek-ti, .axek-ti * { box-sizing: border-box; }

/* 2ᵉ couleur (ex. suite atténuée d'un titre) */
.axek-ti-2{ color: var(--ax-texte-tenu); }

/* surlignage : le fond (couleur/dégradé) est injecté par Elementor */
.axek-ti-hl{
	color: inherit;
	padding: 0.05em 0.2em;
	border-radius: 6px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.axek-ti-hl--marker{ color: #ffffff; }

.axek-ti a{ color: inherit; text-decoration: none; }
