/* NCB WooCommerce Customer Trust & Privileges — frontend banner. */

.ncbwctp-offer-banner {
	display: flex;
	align-items: center;
	gap: 16px;
	/* Overridden inline with the shop's own colour (see MembershipBanner). */
	background: #12798f;
	color: #ffffff;
	border-radius: 10px;
	padding: 18px 22px;
	margin: 0 0 24px 0;
	box-shadow: 0 2px 8px rgba(11, 61, 74, 0.18);
}

.ncbwctp-offer-banner__icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #ffe9a8;
}

.ncbwctp-offer-banner__body {
	flex: 1;
	min-width: 0;
}

.ncbwctp-offer-banner__title {
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
}

.ncbwctp-offer-banner__text {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: #dcf1ee;
}

.ncbwctp-offer-banner__button {
	flex-shrink: 0;
	display: inline-block;
	background: #ffffff;
	color: #0b3d4a !important;
	font-weight: 700;
	font-size: 14px;
	padding: 11px 20px;
	border-radius: 7px;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.ncbwctp-offer-banner__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
	color: #0b3d4a;
}

@media (max-width: 640px) {
	.ncbwctp-offer-banner {
		flex-wrap: wrap;
	}
	.ncbwctp-offer-banner__button {
		width: 100%;
		text-align: center;
	}
}
