.bnx-top-recommended-vendors {
	--bnx-top-blue: #0077b6;
	--bnx-top-blue-dark: #005f96;
	--bnx-top-blue-soft: #eaf7ff;
	--bnx-top-border: rgba( 0, 119, 182, 0.18 );
	--bnx-top-shadow: 0 8px 18px rgba( 0, 84, 135, 0.08 );
	padding: 36px 0 18px;
	background: #fff;
	color: #1f2f3d;
}

.post_content .wp-block-columns:has(.bnx-top-recommended-vendors),
.post_content .wp-block-columns:has(.bnx-top-purpose) {
	margin-bottom: 0;
}

.bnx-top-recommended-vendors__inner {
	width: min( calc( 100% - 64px ), 1500px );
	margin-right: auto;
	margin-left: auto;
}

.bnx-top-recommended-vendors__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: 0 0 18px;
}

.bnx-top-recommended-vendors__title {
	margin: 0;
	color: var( --bnx-top-blue-dark );
	font-size: clamp( 22px, 2vw, 30px );
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
}

.post_content .bnx-top-recommended-vendors .bnx-top-recommended-vendors__title,
.post_content .bnx-top-purpose .bnx-top-purpose__title {
	margin: 0;
}

.bnx-top-recommended-vendors__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	color: var( --bnx-top-blue-dark );
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
}

.bnx-top-recommended-vendors__more::after {
	content: "›";
	font-size: 22px;
	line-height: 1;
}

.bnx-top-recommended-vendors__more:hover,
.bnx-top-recommended-vendors__more:focus {
	color: var( --bnx-top-blue );
	text-decoration: none;
}

.bnx-top-recommended-vendors__grid {
	display: grid;
	grid-template-columns: repeat( 5, minmax( 0, 1fr ) );
	gap: 18px;
}

.bnx-top-vendor-card {
	display: block;
	overflow: hidden;
	min-width: 0;
	background: #fff;
	border: 1px solid var( --bnx-top-border );
	border-radius: 10px;
	box-shadow: var( --bnx-top-shadow );
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bnx-top-vendor-card:hover,
.bnx-top-vendor-card:focus {
	border-color: rgba( 0, 119, 182, 0.36 );
	box-shadow: 0 12px 24px rgba( 0, 84, 135, 0.12 );
	color: inherit;
	text-decoration: none;
	transform: translateY( -2px );
}

.bnx-top-vendor-card__image-wrap {
	position: relative;
	height: 120px;
	margin: 0;
	background: linear-gradient( 135deg, #d9f1ff 0%, #f7fcff 58%, #b8e4fb 100% );
}

.bnx-top-vendor-card__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

.bnx-top-vendor-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: rgba( 0, 95, 150, 0.32 );
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}

.bnx-top-vendor-card__label {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-flex;
	align-items: center;
	min-height: 23px;
	padding: 3px 10px 4px;
	background: var( --bnx-top-blue-dark );
	border-radius: 9px 0 8px 0;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.bnx-top-vendor-card__body {
	padding: 12px 14px 14px;
}

.bnx-top-vendor-card__name {
	margin: 0 0 2px;
	color: #152d3f;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.bnx-top-vendor-card__area {
	margin: 0 0 8px;
	color: #657789;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.bnx-top-vendor-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 10px;
	color: #4f6274;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}

.bnx-top-vendor-card__stars {
	color: #ffc400;
	font-size: 15px;
	letter-spacing: 0;
	line-height: 1;
}

.bnx-top-vendor-card__score,
.bnx-top-vendor-card__reviews {
	font-size: 12px;
	line-height: 1.4;
}

.bnx-top-vendor-card__services {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.bnx-top-vendor-card__service {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 4px 9px;
	background: #f4fbff;
	border: 1px solid rgba( 0, 119, 182, 0.12 );
	border-radius: 6px;
	color: #263b4d;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

@media ( max-width: 1023px ) {
	.bnx-top-recommended-vendors__grid {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}

	.bnx-top-vendor-card__image-wrap {
		height: 150px;
	}
}

@media ( max-width: 767px ) {
	.bnx-top-recommended-vendors {
		padding: 32px 0 18px;
	}

	.bnx-top-recommended-vendors__inner {
		width: min( calc( 100% - 40px ), 1500px );
	}

	.bnx-top-recommended-vendors__head {
		display: block;
		margin-bottom: 18px;
	}

	.bnx-top-recommended-vendors__title {
		font-size: 22px;
	}

	.bnx-top-recommended-vendors__more {
		margin-top: 10px;
		font-size: 13px;
	}

	.bnx-top-recommended-vendors__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.bnx-top-vendor-card__image-wrap {
		height: 180px;
	}

	.bnx-top-vendor-card__name {
		font-size: 15px;
	}
}

.bnx-top-purpose {
	--bnx-top-purpose-blue: #0077b6;
	--bnx-top-purpose-blue-dark: #005f96;
	--bnx-top-purpose-bg: #f5fbff;
	--bnx-top-purpose-border: rgba( 0, 119, 182, 0.16 );
	--bnx-top-purpose-shadow: 0 8px 18px rgba( 0, 84, 135, 0.07 );
	margin-top: 0;
	padding: 24px 0 56px;
	background: #fff;
	color: #1f2f3d;
}

.bnx-top-purpose__inner {
	width: min( calc( 100% - 64px ), 1500px );
	margin-right: auto;
	margin-left: auto;
}

.bnx-top-purpose__header {
	margin: 0 0 24px;
}

.bnx-top-purpose__title {
	margin: 0;
	color: var( --bnx-top-purpose-blue-dark );
	font-size: clamp( 24px, 2.1vw, 31px );
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
}

.bnx-top-purpose__lead {
	max-width: 720px;
	margin: 12px 0 0;
	color: #5f7284;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
}

.bnx-top-purpose__grid {
	display: grid;
	grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	gap: 20px;
}

.bnx-top-purpose__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	min-height: 230px;
	padding: 28px 24px 26px;
	background: #fff;
	border: 1px solid var( --bnx-top-purpose-border );
	border-radius: 12px;
	box-shadow: var( --bnx-top-purpose-shadow );
	color: inherit;
	text-align: center;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bnx-top-purpose__card:hover,
.bnx-top-purpose__card:focus {
	border-color: rgba( 0, 119, 182, 0.34 );
	box-shadow: 0 14px 28px rgba( 0, 84, 135, 0.12 );
	color: inherit;
	text-decoration: none;
	transform: translateY( -2px );
}

.bnx-top-purpose .bnx-top-purpose-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	margin: 0 0 18px;
	background: linear-gradient( 180deg, #eef9ff 0%, #dff4ff 100% );
	border-radius: 50%;
	overflow: hidden;
}

.bnx-top-purpose .bnx-top-purpose-image__img {
	display: block;
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.bnx-top-purpose .bnx-top-purpose-image--custom .bnx-top-purpose-image__img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	object-position: center;
}

.bnx-top-section-cta {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.bnx-top-section-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 260px;
	min-height: 50px;
	padding: 12px 24px;
	background: #0077b6;
	border-radius: 999px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
}

.bnx-top-section-cta-button:hover,
.bnx-top-section-cta-button:focus {
	background: #005f96;
	color: #fff;
	text-decoration: none;
}

.bnx-top-purpose__name {
	display: block;
	margin: 0 0 10px;
	color: #172f42;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.bnx-top-purpose__text {
	display: block;
	margin: 0;
	color: #667a8b;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.65;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

@media ( max-width: 1023px ) {
	.bnx-top-purpose__grid {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}
}

@media ( max-width: 767px ) {
	.bnx-top-purpose {
		padding: 18px 0 44px;
	}

	.bnx-top-purpose__inner {
		width: min( calc( 100% - 40px ), 1500px );
	}

	.bnx-top-purpose__header {
		margin-bottom: 18px;
	}

	.bnx-top-purpose__title {
		font-size: 22px;
	}

	.bnx-top-purpose__lead {
		font-size: 14px;
		line-height: 1.65;
	}

	.bnx-top-purpose__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.bnx-top-purpose__card {
		min-height: 0;
		padding: 24px 20px 22px;
	}

	.bnx-top-purpose .bnx-top-purpose-image {
		width: 76px;
		height: 76px;
		margin-bottom: 14px;
	}

	.bnx-top-purpose .bnx-top-purpose-image__img {
		width: 50px;
		height: 50px;
	}

	.bnx-top-purpose__name {
		font-size: 16px;
	}

	.bnx-top-purpose__text {
		font-size: 13px;
	}

	.bnx-top-section-cta {
		margin-top: 22px;
	}

	.bnx-top-section-cta-button {
		width: min( 100%, 360px );
		min-height: 52px;
	}
}

.bnx-top-guide-columns {
	--bnx-top-guide-blue: #0077b6;
	--bnx-top-guide-blue-dark: #005f96;
	--bnx-top-guide-border: rgba( 0, 119, 182, 0.14 );
	--bnx-top-guide-shadow: 0 12px 28px rgba( 0, 84, 135, 0.08 );
	padding: 40px 0 64px;
	background: #fff;
	color: #1f2f3d;
}

.bnx-top-guide-columns__inner {
	display: grid;
	align-items: flex-start;
	grid-template-columns: minmax( 0, 3fr ) minmax( 320px, 2fr );
	gap: 32px;
	width: min( calc( 100% - 64px ), 1500px );
	margin-right: auto;
	margin-left: auto;
}

.bnx-top-guide-columns__inner--single {
	grid-template-columns: minmax( 0, 1fr );
	max-width: 980px;
}

.bnx-top-guide-columns__main,
.bnx-top-guide-columns__side {
	min-width: 0;
}

.bnx-top-guide,
.bnx-top-column-posts {
	height: auto;
	border-radius: 18px;
}

.bnx-top-guide {
	padding: 28px 28px 18px;
	background: linear-gradient( 135deg, #f4fbff 0%, #eff9ff 55%, #ffffff 100% );
	border: 1px solid var( --bnx-top-guide-border );
	box-shadow: var( --bnx-top-guide-shadow );
	text-align: center;
}

.bnx-top-guide__header {
	margin: 0 0 18px;
}

.bnx-top-guide__eyebrow {
	margin: 0 0 8px;
	color: var( --bnx-top-guide-blue );
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

.bnx-top-guide .bnx-top-guide__title {
	margin: 0 0 14px;
	color: var( --bnx-top-guide-blue-dark );
	font-size: clamp( 22px, 2vw, 30px );
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

.bnx-top-guide__lead {
	max-width: 720px;
	margin: 0 auto;
	color: #5f7284;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
}

.bnx-top-guide__image {
	overflow: hidden;
	max-width: 760px;
	margin: 22px auto 0;
	border-radius: 14px;
	background: #e9f7ff;
}

.bnx-top-guide__image img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 7;
	object-fit: cover;
}

.bnx-top-guide__points {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 14px;
	margin-top: 18px;
}

.bnx-top-guide__point-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 198px;
	padding: 18px 14px 16px;
	background: rgba( 255, 255, 255, 0.9 );
	border: 1px solid rgba( 0, 119, 182, 0.12 );
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba( 0, 84, 135, 0.06 );
}

.bnx-top-guide__point-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 10px;
}

.bnx-top-guide__point-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: #e7f7ff;
	border-radius: 50%;
	color: var( --bnx-top-guide-blue );
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.bnx-top-guide__point-title {
	margin: 0;
	color: #17364a;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
}

.bnx-top-guide__point-text {
	margin: 0;
	color: #5f7284;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.65;
}

.bnx-top-guide__point-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin-top: auto;
	padding-top: 12px;
}

.bnx-top-guide__point-icon img {
	display: block;
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.bnx-top-guide__button-wrap {
	margin-top: 18px;
	margin-bottom: 0;
}

.bnx-top-guide__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 48px;
	padding: 12px 28px;
	background: var( --bnx-top-guide-blue );
	border-radius: 999px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	box-shadow: 0 10px 18px rgba( 0, 119, 182, 0.2 );
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bnx-top-guide__button::after {
	content: "›";
	margin-left: 10px;
	font-size: 22px;
	line-height: 1;
}

.bnx-top-guide__button:hover,
.bnx-top-guide__button:focus {
	background: var( --bnx-top-guide-blue-dark );
	color: #fff;
	text-decoration: none;
	box-shadow: 0 14px 24px rgba( 0, 95, 150, 0.24 );
	transform: translateY( -1px );
}

.bnx-top-column-posts {
	padding: 0;
	background: #fff;
}

.bnx-top-column-posts__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 18px;
	padding-top: 0;
}

.bnx-top-column-posts__title {
	margin: 0;
	color: #163545;
	font-size: clamp( 22px, 2vw, 30px );
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

.post_content .bnx-top-guide-columns .bnx-top-column-posts__title {
	margin: 0;
}

.bnx-top-column-posts__archive {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	color: var( --bnx-top-guide-blue-dark );
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
}

.bnx-top-column-posts__archive::after {
	content: "›";
	font-size: 22px;
	line-height: 1;
}

.bnx-top-column-posts__archive:hover,
.bnx-top-column-posts__archive:focus {
	color: var( --bnx-top-guide-blue );
	text-decoration: none;
}

.bnx-top-column-posts__list {
	display: grid;
	gap: 0;
}

.bnx-top-column-posts__item {
	display: grid;
	grid-template-columns: 132px minmax( 0, 1fr );
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid rgba( 0, 119, 182, 0.12 );
	color: inherit;
	text-decoration: none;
}

.bnx-top-column-posts__item:first-child {
	padding-top: 0;
}

.bnx-top-column-posts__item:hover,
.bnx-top-column-posts__item:focus {
	color: inherit;
	text-decoration: none;
}

.bnx-top-column-posts__thumb {
	display: block;
	overflow: hidden;
	width: 132px;
	aspect-ratio: 4 / 3;
	background: linear-gradient( 135deg, #eaf7ff 0%, #f8fdff 100% );
	border-radius: 10px;
}

.bnx-top-column-posts__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bnx-top-column-posts__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.bnx-top-column-posts__post-title {
	display: block;
	color: #172f42;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.bnx-top-column-posts__date {
	display: block;
	margin-top: 6px;
	color: #7b8d9b;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.bnx-top-column-posts__empty {
	margin: 0;
	padding: 18px 0;
	color: #6b7d8d;
	font-size: 14px;
	line-height: 1.7;
}

@media ( max-width: 1023px ) {
	.bnx-top-guide-columns__inner {
		grid-template-columns: 1fr;
	}

	.bnx-top-guide__point-card {
		min-height: 188px;
	}
}

@media ( max-width: 767px ) {
	.bnx-top-guide-columns {
		padding: 34px 0 48px;
	}

	.bnx-top-guide-columns__inner {
		width: min( calc( 100% - 40px ), 1500px );
		gap: 28px;
	}

	.bnx-top-guide {
		padding: 24px 18px 22px;
		border-radius: 14px;
	}

	.bnx-top-guide__eyebrow {
		margin-bottom: 6px;
		font-size: 15px;
	}

	.bnx-top-guide__title,
	.bnx-top-column-posts__title {
		font-size: 22px;
	}

	.bnx-top-guide .bnx-top-guide__title {
		margin-bottom: 12px;
	}

	.bnx-top-guide__lead {
		margin-bottom: 0;
		font-size: 14px;
		line-height: 1.7;
	}

	.bnx-top-guide__points {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 16px;
	}

	.bnx-top-guide__point-card {
		min-height: 0;
		padding: 16px 14px;
	}

	.bnx-top-guide__point-heading {
		margin-bottom: 8px;
	}

	.bnx-top-guide__point-icon {
		width: 54px;
		height: 54px;
		padding-top: 10px;
	}

	.bnx-top-guide__point-icon img {
		width: 50px;
		height: 50px;
	}

	.bnx-top-guide__button-wrap {
		margin-top: 18px;
	}

	.bnx-top-guide__button {
		width: 100%;
		min-width: 0;
	}

	.bnx-top-column-posts__header {
		display: block;
		margin-bottom: 14px;
	}

	.bnx-top-column-posts__archive {
		margin-top: 8px;
		font-size: 13px;
	}

	.bnx-top-column-posts__item {
		grid-template-columns: 96px minmax( 0, 1fr );
		gap: 14px;
		padding: 14px 0;
	}

	.bnx-top-column-posts__thumb {
		width: 96px;
	}

	.bnx-top-column-posts__post-title {
		font-size: 14px;
		line-height: 1.5;
	}

	.bnx-top-column-posts__date {
		font-size: 12px;
	}
}

.bnx-top-trust-cta {
	--bnx-top-trust-blue: #0077b6;
	--bnx-top-trust-blue-dark: #005f96;
	--bnx-top-trust-blue-soft: #eaf7ff;
	--bnx-top-trust-border: rgba( 0, 119, 182, 0.16 );
	--bnx-top-trust-shadow: 0 10px 24px rgba( 0, 84, 135, 0.08 );
	margin-top: -28px;
	padding: 0 0 64px;
	background: #fff;
	color: #1f2f3d;
}

.bnx-top-trust-cta__inner {
	display: grid;
	align-items: stretch;
	grid-template-columns: minmax( 0, 3fr ) minmax( 320px, 2fr );
	gap: 28px;
	width: min( calc( 100% - 64px ), 1500px );
	margin-right: auto;
	margin-left: auto;
}

.bnx-top-trust-cta__inner--single {
	grid-template-columns: minmax( 0, 1fr );
	max-width: 980px;
}

.bnx-top-trust-cta__trust,
.bnx-top-trust-cta__vendor {
	min-width: 0;
}

.bnx-top-trust,
.bnx-top-vendor-cta {
	min-height: 238px;
	border-radius: 18px;
	box-shadow: var( --bnx-top-trust-shadow );
}

.bnx-top-trust {
	padding: 24px 30px 26px;
	background: #fff;
	border: 1px solid var( --bnx-top-trust-border );
}

.bnx-top-trust__header {
	margin: 0 0 22px;
	text-align: center;
}

.bnx-top-trust__title {
	margin: 0;
	color: var( --bnx-top-trust-blue-dark );
	font-size: clamp( 20px, 1.7vw, 28px );
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

.post_content .bnx-top-trust-cta .bnx-top-trust__title,
.post_content .bnx-top-trust-cta .bnx-top-vendor-cta__title {
	margin: 0;
}

.bnx-top-trust__lead {
	margin: 10px 0 0;
	color: #617688;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
}

.bnx-top-trust__items {
	display: grid;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
	gap: 18px;
}

.bnx-top-trust__item {
	display: grid;
	grid-template-columns: 68px minmax( 0, 1fr );
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.bnx-top-trust .bnx-top-certification-image {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	background: linear-gradient( 180deg, #f3fbff 0%, #e2f5ff 100% );
	border: 1px solid rgba( 0, 119, 182, 0.12 );
	border-radius: 16px;
	overflow: hidden;
}

.bnx-top-trust .bnx-top-certification-image__img {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.bnx-top-trust .bnx-top-certification-image--custom .bnx-top-certification-image__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.bnx-top-trust__item-title {
	margin: 0 0 6px;
	color: var( --bnx-top-trust-blue-dark );
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.bnx-top-trust__item-text {
	margin: 0;
	color: #44596b;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.65;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.bnx-top-vendor-cta {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 30px;
	background-color: #eaf7ff;
	background-image: linear-gradient( 135deg, #edf9ff 0%, #d7effb 100% );
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	border: 1px solid rgba( 0, 119, 182, 0.1 );
}

.bnx-top-vendor-cta--has-bg {
	background-size: contain;
}

.bnx-top-vendor-cta::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient( 90deg, rgba( 255, 255, 255, 0.96 ) 0%, rgba( 235, 248, 255, 0.9 ) 52%, rgba( 235, 248, 255, 0.32 ) 100% );
	content: "";
	pointer-events: none;
}

.bnx-top-vendor-cta__content {
	position: relative;
	z-index: 1;
	max-width: 420px;
}

.bnx-top-vendor-cta__title {
	margin: 0;
	color: var( --bnx-top-trust-blue-dark );
	font-size: clamp( 22px, 2vw, 30px );
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.bnx-top-vendor-cta__subtitle {
	margin: 12px 0 0;
	color: #4584a7;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
}

.bnx-top-vendor-cta__text {
	margin: 12px 0 0;
	color: #486071;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
}

.bnx-top-vendor-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	min-height: 48px;
	margin-top: 20px;
	padding: 12px 26px;
	background: var( --bnx-top-trust-blue );
	border-radius: 8px;
	box-shadow: 0 10px 20px rgba( 0, 119, 182, 0.2 );
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bnx-top-vendor-cta__button::after {
	margin-left: 10px;
	font-size: 22px;
	line-height: 1;
	content: "›";
}

.bnx-top-vendor-cta__button:hover,
.bnx-top-vendor-cta__button:focus {
	background: var( --bnx-top-trust-blue-dark );
	color: #fff;
	text-decoration: none;
	box-shadow: 0 14px 24px rgba( 0, 95, 150, 0.24 );
	transform: translateY( -1px );
}

@media ( max-width: 1180px ) {
	.bnx-top-trust__items {
		gap: 14px;
	}

	.bnx-top-trust__item {
		grid-template-columns: 1fr;
		align-items: start;
		text-align: center;
	}

	.bnx-top-trust__icon {
		margin-right: auto;
		margin-left: auto;
	}
}

@media ( max-width: 1023px ) {
	.bnx-top-trust-cta__inner {
		grid-template-columns: 1fr;
	}

	.bnx-top-trust__item {
		grid-template-columns: 68px minmax( 0, 1fr );
		text-align: left;
	}

	.bnx-top-trust__icon {
		margin: 0;
	}
}

@media ( max-width: 767px ) {
	.bnx-top-trust-cta {
		margin-top: -18px;
		padding: 0 0 48px;
	}

	.bnx-top-trust-cta__inner {
		width: min( calc( 100% - 40px ), 1500px );
		gap: 22px;
	}

	.bnx-top-trust,
	.bnx-top-vendor-cta {
		min-height: 0;
		border-radius: 14px;
	}

	.bnx-top-trust {
		padding: 22px 18px;
	}

	.bnx-top-trust__header {
		margin-bottom: 18px;
	}

	.bnx-top-trust__title,
	.bnx-top-vendor-cta__title {
		font-size: 22px;
	}

	.bnx-top-trust__lead,
	.bnx-top-vendor-cta__text {
		font-size: 14px;
		line-height: 1.65;
	}

	.bnx-top-trust__items {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.bnx-top-trust__item {
		grid-template-columns: 58px minmax( 0, 1fr );
		gap: 12px;
	}

	.bnx-top-trust__icon {
		width: 58px;
		height: 58px;
		border-radius: 14px;
	}

	.bnx-top-trust__icon img {
		width: 42px;
		height: 42px;
	}

	.bnx-top-trust__item-title {
		font-size: 14px;
	}

	.bnx-top-vendor-cta {
		padding: 24px 20px;
		background-position: right bottom;
		background-size: auto 100%;
	}

	.bnx-top-vendor-cta::before {
		background: linear-gradient( 90deg, rgba( 255, 255, 255, 0.98 ) 0%, rgba( 235, 248, 255, 0.95 ) 68%, rgba( 235, 248, 255, 0.62 ) 100% );
	}

	.bnx-top-vendor-cta__content {
		max-width: none;
	}

	.bnx-top-vendor-cta__subtitle {
		font-size: 15px;
	}

	.bnx-top-vendor-cta__button {
		width: 100%;
		min-width: 0;
	}
}
