.ml-npa {
	--ml-npa-navy: #102B5C;
	--ml-npa-blue: #0B63CE;
	--ml-npa-yellow: #F7C83E;
	background: #fff;
}

.ml-npa *,
.ml-npa *::before,
.ml-npa *::after {
	box-sizing: border-box;
}

.ml-npa__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 78px 32px;
}

.ml-npa__top {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	align-items: stretch;
	gap: 0;
	border: 1px solid #E1EAF3;
	border-radius: 22px;
	overflow: hidden;
	background: #F8FBFE;
}

.ml-npa-image-left .ml-npa__media {
	order: 1;
}

.ml-npa-image-left .ml-npa__content {
	order: 2;
}

.ml-npa-image-right .ml-npa__content {
	order: 1;
}

.ml-npa-image-right .ml-npa__media {
	order: 2;
}

.ml-npa__media {
	position: relative;
	min-height: 470px;
	background: #EAF3FB;
}

.ml-npa__image-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 0 !important;
}

.ml-npa__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0 !important;
}

.ml-npa-style-clean .ml-npa__image-wrap,
.ml-npa-style-floating .ml-npa__image-wrap,
.ml-npa-style-offset .ml-npa__image-wrap {
	transform: none;
	box-shadow: none;
}

.ml-npa-style-offset .ml-npa__media::before {
	display: none;
}

.ml-npa__badge {
	position: absolute;
	left: 24px;
	top: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto !important;
	height: auto !important;
	min-height: 38px;
	padding: 9px 14px;
	border: 0;
	border-radius: 999px;
	background: var(--ml-npa-yellow);
	color: var(--ml-npa-navy);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	box-shadow: 0 10px 24px rgba(16, 43, 92, .12);
}

.ml-npa__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px 58px;
}

.ml-npa__eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ml-npa-blue);
}

.ml-npa__title {
	margin: 14px 0 0;
	font-size: clamp(36px, 3.7vw, 56px);
	line-height: 1.05;
	letter-spacing: -.04em;
	color: var(--ml-npa-navy);
}

.ml-npa__description {
	margin-top: 24px;
	font-size: 17px;
	line-height: 1.75;
	color: #526174;
}

.ml-npa__description p {
	margin: 0 0 16px;
}

.ml-npa__button {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 10px;
	margin-top: 28px;
	padding: 12px 17px;
	border: 1px solid var(--ml-npa-blue);
	border-radius: 8px;
	color: var(--ml-npa-blue);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}


.ml-npa__features {
	margin-top: 20px;
}

/* Pills */
.ml-npa-features-pills .ml-npa__features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	border: 0;
	background: transparent;
}

.ml-npa-features-pills .ml-npa__feature {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 0;
	padding: 12px 18px;
	border: 1px solid #D8E7FA;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(16, 43, 92, .05);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ml-npa-features-pills .ml-npa__feature:hover {
	transform: translateY(-3px);
	border-color: var(--ml-npa-blue);
	box-shadow: 0 12px 28px rgba(16, 43, 92, .09);
}

.ml-npa-features-pills .ml-npa__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #EEF6FE;
	color: var(--ml-npa-blue);
	font-size: 14px;
}

.ml-npa-features-pills .ml-npa__feature-icon img,
.ml-npa-features-pills .ml-npa__feature-icon svg {
	display: block;
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.ml-npa-features-pills .ml-npa__feature-title {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--ml-npa-navy);
	white-space: nowrap;
}

.ml-npa-features-pills .ml-npa__feature-text {
	display: none;
}

/* Cards */
.ml-npa-features-cards .ml-npa__features {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.ml-npa-features-cards .ml-npa__feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 112px;
	padding: 20px 18px;
	border: 1px solid #E1EAF3;
	border-radius: 16px;
	background: #fff;
}

.ml-npa-features-cards .ml-npa__feature-icon,
.ml-npa-features-list .ml-npa__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #EEF6FE;
	color: var(--ml-npa-blue);
	font-size: 16px;
}

.ml-npa-features-cards .ml-npa__feature-icon img,
.ml-npa-features-cards .ml-npa__feature-icon svg,
.ml-npa-features-list .ml-npa__feature-icon img,
.ml-npa-features-list .ml-npa__feature-icon svg {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.ml-npa-features-cards .ml-npa__feature-title,
.ml-npa-features-list .ml-npa__feature-title {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	color: var(--ml-npa-navy);
}

.ml-npa-features-cards .ml-npa__feature-text,
.ml-npa-features-list .ml-npa__feature-text {
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.45;
	color: #526174;
}

/* List */
.ml-npa-features-list .ml-npa__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 24px;
}

.ml-npa-features-list .ml-npa__feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 4px 0;
}

@media (max-width: 1024px) {
	.ml-npa__top {
		grid-template-columns: 1fr;
	}

	.ml-npa__media,
	.ml-npa__content {
		order: initial !important;
	}

	.ml-npa__media {
		min-height: 420px;
	}

	.ml-npa-features-cards .ml-npa__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ml-npa-features-list .ml-npa__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.ml-npa__inner {
		padding: 54px 22px;
	}

	.ml-npa__content {
		padding: 38px 28px;
	}

	.ml-npa__title {
		font-size: 38px;
	}

	.ml-npa__media {
		min-height: 300px;
	}

	.ml-npa-features-pills .ml-npa__features {
		justify-content: flex-start;
	}

	.ml-npa-features-pills .ml-npa__feature-title {
		white-space: normal;
	}

	.ml-npa-features-cards .ml-npa__features,
	.ml-npa-features-list .ml-npa__features {
		grid-template-columns: 1fr;
	}

	.ml-npa__badge {
		left: 16px;
		top: 16px;
	}
}
