.novaFaqs {
	width: 100%;
	padding: 40px 24px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	background: #fff;
}

.novaFaqs__title {
	margin: 0;
	color: #202020;
	font-size: 48px;
	font-weight: 500;
	line-height: 54px;
	text-align: center;
	text-transform: uppercase;
}

.novaFaqs__panel {
	width: min(918px, 100%);
	padding: 24px;
	border-radius: 24px;
	background: #f5f5f7;
}

.novaFaqs__item {
	border-bottom: 1px solid #d2d2d2;
}

.novaFaqs__item:last-child {
	border-bottom: 0;
}

.novaFaqs__trigger {
	width: 100%;
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.novaFaqs__question {
	flex: 1;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: #1d1d1f;
}

.novaFaqs__icon {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1d1d1f;
	flex: 0 0 auto;
}

.novaFaqs__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.novaFaqs__icon--up {
	display: none;
}

.novaFaqs__content {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.25s ease, padding-bottom 0.25s ease;
}

.novaFaqs__contentInner {
	overflow: hidden;
}

.novaFaqs__contentInner p {
	margin: 0;
	font-size: 16px;
	line-height: 22px;
	color: #202020;
}

.novaFaqs__item.is-open .novaFaqs__icon--up {
	display: block;
}

.novaFaqs__item.is-open .novaFaqs__icon--down {
	display: none;
}

.novaFaqs__item.is-open .novaFaqs__content {
	grid-template-rows: 1fr;
	padding-bottom: 24px;
}

.novaFaqs__footer {
	display: flex;
	justify-content: center;
	width: 100%;
}

.novaFaqs__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 312px;
	padding: 16px 24px;
	border: 2px solid #ef7c23;
	border-radius: 999px;
	background: #fff;
	color: #1d1d1f;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.novaFaqs__cta:hover,
.novaFaqs__cta:focus-visible {
	background: #ef7c23;
	color: #fff;
}

.novaFaqs__ctaIcon {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ef7c23;
	transition: color 0.2s ease;
}

.novaFaqs__cta:hover .novaFaqs__ctaIcon,
.novaFaqs__cta:focus-visible .novaFaqs__ctaIcon {
	color: #fff;
}

.novaFaqs__ctaIcon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.novaFaqs__cta--static {
	cursor: default;
}

@media (max-width: 768px) {
	.novaFaqs {
		padding: 32px 16px;
	}

	.novaFaqs__title {
		font-size: 36px;
		line-height: 1.1;
	}

	.novaFaqs__trigger {
		gap: 16px;
	}

	.novaFaqs__question {
		font-size: 18px;
		line-height: 1.45;
	}

	.novaFaqs__cta {
		width: 100%;
		min-width: 0;
	}
}
