.centered-cta {
	position: relative;
	min-height: 275px;
	padding: 50px 56px;
	margin-bottom: 30px;
	border-radius: 0 50px 0 0;
	text-align: center;
	color: var(--white);
	display: flex;
	justify-content: center;
}

.centered-cta .inner {
	width: 100%;
	max-width: 452px;
	height: 100%;
	margin: auto auto;
	flex-direction: column;
	align-content: center;
}

.centered-cta .title {
	margin-bottom: 15px;
	font-family: var(--font-body);
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: inherit;
}

.centered-cta .desc {
	margin: 0;
	font-family: var(--font-body);
	font-weight: normal;
	font-size: var(--text-base);
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: inherit;
}

.centered-cta .button-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

@media (min-width: 46.5em) {
	.centered-cta {
		min-height: 404px;
		padding: 40px 80px;
		margin-bottom: 40px; 
		border-radius: 0 75px 0 0;
	}

	.centered-cta .title {
		margin-bottom: 20px;
		font-size: 3.125rem;
	}

	.centered-cta .desc {
		font-size: var(--text-xl);
	}

	.centered-cta .button-row {
		flex-direction: row;
		justify-content: center;
		gap: 30px;
		margin-top: 40px;
	}
}

@media (min-width: 80em) {
	.centered-cta {
		min-height: 336px;
		padding: 60px 80px;
		margin-bottom: 60px;
	}

	.centered-cta .inner {
		max-width: 736px;
	}

	.centered-cta .title {
		font-size: 3.75rem;
	}
}