.vk-faq-container {
	width: 100%;
}

.vk-faq-item + .vk-faq-item {
	padding-top: clamp(16px, 1.5vw + 10px, 25px);
	border-top: clamp(1px, 0.05vw + 0.5px, 1px) solid #695757;
}

.vk-faq-item:not(:last-child) {
	padding-bottom: clamp(16px, 1.5vw + 10px, 25px);
}

.vk-faq-item--empty {
	padding: clamp(16px, 2vw, 24px);
	text-align: center;
	color: #695757;
	background-color: #f0e9e1;
}

.vk-faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(12px, 1.5vw, 20px);
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.vk-faq-item__question {
	flex: 1 1 auto;
	font-family: var(--wp--preset--font-family--din-light);
	font-size: 24px;
	font-weight: 300;
	line-height: 1.3;
	color: #806464;
}

.vk-faq-item__answer-inner {
	font-family: var(--wp--preset--font-family--din-light);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.3;
	color: #000000;
}

.vk-faq-item__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 35px;
	margin-right: 15px;
	height: clamp(14px, 1vw + 12px, 18px);
	transition: transform 0.3s ease;
	transform: rotate(0deg);
	transform-origin: center center;
}

.vk-faq-item__arrow img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.vk-faq-item.is-open .vk-faq-item__arrow {
	transform: rotate(180deg);
}

.vk-faq-item__answer {
	overflow: hidden;
}

.vk-faq-item__answer-inner {
	padding-top: clamp(12px, 1.5vw, 20px);
}

.vk-faq-item__answer-inner p {
	margin: 0 0 0.75em;
	font-family: var(--wp--preset--font-family--din-light);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.3;
	color: #000000;
}

.vk-faq-item__answer-inner p:last-child {
	margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
	.vk-faq-item__arrow {
		transition: none;
	}
}
