/**
 * FAQ accordion — native <details>, a white rounded card per question. Only
 * one disclosure indicator: the browser's own native <summary> marker on the
 * left (color inherits from .df-faq-question). A custom chevron on the right
 * was tried first but doubled up with the native marker instead of replacing
 * it, so this drops the custom one rather than fight two-marker rendering.
 */
.df-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.df-faq-item {
	background: var(--wp--preset--color--base, #fff);
	border: 1px solid #00000018;
	border-radius: 12px;
	transition: box-shadow 0.15s ease;
}

.df-faq-item[open] {
	box-shadow: 0 4px 12px -4px rgba(0, 0, 88, 0.15);
	border-color: var(--wp--preset--color--accent-1, #0058bb);
}

.df-faq-question {
	cursor: pointer;
	padding: 1rem 1.25rem;
	font-weight: 700;
	color: var(--wp--preset--color--contrast, #002855);
}

.df-faq-answer {
	padding: 0 1.25rem 1.25rem;
	line-height: 1.7;
}

.df-faq-answer p {
	margin: 0 0 0.75rem;
}

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

.df-faq-answer ul {
	margin: 0.5rem 0 0.75rem;
	line-height: 1.7;
}
