.hnc-faq {
	--hnc-faq-accent: #3f846a;
	--hnc-faq-border: rgba(0, 0, 0, 0.08);
	--hnc-faq-bg: #ffffff;
	--hnc-faq-panel-bg: rgba(63, 132, 106, 0.04);
	--hnc-faq-radius: 5px;
	--hnc-faq-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	--hnc-faq-transition: 320ms cubic-bezier(0.4, 0, 0.2, 1);
	margin: 2rem 0;
}

.hnc-faq__title {
	margin: 0 0 calc(0.5rem + 10px);
	color: var(--e-global-color-accent);
	font-family: "Rubik", sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.2;
}

.hnc-faq__list {
	display: grid;
	gap: 0.75rem;
}

.hnc-faq__item {
	overflow: hidden;
	border: 1px solid var(--hnc-faq-border);
	border-radius: var(--hnc-faq-radius);
	background: var(--hnc-faq-bg);
	box-shadow: var(--hnc-faq-shadow);
	transition: border-color var(--hnc-faq-transition), box-shadow var(--hnc-faq-transition), transform var(--hnc-faq-transition);
}

.hnc-faq__item:hover {
	border-color: rgba(63, 132, 106, 0.25);
}

.hnc-faq__item.is-open {
	border-color: rgba(63, 132, 106, 0.35);
	box-shadow: 0 12px 32px rgba(63, 132, 106, 0.12);
}

.hnc-faq__question {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}

.hnc-faq__trigger,
.hnc-faq__trigger:hover,
.hnc-faq__trigger:focus,
.hnc-faq__trigger:active,
.hnc-faq__trigger:visited {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1rem 1.15rem;
	border: 0;
	background: transparent;
	color: inherit !important;
	font: inherit;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--hnc-faq-transition);
}

.hnc-faq__trigger:hover,
.hnc-faq__trigger:focus {
	background: var(--hnc-faq-panel-bg) !important;
}

.hnc-faq__trigger:focus-visible {
	outline: 2px solid var(--hnc-faq-accent);
	outline-offset: -2px;
}

.hnc-faq__question-text {
	flex: 1 1 auto;
	font-weight: 600;
	line-height: 1.45;
}

.hnc-faq__icon {
	position: relative;
	flex: 0 0 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
}

.hnc-faq__icon::before,
.hnc-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.9rem;
	height: 2px;
	background: var(--hnc-faq-accent);
	border-radius: 999px;
	transform: translate(-50%, -50%);
	transition: transform var(--hnc-faq-transition), opacity var(--hnc-faq-transition);
}

.hnc-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.hnc-faq__item.is-open .hnc-faq__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.hnc-faq__panel {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height var(--hnc-faq-transition), opacity var(--hnc-faq-transition);
}

.hnc-faq__panel.is-open {
	opacity: 1;
}

.hnc-faq__answer {
	padding: 5px 1.15rem 1.15rem;
	background: var(--hnc-faq-panel-bg);
	color: inherit;
	line-height: 1.65;
}

.hnc-faq__answer > :first-child {
	margin-top: 0;
}

.hnc-faq__answer > :last-child {
	margin-bottom: 0;
}

.hnc-faq__answer a {
	color: var(--hnc-faq-accent);
}

@media (prefers-reduced-motion: reduce) {
	.hnc-faq__item,
	.hnc-faq__panel,
	.hnc-faq__icon::before,
	.hnc-faq__icon::after {
		transition: none;
	}
}
