.faq-accordion {
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.faq-item {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 2px 5px rgba(15, 23, 42, 0.08);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item.is-open {
	border-color: #d0d5dd;
	box-shadow: 0 3px 6px rgba(15, 23, 42, 0.12);
	transform: translateY(-2px);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	color: #0f172a;
	margin: 0;
	padding: 15px 22px;
	font-size: 15px;
	font-weight: 600;
	border: 0;
	cursor: pointer;
	gap: 1rem;
	text-align: left;
	transition: color 0.2s ease;
}

.faq-question::after {
	content: '';
	width: 8px;
	height: 8px;
	border: 2px solid currentColor;
	border-left: 0;
	border-top: 0;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question::after {
	transform: rotate(225deg);
}

.faq-question:focus-visible {
	outline: 2px solid #2563eb;
	outline-offset: 4px;
}

.faq-question-text {
	flex: 1;
	line-height: 1.4;
}

.faq-answer {
	display: none;
	padding: 10px 20px 20px;
	background: transparent;
	color: #475467;
	font-size: 1rem;
	line-height: 1.65;
	border-top: 1px solid #f1f5f9;
}

.faq-item.is-open .faq-answer {
	display: block;
}

.faq-answer p {
	margin-top: 0;
	margin-bottom: 1rem;
}

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

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 0;
    padding-bottom: 4px;
}

.faq-drag-handle {
	display: none;
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background-image: radial-gradient(circle, #94a3b8 20%, transparent 22%);
	background-size: 6px 6px;
	background-position: center;
	opacity: 0.85;
}

.faq-accordion--reorderable .faq-drag-handle {
	display: inline-flex;
	cursor: grab;
}

.faq-accordion--reorderable .faq-drag-handle:active {
	cursor: grabbing;
}

.faq-item-placeholder {
	border: 2px dashed #cbd5f5;
	border-radius: 12px;
	min-height: 60px;
	margin-bottom: 10px;
	background: rgba(241, 245, 249, 0.65);
}

.faq-accordion--saving .faq-item {
	opacity: 0.7;
}

@media (max-width: 640px) {
	.faq-accordion {
		padding: 1.5rem 0.75rem;
	}

	.faq-question,
	.faq-answer {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.faq-question {
		font-size: 1rem;
	}
}
