/**
 * Home — Insights Hub
 */

/* Insights Hub â€” Exotel-style resource / CX hub */
.l1-insights-section {
	padding-top: 3.25rem;
	padding-bottom: 3.5rem;
}
/* Insights head uses shared .l1-section-head--split */
.l1-insights-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
	gap: 1.1rem;
	align-items: stretch;
}
.l1-insight-feature {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--l1-line);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--l1-shadow);
	min-height: 100%;
}
.l1-insight-media {
	position: relative;
	display: block;
	flex: 0 0 auto;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--l1-soft);
}
.l1-insight-media img,
.l1-insight-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s var(--l1-ease);
}
.l1-insight-media:hover img,
.l1-insight-thumb:hover img {
	transform: scale(1.04);
}
.l1-insight-play {
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.94);
	color: var(--l1-purple);
	font-size: 1.65rem;
	box-shadow: var(--l1-shadow-md);
	z-index: 2;
}
.l1-insight-badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 2;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	background: rgba(12, 18, 34, 0.72);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.l1-insight-body {
	padding: 1.2rem 1.3rem 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	flex: 1 1 auto;
}
.l1-insight-type {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--l1-purple);
}
.l1-insight-body h3 {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 750;
	letter-spacing: -0.02em;
	line-height: 1.3;
	color: var(--l1-ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.l1-insight-copy h3 {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 750;
	letter-spacing: -0.02em;
	line-height: 1.35;
	color: var(--l1-ink);
}
.l1-insight-copy h3 a {
	color: inherit;
	text-decoration: none;
}
.l1-insight-copy h3 a:hover { color: var(--l1-purple); }
.l1-insight-body p {
	margin: 0;
	color: var(--l1-muted);
	font-size: 0.88rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.l1-insight-copy p {
	margin: 0;
	color: var(--l1-muted);
	font-size: 0.8rem;
	line-height: 1.45;
}
.l1-insight-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: auto;
	padding-top: 0.45rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--l1-purple);
	text-decoration: none;
}
.l1-insight-link:hover { color: var(--l1-cyan); }
.l1-insight-rail {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	min-height: 100%;
	height: 100%;
}
.l1-insight-card {
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr);
	gap: 0.9rem;
	align-items: center;
	flex: 1 1 0;
	min-height: 0;
	background: #fff;
	border: 1px solid var(--l1-line);
	border-radius: 18px;
	padding: 0.65rem;
	box-shadow: var(--l1-shadow-sm);
	transition: transform 0.25s, box-shadow 0.25s;
}
.l1-insight-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--l1-shadow);
}
.l1-insight-thumb {
	position: relative;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	align-self: stretch;
	background: var(--l1-soft);
}
.l1-insight-thumb .l1-insight-badge {
	top: 0.4rem;
	left: 0.4rem;
	font-size: 0.58rem;
	padding: 0.18rem 0.4rem;
}
.l1-insight-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.28rem;
	padding: 0.15rem 0.4rem 0.15rem 0;
	min-width: 0;
	height: 100%;
}
.l1-insight-copy .l1-insight-type {
	line-height: 1;
}
.l1-insight-copy h3 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.l1-insight-copy p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media (max-width: 991.98px) {
	.l1-insights-grid { grid-template-columns: 1fr; }
	
	.l1-insight-feature { min-height: 0; }
	.l1-insight-media {
		flex: 0 0 auto;
		min-height: 0;
	}
	.l1-insight-rail { height: auto; min-height: 0; }
	.l1-insight-card { flex: 0 0 auto; }
}
@media (max-width: 575.98px) {
	.l1-insight-card {
		grid-template-columns: 1fr;
		align-items: stretch;
	}
	.l1-insight-thumb {
		aspect-ratio: 16 / 9;
		max-height: 180px;
	}
	
	
}
