.novaCtaButtons {
	width: 100%;
	padding: 12px 24px 80px;
	background: #ffffff;
}

.novaCtaButtons__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
	display: grid;
	justify-items: center;
	gap: 46px;
}

.novaCtaButtons__title {
	margin: 0;
	color: #202020;
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
}

.novaCtaButtons__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px 42px;
}

.novaCtaButtons__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-width: 238px;
	min-height: 66px;
	padding: 20px 24px;
	border: 2px solid #ff9a6a;
	border-radius: 999px;
	background: #ffffff;
	color: #202020;
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.novaCtaButtons__button::after {
	content: "";
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	background-color: currentColor;
	-webkit-mask: url("./assets/arrow-up-right.svg") center / contain no-repeat;
	mask: url("./assets/arrow-up-right.svg") center / contain no-repeat;
	transition: transform 0.2s ease;
}

.novaCtaButtons__button:hover,
.novaCtaButtons__button:focus-visible {
	border-color: #ef7c23;
	background: #ef7c23;
	color: #ffffff;
	transform: translateY(-1px);
}

.novaCtaButtons__button:hover::after,
.novaCtaButtons__button:focus-visible::after {
	transform: translate(2px, -2px);
}

.novaCtaButtons__button:focus-visible {
	outline: 2px solid #ef7c23;
	outline-offset: 3px;
}

.novaCtaButtons__button--static {
	cursor: default;
}

.novaCtaButtons__button--static:hover {
	border-color: #ff9a6a;
	background: #ffffff;
	color: #202020;
	transform: none;
}

.novaCtaButtons__button--static:hover::after {
	transform: none;
}

@media (max-width: 640px) {
	.novaCtaButtons {
		padding: 8px 16px 56px;
	}

	.novaCtaButtons__inner {
		gap: 30px;
	}

	.novaCtaButtons__list {
		width: 100%;
		gap: 14px;
	}

	.novaCtaButtons__button {
		width: 100%;
		min-width: 0;
		min-height: 54px;
		padding: 16px 20px;
		font-size: 18px;
	}

	.novaCtaButtons__button::after {
		width: 20px;
		height: 20px;
	}
}
