/* AAW Fancy Text — base structural styles.
   Colors, spacing, and typography are controlled from Elementor's Style tab;
   this file only defines layout/behaviour so every look stays fully editable. */

.aaw-fancy-text-wrap {
	margin: 0;
	line-height: 1.3;
}

/* Prefix, fancy word, and suffix all sit on the same inline flow so the
   fancy word visually starts exactly where the prefix text ends. */
.aaw-fancy-prefix,
.aaw-fancy-word-wrap,
.aaw-fancy-suffix {
	display: inline;
}

.aaw-fancy-word {
	display: inline-block;
	white-space: pre;
	font-weight: 700;
}

.aaw-fancy-cursor {
	display: inline-block;
	margin-left: 2px;
	font-weight: 700;
	animation: aaw-fancy-blink 1s step-end infinite;
}

@keyframes aaw-fancy-blink {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}
