.lv-faq-accordion {
	display: grid;
	gap: 12px;
	margin: 0 auto;
	max-width: 860px;
}

.lv-faq-item {
	background: var(--lv-surface, #FFFFFF);
	border: 1px solid var(--lv-border, #E4E0D8);
	border-radius: var(--lv-radius-md, 8px);
	overflow: hidden;
}

.lv-faq-item__heading { margin: 0; }

.lv-faq-item__trigger {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--lv-green-deep, #2E3A1A);
	cursor: pointer;
	display: flex;
	font: 700 17px/1.4 var(--lv-font-body, 'Roboto', sans-serif);
	gap: 16px;
	justify-content: space-between;
	min-height: 64px;
	padding: 16px 20px;
	text-align: left;
	width: 100%;
}

.lv-faq-item__trigger:hover,
.lv-faq-item__trigger:focus-visible {
	background: var(--lv-green-mist, #F4F7EE);
	color: var(--lv-green-mid, #4E7A22);
}

.lv-faq-item__trigger:focus-visible {
	box-shadow: inset 0 0 0 3px var(--lv-gold-light, #E0BB5A);
	outline: 0;
}

.lv-faq-item__icon {
	align-items: center;
	color: var(--lv-gold-dark, #A07828);
	display: flex;
	flex: 0 0 24px;
	font: 400 28px/1 var(--lv-font-body, 'Roboto', sans-serif);
	height: 24px;
	justify-content: center;
	transition: transform .2s ease;
	width: 24px;
}

.lv-faq-item.is-open .lv-faq-item__icon { transform: rotate(45deg); }

.lv-faq-item__content {
	color: var(--lv-body, #3D3028);
	font: 400 15px/1.7 var(--lv-font-body, 'Roboto', sans-serif);
	padding: 0 20px 20px;
}

.lv-faq-item__content p { margin: 0; }
.lv-faq-item__content a { color: var(--lv-green-mid, #4E7A22); font-weight: 700; }