.bdt-insights,
.bdt-insights * {
	box-sizing: border-box;
}

.bdt-insights {
	--bdt-navy: #12395c;
	--bdt-blue: #1f5f99;
	--bdt-cyan: #09d3f4;
	--bdt-ink: #1f2933;
	--bdt-muted: #526171;
	--bdt-line: #d9e2ec;
	--bdt-soft: #f5f8fb;
	--bdt-white: #ffffff;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 36px 0 64px;
	color: var(--bdt-ink);
	font-size: 16px;
	line-height: 1.7;
}

.bdt-insights a {
	text-decoration: none;
}

.bdt-insights__hero {
	position: relative;
	overflow: hidden;
	padding: clamp(34px, 5vw, 58px);
	border: 1px solid #dce7f0;
	border-left: 5px solid var(--bdt-blue);
	border-radius: 12px;
	background:
		radial-gradient(circle at 92% 18%, rgba(9, 211, 244, 0.13), transparent 25%),
		linear-gradient(135deg, #f5f8fb 0%, #ffffff 56%, #eef6fc 100%);
	box-shadow: 0 18px 45px rgba(18, 57, 92, 0.08);
}

.bdt-insights__hero::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -120px;
	width: 280px;
	height: 280px;
	border: 1px solid rgba(31, 95, 153, 0.12);
	border-radius: 50%;
}

.bdt-insights__eyebrow,
.bdt-insights__section-kicker {
	display: block;
	margin-bottom: 10px;
	color: var(--bdt-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.45px;
	line-height: 1.4;
	text-transform: uppercase;
}

.bdt-insights__hero h1 {
	position: relative;
	z-index: 1;
	max-width: 970px;
	margin: 0 0 18px;
	color: var(--bdt-navy);
	font-size: clamp(32px, 4.2vw, 52px);
	font-weight: 750;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

.bdt-insights__hero p {
	position: relative;
	z-index: 1;
	max-width: 930px;
	margin: 0;
	color: #465568;
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.65;
}

.bdt-insights__pillars {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 26px 0 52px;
}

.bdt-insights__pillar {
	position: relative;
	padding: 26px 26px 28px;
	border: 1px solid var(--bdt-line);
	border-radius: 10px;
	background: var(--bdt-white);
	box-shadow: 0 10px 26px rgba(18, 57, 92, 0.055);
}

.bdt-insights__pillar::before {
	content: "";
	display: block;
	width: 42px;
	height: 3px;
	margin-bottom: 18px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--bdt-blue), var(--bdt-cyan));
}

.bdt-insights__pillar h2 {
	margin: 0 0 10px;
	color: var(--bdt-blue);
	font-size: 21px;
	line-height: 1.3;
}

.bdt-insights__pillar p {
	margin: 0;
	color: var(--bdt-muted);
}

.bdt-insights__overview {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
	gap: 28px;
	align-items: start;
	margin-bottom: 64px;
}

.bdt-insights__overview-copy {
	padding: 8px 4px 0 0;
}

.bdt-insights__overview h2,
.bdt-insights__section-heading h2,
.bdt-insights__cta h2 {
	margin: 0 0 14px;
	color: var(--bdt-navy);
	font-size: clamp(27px, 3vw, 36px);
	line-height: 1.2;
}

.bdt-insights__overview-copy p {
	margin: 0 0 17px;
	color: #3f4e5d;
}

.bdt-insights__topics {
	padding: 28px 30px;
	border: 1px solid var(--bdt-line);
	border-radius: 10px;
	background: #f8fafc;
}

.bdt-insights__topics h3 {
	margin: 0 0 14px;
	color: var(--bdt-blue);
	font-size: 22px;
}

.bdt-insights__topics ul {
	margin: 0;
	padding-left: 20px;
}

.bdt-insights__topics li {
	margin-bottom: 8px;
	color: #40505f;
}

.bdt-insights__section {
	margin: 0 0 68px;
}

.bdt-insights__section-heading {
	display: flex;
	justify-content: space-between;
	gap: 28px;
	align-items: end;
	margin-bottom: 24px;
}

.bdt-insights__section-heading p {
	max-width: 760px;
	margin: 0;
	color: var(--bdt-muted);
	font-size: 17px;
}

.bdt-insights__section-heading--with-link {
	align-items: center;
}

.bdt-insights__section-link {
	flex: 0 0 auto;
	color: var(--bdt-blue);
	font-weight: 750;
}

.bdt-insights__section-link:hover,
.bdt-insights__section-link:focus {
	color: var(--bdt-navy);
	text-decoration: underline;
}

.bdt-insights__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
	gap: 26px;
}

.bdt-insights__card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--bdt-line);
	border-radius: 12px;
	background: var(--bdt-white);
	box-shadow: 0 13px 32px rgba(18, 57, 92, 0.07);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bdt-insights__card:hover {
	transform: translateY(-3px);
	border-color: #c2d5e5;
	box-shadow: 0 18px 38px rgba(18, 57, 92, 0.11);
}

.bdt-insights__card-media,
.bdt-insights__featured-media {
	display: flex;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #f2f6f9, #ffffff);
}

.bdt-insights__card-media {
	aspect-ratio: 16 / 9;
	border-bottom: 1px solid var(--bdt-line);
}

.bdt-insights__card-image,
.bdt-insights__featured-image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: contain !important;
	object-position: center center !important;
}

.bdt-insights__card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 25px 26px;
}

.bdt-insights__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
	color: #6a7886;
	font-size: 13px;
	font-weight: 650;
	letter-spacing: 0.025em;
	line-height: 1.45;
	text-transform: uppercase;
}

.bdt-insights__card h3,
.bdt-insights__featured-card h3 {
	margin: 0 0 12px;
	font-weight: 750;
	line-height: 1.3;
}

.bdt-insights__card h3 {
	font-size: 23px;
}

.bdt-insights__card h3 a,
.bdt-insights__featured-card h3 a {
	color: var(--bdt-navy);
}

.bdt-insights__card h3 a:hover,
.bdt-insights__card h3 a:focus,
.bdt-insights__featured-card h3 a:hover,
.bdt-insights__featured-card h3 a:focus {
	color: var(--bdt-blue);
	text-decoration: underline;
}

.bdt-insights__card-content > p,
.bdt-insights__featured-content > p {
	margin: 0 0 20px;
	color: var(--bdt-muted);
}

.bdt-insights__text-link {
	margin-top: auto;
	color: var(--bdt-blue);
	font-weight: 800;
}

.bdt-insights__text-link:hover,
.bdt-insights__text-link:focus {
	color: var(--bdt-navy);
	text-decoration: underline;
}

.bdt-insights__featured-card {
	display: grid;
	overflow: hidden;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	border: 1px solid var(--bdt-line);
	border-radius: 14px;
	background: var(--bdt-white);
	box-shadow: 0 18px 44px rgba(18, 57, 92, 0.09);
}

.bdt-insights__featured-media {
	min-height: 390px;
	border-right: 1px solid var(--bdt-line);
}

.bdt-insights__featured-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(30px, 4vw, 48px);
}

.bdt-insights__featured-card h3 {
	font-size: clamp(26px, 3vw, 36px);
}

.bdt-insights__image-placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 220px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 28px;
	background:
		linear-gradient(145deg, rgba(18, 57, 92, 0.96), rgba(31, 95, 153, 0.94)),
		linear-gradient(45deg, transparent 45%, rgba(9, 211, 244, 0.2) 45%, rgba(9, 211, 244, 0.2) 55%, transparent 55%);
	color: #fff;
	text-align: center;
}

.bdt-insights__image-placeholder span {
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.bdt-insights__image-placeholder strong {
	font-size: 24px;
}

.bdt-insights__empty {
	padding: 28px;
	border: 1px dashed #bdcad6;
	border-radius: 10px;
	background: #f8fafc;
	color: var(--bdt-muted);
	text-align: center;
}

.bdt-insights__empty p {
	margin: 0;
}

.bdt-insights__cta {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
	gap: 32px;
	align-items: center;
	padding: clamp(32px, 5vw, 50px);
	border-radius: 14px;
	background:
		radial-gradient(circle at 92% 20%, rgba(9, 211, 244, 0.17), transparent 26%),
		var(--bdt-navy);
	color: #fff;
	box-shadow: 0 20px 48px rgba(18, 57, 92, 0.22);
}

.bdt-insights__cta .bdt-insights__section-kicker {
	color: #8eeeff;
}

.bdt-insights__cta h2 {
	color: #fff;
}

.bdt-insights__cta p {
	max-width: 780px;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
}

.bdt-insights__cta-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bdt-insights__button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.bdt-insights__button:hover,
.bdt-insights__button:focus {
	transform: translateY(-1px);
}

.bdt-insights__button--primary {
	background: #fff;
	color: var(--bdt-navy);
}

.bdt-insights__button--primary:hover,
.bdt-insights__button--primary:focus {
	background: #eafaff;
	color: var(--bdt-navy);
}

.bdt-insights__button--secondary {
	border-color: rgba(255, 255, 255, 0.42);
	background: transparent;
	color: #fff;
}

.bdt-insights__button--secondary:hover,
.bdt-insights__button--secondary:focus {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

@media (max-width: 900px) {
	.bdt-insights__pillars,
	.bdt-insights__overview,
	.bdt-insights__featured-card,
	.bdt-insights__cta {
		grid-template-columns: 1fr;
	}

	.bdt-insights__featured-media {
		min-height: 0;
		aspect-ratio: 16 / 9;
		border-right: 0;
		border-bottom: 1px solid var(--bdt-line);
	}
}

@media (max-width: 640px) {
	.bdt-insights {
		width: min(100% - 22px, 1180px);
		padding-top: 20px;
	}

	.bdt-insights__hero {
		padding: 30px 24px;
	}

	.bdt-insights__pillars {
		gap: 14px;
		margin-bottom: 44px;
	}

	.bdt-insights__overview,
	.bdt-insights__section {
		margin-bottom: 50px;
	}

	.bdt-insights__section-heading,
	.bdt-insights__section-heading--with-link {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.bdt-insights__card-content,
	.bdt-insights__featured-content {
		padding: 22px;
	}

	.bdt-insights__cta {
		padding: 30px 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bdt-insights__card,
	.bdt-insights__button {
		transition: none;
	}
}
