/**
 * Insights / news teaser — Dark Quantum v6.10.0
 */

.insights-section {
	position: relative;
	padding: 0 0 44px;
	background: #060b18;
	overflow: hidden;
}

.insights-section__mesh {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(167, 139, 250, 0.06) 0%, transparent 55%);
	pointer-events: none;
}

.insights-section__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
	grid-template-rows: auto auto;
	gap: 20px 24px;
	padding: 22px 22px 20px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(10px);
}

.insights-section__intro {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}

.insights-section__viz {
	grid-column: 2;
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-schematic--insights {
	display: block;
	width: 100%;
	max-width: 240px;
	height: auto;
	filter: drop-shadow(0 8px 24px rgba(0, 229, 255, 0.1));
}

.insights-section__badge {
	display: inline-block;
	margin-bottom: 8px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 0.625rem;
	font-weight: 700;
	color: #c4b5fd;
	background: rgba(167, 139, 250, 0.1);
	border: 1px solid rgba(167, 139, 250, 0.22);
}

.insights-section__title {
	margin: 0 0 8px;
	font-size: clamp(1.0625rem, 2.2vw, 1.375rem);
	font-weight: 800;
	line-height: 1.45;
	color: #f8fafc;
}

.insights-section__subtitle {
	margin: 0 0 14px;
	font-size: 0.8125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.58);
	max-width: 36em;
}

.insights-section__cta {
	font-size: 0.8125rem;
	padding: 10px 16px;
}

.insights-section__cards {
	grid-column: 1;
	grid-row: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.insights-card {
	padding: 12px 12px 10px;
	border-radius: 10px;
	background: rgba(6, 11, 24, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.04);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.insights-card:hover {
	border-color: rgba(0, 229, 255, 0.15);
	transform: translateY(-2px);
}

.insights-card__tag {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 0.5625rem;
	font-weight: 700;
	color: #67e8f9;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.insights-card__title {
	margin: 0 0 6px;
	font-size: 0.8125rem;
	font-weight: 800;
	line-height: 1.5;
}

.insights-card__title a {
	color: #f1f5f9;
	text-decoration: none;
	transition: color 0.2s ease;
}

.insights-card__title a:hover {
	color: #00e5ff;
}

.insights-card__excerpt {
	margin: 0;
	font-size: 0.6875rem;
	line-height: 1.6;
	color: rgba(148, 163, 184, 0.9);
}

.insights-card__date {
	display: block;
	margin-top: 8px;
	font-size: 0.625rem;
	color: rgba(148, 163, 184, 0.65);
}

@media (max-width: 900px) {
	.insights-section__grid {
		grid-template-columns: 1fr;
	}

	.insights-section__viz {
		grid-column: 1;
		grid-row: auto;
		order: -1;
	}

	.insights-section__cards {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.insights-card:hover {
		transform: none;
	}
}
