/*
 * Kukinas — widget "Handwritten": una línea manuscrita con marca
 * decorativa (corazón, flecha o trazo). Color, tamaño y rotación
 * se sobreescriben desde Estilo en Elementor.
 */

.kk-hw {
	--kk-hw-gap: 4px;
	--kk-hw-mark-size: 38px;
	--kk-hw-text-rotate: -2deg;
	--kk-hw-mark-rotate: 8deg;
	--kk-hw-color: #C91F28;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: var(--kk-hw-gap);
	width: 100%;
	box-sizing: border-box;
	color: var(--kk-hw-color);
}

.kk-hw__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: inherit;
	transform: rotate(var(--kk-hw-mark-rotate));
	transform-origin: center center;
	line-height: 0;
}

.kk-hw__mark svg {
	width: var(--kk-hw-mark-size);
	height: var(--kk-hw-mark-size);
	display: block;
	overflow: visible;
}

.kk-hw__mark--line svg {
	width: calc(var(--kk-hw-mark-size) * 1.65);
	height: calc(var(--kk-hw-mark-size) * 0.42);
}

.kk-hw__text {
	font-family: "Patrick Hand", system-ui, sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.15;
	color: inherit;
	transform: rotate(var(--kk-hw-text-rotate));
	transform-origin: center center;
}
