/**
 * WebXtrm Section Label Widget Styles
 */

.wx-eyebrow-wrap {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	box-sizing: border-box;
}

.wx-eyebrow-wrap * {
	box-sizing: border-box;
}

.wx-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.wx-eyebrow-text {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #00c9f0;
	line-height: 1;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.wx-eyebrow-line {
	--wx-line-color: #00c9f0;

	display: inline-block;
	width: 50px;
	height: 2px;
	flex-shrink: 0;
	background: var(--wx-line-color);
}

/* === SOLID line style (default) === */
.wx-eyebrow--line-solid .wx-eyebrow-line {
	background: var(--wx-line-color);
}

/* === GRADIENT FADE line style === */
.wx-eyebrow--line-gradient .wx-eyebrow-line--right {
	background: linear-gradient(90deg, var(--wx-line-color), transparent);
}

.wx-eyebrow--line-gradient .wx-eyebrow-line--left {
	background: linear-gradient(90deg, transparent, var(--wx-line-color));
}
