/* FAQs: accordion styling for the [faqs] shortcode.
   Self-contained -- literal color values, no dependency on any theme's CSS
   custom properties, and no dependency on any other plugin's body class. */

.abf-faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.abf-faq-item {
	background: #ffffff;
	border: 2px solid #eadfcd;
	border-radius: 18px;
	box-shadow: 0 4px 16px rgba(40, 30, 20, 0.06);
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.abf-faq-item.open {
	border-color: #c3d2dc;
}

.abf-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	padding: 22px 24px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #4E4034;
	transition: color 0.2s ease;
}

.abf-faq-icon {
	flex: 0 0 auto;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	color: #c9a465;
}

.abf-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	font-weight: 500;
}

.abf-faq-a-inner {
	padding: 0 24px 22px;
	color: #9c8f82;
	font-size: 0.97rem;
	line-height: 1.7;
}

.abf-faq-item.open .abf-faq-a {
	max-height: 480px;
}
