.ltud-faqs {
	--ltud-faq-border: #e3e8ed;
	--ltud-faq-soft: #f7f9fb;
	--ltud-faq-text: #1f2a33;
	--ltud-faq-muted: #66727d;
	--ltud-faq-accent: #b7663a;
	--ltud-faq-accent-dark: #8f4726;
	max-width: 1100px;
	margin: 0 auto;
	color: var(--ltud-faq-text);
}

.ltud-faq-search-wrap {
	background: #fff;
	border: 1px solid var(--ltud-faq-border);
	border-radius: 18px;
	box-shadow: 0 12px 34px rgba(18, 31, 42, 0.06);
	padding: 18px;
	margin: 0 0 22px;
}

.ltud-faq-search {
	width: 100%;
	min-height: 48px;
	border: 1px solid #d5dde5 !important;
	border-radius: 999px !important;
	background: #fbfcfd !important;
	padding: 0 18px !important;
	font-size: 16px !important;
	line-height: 48px !important;
	box-shadow: none !important;
	outline: none;
}

.ltud-faq-search:focus {
	border-color: var(--ltud-faq-accent) !important;
	box-shadow: 0 0 0 3px rgba(183, 102, 58, 0.13) !important;
}

.ltud-faq-search-count {
	margin-top: 9px;
	font-size: 13px;
	color: var(--ltud-faq-muted);
}

.ltud-faq-list {
	display: grid;
	gap: 12px;
}

.ltud-faq-item {
	background: #fff;
	border: 1px solid var(--ltud-faq-border);
	border-radius: 18px;
	box-shadow: 0 12px 34px rgba(18, 31, 42, 0.055);
	overflow: hidden;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ltud-faq-item:hover {
	border-color: #d5dde3;
	box-shadow: 0 16px 44px rgba(18, 31, 42, 0.075);
}

.ltud-faq-question {
	appearance: none;
	border: 0;
	background: linear-gradient(180deg, #fff 0%, #fcfdfd 100%);
	width: 100%;
	padding: 18px 20px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 12px;
	align-items: center;
	text-align: left;
	cursor: pointer;
	color: var(--ltud-faq-text);
}

.ltud-faq-question-text {
	font-size: 17px;
	font-weight: 750;
	line-height: 1.35;
}

.ltud-faq-category {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--ltud-faq-accent-dark);
	background: #fff4ed;
	border: 1px solid #f1d6c5;
	border-radius: 999px;
	padding: 5px 10px;
	white-space: nowrap;
}

.ltud-faq-icon {
	position: relative;
	width: 28px;
	height: 28px;
	border: 1px solid #d9e0e7;
	border-radius: 50%;
	background: #fff;
	flex: 0 0 auto;
}

.ltud-faq-icon:before,
.ltud-faq-icon:after {
	content: '';
	position: absolute;
	background: #4e5c67;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.18s ease;
}

.ltud-faq-icon:before {
	width: 12px;
	height: 2px;
}

.ltud-faq-icon:after {
	width: 2px;
	height: 12px;
}

.ltud-faq-item.is-open .ltud-faq-icon:after,
.ltud-faq-item.is-search-match .ltud-faq-icon:after {
	opacity: 0;
}

.ltud-faq-answer-wrap {
	display: none;
	border-top: 1px solid var(--ltud-faq-border);
	background: #fff;
}

.ltud-faq-item.is-open .ltud-faq-answer-wrap,
.ltud-faqs.is-searching .ltud-faq-item.is-search-match .ltud-faq-answer-wrap {
	display: block;
}

.ltud-faq-answer {
	padding: 18px 20px 20px;
	font-size: 16px;
	line-height: 1.65;
	color: #2d3943;
}

.ltud-faq-answer > :first-child {
	margin-top: 0;
}

.ltud-faq-answer > :last-child {
	margin-bottom: 0;
}

.ltud-faq-answer a {
	color: var(--ltud-faq-accent-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ltud-faq-highlight {
	background: #fff3a3;
	color: inherit;
	padding: 0 2px;
	border-radius: 2px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.ltud-faq-no-results,
.ltud-faqs-empty {
	background: #fff;
	border: 1px solid var(--ltud-faq-border);
	border-radius: 16px;
	padding: 18px 20px;
	color: var(--ltud-faq-muted);
	box-shadow: 0 10px 30px rgba(18, 31, 42, 0.04);
}

.ltud-faq-item[hidden],
.ltud-faq-no-results[hidden] {
	display: none !important;
}

@media (max-width: 700px) {
	.ltud-faq-search-wrap {
		padding: 14px;
		border-radius: 15px;
	}

	.ltud-faq-question {
		grid-template-columns: minmax(0, 1fr) auto;
		padding: 16px;
	}

	.ltud-faq-category {
		grid-column: 1 / -1;
		justify-self: start;
		order: 3;
	}

	.ltud-faq-question-text {
		font-size: 16px;
	}

	.ltud-faq-answer {
		font-size: 15px;
		padding: 16px;
	}
}

.ltud-faq-item.is-direct-link-target {
	outline: 3px solid rgba(183, 102, 58, 0.32);
	outline-offset: 3px;
}

.ltud-faq-item[id] {
	scroll-margin-top: 110px;
}
