.image-dual-callout {
	position: relative;
}

.image-dual-callout__background,
.image-dual-callout__background img {
	display: block;
	width: 100%;
}

.image-dual-callout__background img {
	object-fit: cover;
}

.image-dual-callout__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(35, 31, 32, 0.6) 38%,
		rgba(35, 31, 32, 0.38) 50%,
		rgba(35, 31, 32, 0) 60%
	);
}

.image-dual-callout__content-container {
	position: absolute;
	inset: 0;
	z-index: 1;

	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 2rem;
}

.image-dual-callout__pricing {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: #ffffff;
	max-width: 500px;
}

.image-dual-callout__pricing h2 {
	font-size: 2.5rem;
}

.image-dual-callout__pricing p {
	font-family: Montserrat, sans-serif;
}

.image-dual-callout__pricing p strong,
.image-dual-callout__card p strong {
	font-weight: 600;
}

.image-dual-callout__card {
	background-color: var(--colors-light-orange);
	max-width: 400px;
	padding: 40px 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow:
		0 4px 30px 0 rgba(0, 0, 0, 0.08),
		0 6px 12px 0 rgba(0, 0, 0, 0.18);
}

.image-dual-callout__card h3 {
	color: #fff;
	line-height: 1.05;
}

.image-dual-callout__card p {
	color: #fff;
	font-family: Montserrat, sans-serif;
	font-size: 1.3rem;
	line-height: 1.3;
}

.image-dual-callout__button {
	display: inline-flex;
	background-color: var(--colors-light-orange);
	padding: 10px 20px;
	width: fit-content;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	transition: all 0.3s ease;
}

.image-dual-callout__button:hover {
	background: #767878;
	color: #fff;
}

.image-dual-callout__spacer {
	background-color: var(--colors-cream);
	height: 5rem;
}

@media (max-width: 1023px) {
	.image-dual-callout__overlay {
		background: linear-gradient(
			135deg,
			rgba(0, 0, 0, 0.7) 0%,
			rgba(35, 31, 32, 0.65) 20%,
			rgba(35, 31, 32, 0.36) 60%,
			rgba(35, 31, 32, 0) 80%
		);
	}

	.image-dual-callout__background img {
		min-height: 550px;
	}

	.image-dual-callout__content-container {
		grid-template-columns: 1fr;
		padding: 2rem 0;
		max-width: unset;
		gap: 1.5rem;
	}

	.image-dual-callout__pricing {
		align-items: center;
		gap: 10px;
		justify-self: center;
	}

	.image-dual-callout__pricing p {
		text-align: center;
		font-size: 1rem;
	}

	.image-dual-callout__card {
		padding: 1.5rem 3rem;
		gap: 5px;
		justify-self: center;
	}

	.image-dual-callout__card h3 {
		font-size: 1.1rem;
	}

	.image-dual-callout__card p {
		font-size: 1rem;
	}

	.image-dual-callout__spacer {
		height: 3rem;
	}
}

@media (max-width: 767px) {
	.image-dual-callout__pricing h2 {
		font-size: 1.875rem;
	}
}
