.feature-bar-ececfc62-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background-color: #111111; /* Default dark theme */
	padding: 20px 40px;
	border-radius: 8px;
	width: 100%;
}

.feature-bar-ececfc62-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 1;
	padding: 0 20px;
	position: relative;
	gap: 15px;
}

/* Divider */
.feature-bar-ececfc62-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 40px;
	width: 1px;
	background-color: #333333;
}

.feature-bar-ececfc62-icon {
	color: #FFC107; /* Default gold/yellow color */
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature-bar-ececfc62-icon svg {
	width: 32px;
	height: 32px;
	fill: #FFC107;
}

.feature-bar-ececfc62-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feature-bar-ececfc62-title {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 5px;
}

.feature-bar-ececfc62-desc {
	color: #AAAAAA;
	font-size: 12px;
	line-height: 1.4;
}

/* Mobile: Horizontal Scroll */
@media (max-width: 767px) {
	.feature-bar-ececfc62-wrapper {
		overflow-x: auto;
		flex-wrap: nowrap;
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; /* Firefox */
		padding: 20px;
	}
	
	.feature-bar-ececfc62-wrapper::-webkit-scrollbar {
		display: none; /* Chrome/Safari */
	}

	.feature-bar-ececfc62-item {
		flex: 0 0 auto;
		min-width: 250px;
	}
}