/* Teaser Component Styles */

.teaser-section {
	padding: 100px 30px;
	position: relative;
	overflow: hidden;
}

.teaser-bg-dark {
	background: var(--carbon-dark);
}

.teaser-bg-light {
	background: var(--primary-black);
}

.teaser-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* Image Styling */
.teaser-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 400px;
	border-radius: 20px;
	overflow: hidden;
	border: 2px solid var(--metal-dark);
	background: var(--carbon-medium);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transition: all 0.4s ease;
}

.teaser-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(153, 69, 255, 0.1) 0%,
		transparent 50%,
		rgba(0, 168, 255, 0.1) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.teaser-section:hover .teaser-image {
	transform: scale(1.02);
	border-color: var(--accent-purple);
	box-shadow: 0 25px 70px rgba(153, 69, 255, 0.3);
}

.teaser-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Content Styling */
.teaser-content {
	padding: 20px;
}

.teaser-subtitle {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--accent-cyan);
	margin-bottom: 15px;
	font-weight: 600;
}

.teaser-title {
	font-size: 42px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 25px;
	line-height: 1.2;
	background: linear-gradient(
		135deg,
		var(--text-primary) 0%,
		var(--accent-purple) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.teaser-description {
	font-size: 18px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 30px;
}

.teaser-description p {
	margin-bottom: 15px;
}

.teaser-description ul {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}

.teaser-description li {
	padding-left: 30px;
	position: relative;
	margin-bottom: 12px;
}

.teaser-description li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--accent-purple);
	font-weight: bold;
}

.teaser-cta {
	display: inline-flex;
	align-items: center;
	padding: 14px 34px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(153, 69, 255, 0.35);
}

.teaser-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(153, 69, 255, 0.55);
}

/* Responsive */
@media (max-width: 968px) {
	.teaser-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.teaser-position-right .teaser-image,
	.teaser-position-left .teaser-image {
		order: -1;
	}

	.teaser-image {
		min-height: 320px;
	}

	.teaser-title {
		font-size: 32px;
	}

	.teaser-description {
		font-size: 16px;
	}

	.teaser-content {
		padding: 10px;
	}
}

@media (max-width: 768px) {
	.teaser-section {
		padding: 60px 20px;
	}

	.teaser-image {
		min-height: 280px;
	}

	.teaser-title {
		font-size: 28px;
	}
}
