/* Platform Showcase Widget Styles */

.cew-platform-showcase {
	display: flex;
	width: 100%;
 
	background-color: #000000;
}

/* ── LEFT CONTENT SIDE ── */
.cew-content-side {
	flex: 0 0 50%;
	max-width: 50%;
	background-color: #000000;
	display: flex;
	align-items: center;
	position: relative;
}

.cew-content-inner {
	padding: 80px 60px 80px 80px;
	width: 100%;
}

/* Badge */
.cew-badge {
	display: inline-block;
	padding: 6px 14px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #00d4d4;
	border: 1px solid #00d4d4;
	border-radius: 20px;
	margin-bottom: 24px;
	font-family: 'Space Mono', monospace;
}

/* Heading */
.cew-heading {
	font-family: 'Oswald', sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 24px 0;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cew-heading-line {
	display: block;
}

/* Description */
.cew-description {
	color: #aaaaaa;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 28px 0;
	max-width: 460px;
}

/* Features List */
.cew-features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px 0;
}

.cew-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.cew-feature-item:last-child {
	margin-bottom: 0;
}

.cew-feature-dot {
	width: 5px;
	height: 5px;
	background-color: #00d4d4;
	border-radius: 50%;
	flex-shrink: 0;
}

.cew-feature-text {
	color: #ffffff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.3px;
}

/* Button */
.cew-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	background-color: #ffffff;
	color: #000000;
	border: 1px solid #ffffff;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Inter', sans-serif;
}

.cew-btn:hover {
	background-color: #00d4d4;
	border-color: #00d4d4;
	color: #ffffff;
}

.cew-btn-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.cew-btn:hover .cew-btn-arrow {
	transform: translateX(3px);
}

/* ── RIGHT IMAGE SIDE ── */
.cew-image-side {
	flex: 0 0 50%;
	max-width: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

/* Image hover effect - grayscale to cyan tint */
.cew-image-hover {
	position: relative;
	overflow: hidden;
}

.cew-image-hover::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: #000000;
	opacity: 0.4;
	transition: opacity 0.5s ease;
	z-index: 1;
	pointer-events: none;
}

.cew-image-hover::after {
	content: '';
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: inherit;
	filter: grayscale(100%) contrast(1.1);
	transition: filter 0.5s ease, transform 0.5s ease;
	z-index: 0;
}

.cew-image-hover:hover::before {
	opacity: 0.2;
}

.cew-image-hover:hover::after {
	filter: grayscale(0%) contrast(1) brightness(1.1);
	transform: scale(1.02);
}

/* Cyan tint overlay on hover */
.cew-image-hover .cew-overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 212, 212, 0.1) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
}

.cew-image-hover:hover .cew-overlay::before {
	opacity: 1;
}

/* Live Output Overlay */
.cew-overlay {
	position: relative;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.9);
	padding: 16px 20px;
	margin: 20px;
	min-width: 140px;
	overflow: hidden;
}

.cew-overlay-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}

.cew-overlay-label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #00d4d4;
	font-family: 'Space Mono', monospace;
}

.cew-overlay-icon {
	color: #00d4d4;
	font-size: 12px;
}

.cew-overlay-icon svg,
.cew-overlay-icon i {
	color: #00d4d4;
	fill: #00d4d4;
	width: 12px;
	height: 12px;
}

.cew-overlay-bar {
	height: 2px;
	background-color: #00d4d4;
	margin-bottom: 10px;
	position: relative;
}

.cew-overlay-bar::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background-color: #00d4d4;
	border-radius: 50%;
}

.cew-overlay-value {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.cew-overlay-value span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
	font-family: 'Space Mono', monospace;
}

.cew-overlay-accent {
	color: #00d4d4 !important;
}

/* ── RESPONSIVE ── */
@media screen and (max-width: 1024px) {
	.cew-heading {
		font-size: 40px;
	}
	.cew-content-inner {
		padding: 60px 40px;
	}
}

@media screen and (max-width: 767px) {
	.cew-platform-showcase {
		flex-direction: column;
	}
	.cew-content-side,
	.cew-image-side {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.cew-image-side {
		min-height: 350px;
		order: -1;
	}
	.cew-heading {
		font-size: 36px;
	}
	.cew-content-inner {
		padding: 40px 25px;
	}
	.cew-description {
		max-width: 100%;
	}
}
