.vmseo-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vmseo-faq__item {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: var(--vmseo-faq-q-bg, #f6f7f8);
	overflow: hidden;
	transition: box-shadow 0.15s ease;
}

.vmseo-faq__item[open] {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.vmseo-faq__q {
	display: block;
	cursor: pointer;
	list-style: none;
	padding: 18px 56px 18px 24px;
	font-weight: 700;
	font-size: 1.05em;
	line-height: 1.4;
	color: var(--vmseo-faq-q-color, #1a4d2e);
	position: relative;
}

.vmseo-faq__q::-webkit-details-marker {
	display: none;
}

.vmseo-faq__q::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6em;
	font-weight: 400;
	line-height: 1;
	color: var(--vmseo-faq-icon-color, #b08d57);
}

.vmseo-faq__item[open] .vmseo-faq__q::after {
	content: "\2212";
}

.vmseo-faq__a {
	padding: 2px 24px 18px;
	color: #374151;
	line-height: 1.65;
}

.vmseo-faq__a > :first-child {
	margin-top: 0;
}

.vmseo-faq__a > :last-child {
	margin-bottom: 0;
}
