.novus-faq {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 80px;
	align-items: start;
	width: 100%;
}

.novus-faq__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.novus-faq__eyebrow {
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.novus-faq__heading {
	margin: 0 0 30px;
	font-size: 64px;
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.novus-faq__heading p {
	margin: 0;
}

.novus-faq__description {
	margin-bottom: 35px;
	font-size: 18px;
	line-height: 1.6;
}

.novus-faq__description p {
	margin: 0 0 20px;
}

.novus-faq__description p:last-child {
	margin-bottom: 0;
}

.novus-faq__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 28px;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.novus-faq__button:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

.novus-faq__right {
	width: 100%;
}

.novus-faq__items {
	width: 100%;
}

.novus-faq__item {
	border-bottom: 1px solid currentColor;
}

.novus-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: 100%;
	margin: 0;
	padding: 28px 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.novus-faq__question-text {
	display: block;
}

.novus-faq__icon {
	position: relative;
	display: block;
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	transition: transform 0.3s ease;
}

.novus-faq__icon::before,
.novus-faq__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: "";
	background: currentColor;
	transform: translate(-50%, -50%);
}

.novus-faq__icon::before {
	width: 14px;
	height: 2px;
}

.novus-faq__icon::after {
	width: 2px;
	height: 14px;
	transition: opacity 0.3s ease;
}

.novus-faq__item.active .novus-faq__icon::after {
	opacity: 0;
}

.novus-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	transition: grid-template-rows 0.35s ease;
}

.novus-faq__answer-inner {
	min-height: 0;
	padding-right: 50px;
	padding-bottom: 0;
	overflow: hidden;
}

.novus-faq__item.active .novus-faq__answer {
	grid-template-rows: 1fr;
}

.novus-faq__item.active .novus-faq__answer-inner {
	padding-bottom: 28px;
}

.novus-faq__answer p {
	margin: 0 0 20px;
}

.novus-faq__answer p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {

	.novus-faq {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.novus-faq__heading {
		font-size: 52px;
	}

}

@media (max-width: 767px) {

	.novus-faq {
		gap: 45px;
	}

	.novus-faq__eyebrow {
		margin-bottom: 15px;
	}

	.novus-faq__heading {
		margin-bottom: 25px;
		font-size: 40px;
		line-height: 1;
	}

	.novus-faq__description {
		margin-bottom: 30px;
		font-size: 16px;
	}

	.novus-faq__question {
		gap: 20px;
		padding: 22px 0;
	}

	.novus-faq__answer-inner {
		padding-right: 0;
	}

	.novus-faq__item.active .novus-faq__answer-inner {
		padding-bottom: 22px;
	}

}