.cta {
	position: relative;
	width: 100%;
	padding: 0 16px;
	background: #fff;
	color: #000;
}

.cta *,
.cta *::before,
.cta *::after {
	box-sizing: border-box;
}

.cta__inner {
	width: min(100%, 621px);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta__eyebrow {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: -0.05em;
	font-weight: 400;
	color: #000;
	text-align: center;
}

.cta__title {
	width: 100%;
	margin: 0;
	font-size: 38px;
	line-height: 38px;
	letter-spacing: -0.05em;
	font-weight: 400;
	color: #000;
	text-align: center;
}

.cta__title-line,
.cta__description-line {
	display: block;
}

.cta__description {
	width: 100%;
	margin: 16px 0 0;
	font-size: 21px;
	line-height: 18px;
	letter-spacing: -0.05em;
	font-weight: 500;
	color: #000;
	text-align: center;
}

.cta__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	border-radius: 22px;
	text-decoration: none;
	white-space: nowrap;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: -0.05em;
	transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cta__button:hover {
	transform: translateY(-1px);
	opacity: 0.92;
}

.cta__button:active {
	transform: translateY(0);
	opacity: 0.88;
}

.cta__button:focus-visible {
	outline: 2px solid #0458f4;
	outline-offset: 2px;
}

.cta__button--secondary {
	width: 178px;
	border: 1.33px solid #d9d9d9;
	background: #fff;
	color: #000;
	font-weight: 500;
}

.cta__button--primary {
	width: 177.504px;
	border: 1px solid transparent;
	background: #0458f4;
	color: #fff;
	font-weight: 400;
}

@media (max-width: 900px) {
	.cta {
		padding: 0 12px;
	}

	.cta__inner {
		width: min(100%, 272.628px);
	}

	.cta__eyebrow {
		margin-bottom: 6.25px;
		font-size: 12px;
		line-height: 14px;
	}

	.cta__title {
		font-size: 24px;
		line-height: 24px;
	}

	.cta__description {
		margin-top: 12px;
		font-size: 15.75px;
		line-height: 13.5px;
	}

	.cta__actions {
		gap: 6px;
		margin-top: 12px;
	}

	.cta__button {
		height: 27px;
		border-radius: 16.5px;
		font-size: 10.5px;
		line-height: 13.5px;
	}

	.cta__button--secondary {
		width: 133.5px;
		border-width: 0.998px;
	}

	.cta__button--primary {
		width: 133.128px;
	}
}
