:root {
	--iic-blue: #00398f;
	--iic-cyan: #07d2fb;
	--iic-text: #1a2b3e;
	--iic-muted: #5e758d;
	--iic-card-radius: 16px;
	--iic-card-border: rgba(0, 57, 143, .12);
	--iic-card-shadow: 0 10px 24px rgba(0, 57, 143, .06);
	--iic-card-shadow-hover: 0 16px 34px rgba(0, 57, 143, .14);
}

.insights-main {
	background: #fff;
	padding: 10px 0 110px;
}

.insights-container {
	width: min(1280px, calc(100% - 40px));
	margin: 0 auto;
}

.insights-hero {
	text-align: left;
	max-width: 1550px;
	margin: 0 auto;
}

.insights-hero h1 {
	font-family: 'Popins-Bold';
	font-size: clamp(2rem, 4vw, 3.1rem);
	color: #BDF9F3;
	margin: 0 0 16px;
	letter-spacing: 0.02em;
}

.insights-hero p {
	font-family: 'Popins-Light';
	font-size: 18px;
	line-height: 1.8;
	color: #fff;
	margin: 0;
	max-width: 980px;
}

.insights-section {
	margin-top: 78px;
}

.insights-section > h1.title:first-of-type {
	margin-top: 0 !important;
}

.insights-grid-1col {
	display: grid;
	gap: 22px;
}

.insights-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px 20px;
}

.insights-card {
	background: #fff;
	border: 1px solid var(--iic-card-border);
	border-radius: var(--iic-card-radius);
	box-shadow: var(--iic-card-shadow);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.insights-card:hover {
	transform: translateY(-4px);
	border-color: var(--iic-cyan);
	box-shadow: var(--iic-card-shadow-hover);
}

.insights-news-card .insights-card-thumb {
	width: 100%;
	aspect-ratio: 16 / 8;
	background: #f2f6ff;
}

.insights-news-card .insights-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.insights-card-content {
	padding: 16px 0 0;
}

.insights-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--iic-muted);
	font-family: 'Popins-Medium';
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.insights-card h3 {
	font-family: 'Popins-Bold';
	font-size: 38px;
	line-height: 1.18;
	color: #111111;
	margin: 0 0 10px;
}

.insights-card p {
	font-family: 'Popins-Regular';
	font-size: 33px;
	line-height: 1.42;
	color: #1c1c1c;
	margin: 0;
}

.insights-actions {
	margin-top: 12px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.insights-news-card {
	border: 0;
	box-shadow: none;
	border-radius: 0;
}

.insights-news-card:hover {
	transform: none;
	border-color: transparent;
	box-shadow: none;
}

/* News buttons should match the detail page CTA (insights-btn-secondary) */
.insights-news-card .insights-btn {
	font-size: 15px;
	font-family: 'Popins-Medium';
}

.insights-news-card .insights-card-thumb {
	aspect-ratio: 348 / 163;
}

.insights-news-card .insights-card-content h3 {
	font-size: 22px;
	font-family: 'Popins-Bold';
	line-height: 1.25;
	margin-bottom: 10px;
}

.insights-news-card .insights-card-content p {
	font-size: 18px;
	font-family: 'Popins-Light';
	line-height: 1.65;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.insights-news-card .insights-meta {
	margin-bottom: 10px;
	font-size: 18px;
	text-transform: none;
	letter-spacing: 0;
	color: #757575;
	font-family: 'Popins-Regular';
}

.insights-newsroom-title {
	position: relative;
	text-align: center;
	font-family: 'Popins-Bold';
	color: #12bce8;
	font-size: 62px;
	letter-spacing: .01em;
	margin-bottom: 32px;
	text-transform: uppercase;
}

.insights-newsroom-title::after {
	content: "";
	display: block;
	width: 390px;
	max-width: 80%;
	height: 8px;
	border-radius: 999px;
	background: #12bce8;
	margin: 12px auto 0;
}

.insights-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 12px 22px;
	font-family: 'Popins-Medium';
	font-size: 15px;
	text-decoration: none;
	border: 1px solid var(--iic-cyan);
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
	user-select: none;
}

.insights-btn-primary {
	background: var(--iic-cyan);
	color: #fff;
}

.insights-btn-primary:hover {
	background: #05c3ee;
	border-color: #05c3ee;
}

.insights-btn-secondary {
	background: #fff;
	color: var(--iic-cyan);
}

.insights-btn-secondary:hover {
	background: var(--iic-cyan);
	color: #fff;
}

.insights-follow-us {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 57, 143, .1);
}

.insights-follow-us a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--iic-text);
	font-family: 'Popins-Medium';
	font-size: 14px;
}

.insights-follow-us img {
	width: 28px;
	height: 28px;
}

.insights-interview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.insights-split-grid {
	display: grid;
	gap: 22px;
}

.insights-split-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: start;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	background: transparent;
}

.insights-split-media {
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--iic-card-border);
	box-shadow: var(--iic-card-shadow);
	background: #f2f6ff;
}

.insights-split-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 16 / 9;
}

.insights-split-content {
	padding-top: 2px;
}

.insights-split-title {
	font-size: 22px;
	font-family: 'Popins-Bold';
	line-height: 1.3;
	color: #13253b;
	margin: 0 0 10px;
}

.insights-split-date {
	font-size: 18px;
	font-family: 'Popins-Regular';
	color: var(--iic-muted);
	margin-bottom: 12px;
}

.insights-split-body {
	font-size: 18px;
	font-family: 'Popins-Light';
	line-height: 1.75;
	color: #4b5563;
	margin: 0;
}

.insights-split-actions {
	margin-top: 18px;
}

.insights-interview-item {
	display: grid;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

.insights-interview-thumb {
	border-radius: var(--iic-card-radius);
	overflow: hidden;
	border: 1px solid var(--iic-card-border);
	box-shadow: var(--iic-card-shadow);
	background: #f2f6ff;
}

.insights-interview-thumb img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}

.insights-interview-title {
	font-family: 'Popins-Bold';
	font-size: 22px;
	line-height: 1.35;
	color: #13253b;
}

.insights-interview-meta {
	display: grid;
	gap: 4px;
	color: var(--iic-muted);
	font-family: 'Popins-Regular';
	font-size: 18px;
}

.insights-interview-channel {
	color: var(--iic-muted);
}

.insights-interview-stats {
	color: var(--iic-muted);
}

.insights-section .insights-bottom-cta {
	margin-top: 22px;
	display: flex;
	justify-content: center;
}

.insights-webinar-card {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 18px;
	align-items: start;
}

#webinarOnDemandGrid {
	display: grid;
	gap: 22px;
}

.insights-webinar-card .insights-webinar-poster {
	width: 100%;
	border-right: 1px solid rgba(0, 57, 143, .1);
}

.insights-webinar-card .insights-webinar-poster img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.insights-webinar-content {
	padding: 20px 22px 18px 0;
}

.insights-webinar-title {
	font-family: 'Popins-Bold';
	font-size: 22px;
	line-height: 1.35;
	color: var(--iic-text);
	margin: 0 0 10px;
}

.insights-webinar-description {
	font-family: 'Popins-Regular';
	font-size: 16px;
	line-height: 1.75;
	color: #4b5563;
	margin: 0;
}

.insights-webinar-actions {
	margin-top: 18px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.insights-upcoming-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 22px;
}

.insights-upcoming-buttons .insights-btn {
	min-width: 320px;
}

/* Dialog reuse: the site already uses .dialog2 for popups */
.insights-modal {
	left: 10%;
	top: 8%;
	width: 80%;
	max-width: 1100px;
}

.insights-modal .content {
	height: auto;
	overflow: visible;
	display: block;
	max-height: 75vh;
	overflow-y: auto;
}

.insights-modal .insights-modal-inner {
	padding-top: 6px;
}

.insights-news-detail-thumb {
	width: 100%;
	aspect-ratio: 16 / 8;
	background: #f2f6ff;
	border-radius: calc(var(--iic-card-radius) - 2px);
	overflow: hidden;
}

.insights-news-detail-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.insights-detail-date {
	margin-top: 12px;
	margin-bottom: 10px;
}

.insights-detail-title {
	font-family: 'Popins-Bold';
	font-size: 26px;
	line-height: 1.25;
	color: var(--iic-text);
	margin: 0 0 12px;
}

.insights-detail-body {
	font-family: 'Popins-Regular';
	font-size: 16px;
	line-height: 1.85;
	color: #4b5563;
}

.insights-cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.insights-cta-row .insights-btn {
	flex: 1;
	min-width: 260px;
}

.insights-webinar-register-iframe {
	width: 100%;
	height: 760px;
	border: 0;
	border-radius: 12px;
}

.page-webinar-register .insights-article-page-wide {
	width: min(1280px, calc(100% - 42px));
}

.page-webinar-register .insights-article-inner-wide {
	width: min(1040px, 100%);
}

.insights-webinar-video {
	margin-top: 14px;
	border-top: 1px solid rgba(0, 57, 143, .1);
	padding-top: 14px;
	display: none;
}

.insights-webinar-video iframe {
	width: 100%;
	height: 420px;
	border: 0;
	border-radius: 12px;
}

.insights-webinar-apply {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 57, 143, .1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.insights-webinar-apply p {
	margin: 0;
	font-family: 'Popins-Bold';
	color: var(--iic-text);
	font-size: 18px;
	line-height: 1.4;
}

.insights-webinar-apply .insights-btn {
	min-width: 180px;
}

.insights-upload {
	margin-top: 26px;
	background: #fff;
	border: 1px solid var(--iic-card-border);
	border-radius: var(--iic-card-radius);
	box-shadow: 0 8px 20px rgba(0, 57, 143, .04);
	padding: 14px 16px;
}

.insights-article-page {
	width: min(1120px, calc(100% - 42px));
	margin: 42px auto 0;
	background: #fff;
	padding: 16px 0 88px;
}

.insights-article-inner {
	width: min(780px, 100%);
	margin: 0 auto;
}

.insights-article-tag {
	font-family: 'Popins-Bold';
	font-size: 45px;
	color: #2237ae;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.insights-article-title {
	font-family: 'Popins-Bold';
	font-size: 35px;
	line-height: 1.22;
	color: #101010;
	margin: 0 0 14px;
}

.insights-article-intro {
	font-family: 'Popins-Light';
	font-size: 18px;
	line-height: 1.55;
	color: #525252;
	margin: 0 0 18px;
}

.insights-article-image {
	width: 100%;
	display: block;
	margin: 0 0 18px;
}

.insights-article-section-title {
	font-family: 'Popins-Bold';
	font-size: 18px;
	line-height: 1.35;
	color: #161616;
	margin: 0 0 10px;
}

.insights-article-text {
	font-family: 'Popins-Light';
	font-size: 18px;
	line-height: 1.72;
	color: #1f1f1f;
	margin: 0 0 18px;
}

.insights-upload summary {
	cursor: pointer;
	font-family: 'Popins-Bold';
	color: var(--iic-text);
	font-size: 16px;
	list-style: none;
}

.insights-upload summary::-webkit-details-marker {
	display: none;
}

.insights-upload form {
	margin-top: 14px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 16px;
}

.insights-upload .full {
	grid-column: 1 / -1;
}

.insights-upload label {
	font-family: 'Popins-Medium';
	color: var(--iic-muted);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.insights-upload input[type="text"],
.insights-upload input[type="url"],
.insights-upload input[type="datetime-local"],
.insights-upload textarea,
.insights-upload input[type="file"] {
	width: 100%;
	border: 1px solid rgba(0, 57, 143, .18);
	border-radius: 10px;
	padding: 10px 12px;
	font-family: 'Popins-Regular';
	color: var(--iic-text);
}

.insights-upload textarea {
	min-height: 120px;
	resize: vertical;
}

.insights-upload .actions {
	grid-column: 1 / -1;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-top: 4px;
}

.insights-news-video {
	margin-top: 14px;
	border-top: 1px solid rgba(0, 57, 143, .1);
	padding-top: 14px;
	display: none;
}

.insights-news-video iframe {
	width: 100%;
	height: 420px;
	border: 0;
	border-radius: 12px;
}

@media (max-width: 1100px) {
	.insights-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.insights-split-card {
		grid-template-columns: 1fr;
	}
	.insights-interview-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.insights-webinar-card {
		grid-template-columns: 1fr;
	}
	.insights-webinar-card .insights-webinar-poster {
		border-right: 0;
		border-bottom: 1px solid rgba(0, 57, 143, .1);
	}
	.insights-webinar-content {
		padding: 10px 22px 18px;
	}
}

@media (max-width: 720px) {
	.insights-news-grid {
		grid-template-columns: 1fr;
	}
	.insights-newsroom-title {
		font-size: 34px;
	}
	.insights-newsroom-title::after {
		height: 5px;
		margin-top: 9px;
	}
	.insights-news-card .insights-card-content h3 {
		font-size: 22px;
	}
	.insights-news-card .insights-meta {
		font-size: 18px;
	}
	.insights-news-card .insights-card-content p {
		font-size: 18px;
	}
	.insights-news-card .insights-btn {
		font-size: 15px;
	}
	.insights-article-page {
		margin-top: 24px;
	}
	.insights-article-title {
		font-size: 35px;
	}
	.insights-container {
		width: calc(100% - 26px);
	}
	.insights-section {
		margin-top: 58px;
	}
	.insights-interview-grid {
		grid-template-columns: 1fr;
	}
	.insights-upcoming-buttons .insights-btn {
		min-width: 100%;
	}
	.insights-modal {
		left: 3%;
		top: 4%;
		width: 94%;
	}
	.insights-webinar-register-iframe {
		height: 620px;
	}
	.insights-upload form {
		grid-template-columns: 1fr;
	}
	.insights-upload .actions {
		justify-content: flex-start;
	}
}

