/**
 * WebXtrm Feature List Widget Styles
 */

.wx-features-wrap {
	display: flex;
	width: 100%;
	justify-content: flex-start;
}

.wx-features {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 18px;
	column-gap: 24px;
	max-width: 600px;
	width: 100%;
	box-sizing: border-box;
}

.wx-features * {
	box-sizing: border-box;
}

.wx-feature {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	min-width: 0;
}

/* Icon Circle */
.wx-feature-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	border-radius: 50%;
	background: transparent;
	border: 1.5px solid rgba(0, 201, 240, 0.4);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.wx-feature-icon svg {
	width: 11px;
	height: 11px;
	fill: #00c9f0;
	color: #00c9f0;
	display: block;
}

.wx-feature-icon i {
	font-size: 11px;
	color: #00c9f0;
	line-height: 1;
}

/* Text container */
.wx-feature-text {
	flex: 1;
	min-width: 0;
}

/* Title */
.wx-feature-title {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	margin: 0 0 4px 0;
}

/* Description */
.wx-feature-desc {
	font-family: 'Inter', sans-serif;
	font-size: 12.5px;
	font-weight: 400;
	color: #9aacbd;
	line-height: 1.55;
	margin: 0;
}
