/**
 * AAA FAQ Shortcode Styles
 *
 * @package AAA_Templates
 */

/* ──────────────────────────────────────────
   Accordion container
   ────────────────────────────────────────── */
.aaa-faq {
	background: #fff;
	border-radius: 12px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	width: 703px;
	max-width: 100%;
	box-sizing: border-box;
}

/* ──────────────────────────────────────────
   FAQ item
   ────────────────────────────────────────── */
.aaa-faq__item {
	background: #f6f7fa;
	border-radius: 12px;
	overflow: hidden;
}

.aaa-faq__item.is-open {
	border-radius: 20px;
}

/* ──────────────────────────────────────────
   Header (question button)
   ────────────────────────────────────────── */
.aaa-faq__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 24px 20px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	gap: 16px;
	font-family: inherit;
}

.aaa-faq__question {
	font-size: 24px;
	font-weight: 500;
	color: #0f0f0f;
	line-height: 1.4;
	letter-spacing: -0.48px;
	flex: 1;
}

/* ──────────────────────────────────────────
   Toggle icons
   ────────────────────────────────────────── */
.aaa-faq__icon {
	flex-shrink: 0;
	color: #0f0f0f;
}

/* Collapsed: show plus, hide minus */
.aaa-faq__icon--minus {
	display: none;
}

.aaa-faq__icon--plus {
	display: block;
}

/* Expanded: show minus, hide plus */
.aaa-faq__item.is-open .aaa-faq__icon--minus {
	display: block;
}

.aaa-faq__item.is-open .aaa-faq__icon--plus {
	display: none;
}

/* ──────────────────────────────────────────
   Body (answer area)
   ────────────────────────────────────────── */
.aaa-faq__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.aaa-faq__answer {
	padding: 0 20px 24px;
	font-size: 16px;
	font-weight: 400;
	color: #3f3f3f;
	line-height: 1.5;
	letter-spacing: -0.16px;
}

/* ──────────────────────────────────────────
   Responsive
   ────────────────────────────────────────── */
@media (max-width: 768px) {
	.aaa-faq {
		width: 100%;
	}

	.aaa-faq__question {
		font-size: 18px;
	}

	.aaa-faq__header {
		padding: 20px 16px;
	}

	.aaa-faq__answer {
		padding: 0 16px 20px;
		font-size: 15px;
	}
}
