.promo-badge-cta {
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}

.promo-badge-cta__overlay {
	position: relative;
	width: 100%;
	padding: 40px 0;
}

.promo-badge-cta__inner {
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	display: flex;
	justify-content: flex-end; /* right align card by default */
	align-items: center; /* will be overridden inline for top/center/bottom */
}

.promo-badge-cta__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 24px 2rem;
	box-shadow: 0 6px 24px rgba(0,0,0,0.12);
	overflow: visible;
}

.promo-badge-cta__card--right {
	margin-left: auto;
}

.promo-badge-cta__card--left {
	margin-right: auto;
}

.promo-badge-cta__badge {
	position: absolute;
	left: -70px;
	top: 10px;
	transform: translateY(-50%);
	z-index: 2;
	width: 100px;
	height: auto;
}

.promo-badge-cta__badge img {
	display: block;
	width: 100%;
	max-width: 100px;
	height: auto;
	min-width: 80px;
}

.promo-badge-cta__heading {
	font-family: var(--wp--preset--font-family--bntillsdale);
	font-size: 1.5rem;
	margin: 0 0 8px 0;
}

.promo-badge-cta__content {
	padding-top: 30px; /* Space for the overlapping badge */
	text-align: center;
	width: 100%;
}

.promo-badge-cta__content ol,
.promo-badge-cta__content ul {
	text-align: left;
	margin: 0;
	padding-left: 1.5rem;
	width: 100%;
	box-sizing: border-box;
}

.promo-badge-cta__text {
	font-size: 1rem;
	line-height: 1.5;
}

.promo-badge-cta__actions { margin-top: 16px; }

.promo-badge-cta__button {
	display: inline-block;
	padding: 12px 18px;
	text-decoration: none;
	font-weight: 700;
	border-radius: 3px;
	font-family: var(--wp--preset--font-family--mindset);
	font-size: 1rem;
	border: 1px solid;
	transition: all 0.3s ease;
}

@media (min-width: 1024px) {
	.promo-badge-cta__overlay { padding: 60px 0; }
	.promo-badge-cta__card { padding: 32px 2rem; gap: 32px; }
	.promo-badge-cta__badge { width: 120px; left: -70px; top: 10px; }
	.promo-badge-cta__badge img { max-width: 120px; min-width: 100px; }
	.promo-badge-cta__content { padding-top: 30px; }
}

@media (max-width: 640px) {
	.promo-badge-cta {
		display: flex;
		flex-direction: column;
		background-image: none !important;
		position: relative;
	}
	
	.promo-badge-cta::before {
		content: '';
		display: block;
		width: 100%;
		height: 250px;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	.promo-badge-cta__badge {
		position: absolute;
		top: -35px;
		right: 15px;
		left: auto;
		transform: none;
		z-index: 3;
		width: 80px;
	}
	
	.promo-badge-cta__badge img {
		max-width: 80px;
		min-width: 60px;
	}
	
	.promo-badge-cta__overlay {
		padding: 0;
		background: white;
	}
	
	.promo-badge-cta__inner {
		padding: 0;
		justify-content: center;
	}
	
	.promo-badge-cta__card {
		flex-direction: column;
		margin: 0;
		box-shadow: none;
		width: 100%;
		max-width: none;
	}
	
	.promo-badge-cta__content {
		padding-top: 20px;
	}
}


