/* CCH — FAQ accordion (core/details)
   Narrow centered list, tight stack, white background, lift on open. */

.wp-block-details {
	max-width: 640px;
	margin: 0 auto;
	background: #ffffff;
	border: none;
	border-top: 1px solid #e5e5e5;
	border-radius: 0;
}
.wp-block-details:last-of-type {
	border-bottom: 1px solid #e5e5e5;
}
.wp-block-details summary {
	cursor: pointer;
	padding: 1.25rem 3rem 1.25rem 1.5rem;
	font-weight: 700;
	font-size: 1rem;
	list-style: none;
	position: relative;
	background: #ffffff;
	color: #1e2330;
	transition: background 150ms ease, color 150ms ease;
}
.wp-block-details summary::-webkit-details-marker { display: none; }
.wp-block-details summary:hover { background: #fafafa; }
.wp-block-details summary::after {
	content: "+";
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1;
	color: #1e2330;
}
.wp-block-details[open] {
	position: relative;
	z-index: 1;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px #e5e5e5;
}
.wp-block-details[open] summary {
	background: #1e2330;
	color: #ffffff;
}
.wp-block-details[open] summary::after {
	content: "−";
	color: #ffffff;
}
.wp-block-details > *:not(summary) {
	padding: 1.25rem 1.5rem;
	margin: 0;
	color: #1e2330;
}
