/* ============================================================
   CEA Theme – Widget FAQ (Elementor)
   ============================================================ */

.cea-faq {
	padding: 64px 0;
	background: #FAFAFA;
}

.cea-faq__container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 64px;
	width: 100%;
	padding-inline: 24px;
}

.cea-faq__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	flex: 0 0 500px;
	max-width: 500px;
}

.cea-faq__title {
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
	color: #254666;
	margin: 0;
}

.cea-faq__subtitle {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	color: #595959;
	margin: 8px 0 0;
}

.cea-faq__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	color: #066EAF;
	text-decoration: none;
}

.cea-faq__link:hover { text-decoration: underline; }
.cea-faq__link svg { flex-shrink: 0; }
.cea-faq__link--bottom { display: none; }

.cea-faq__list {
	display: flex;
	flex-direction: column;
	flex: 1 1 320px;
	min-width: 280px;
}

.cea-faq__item {
	border-bottom: 1px solid #D4D4D8;
	padding: 8px;
}

.cea-faq__item:last-child { border-bottom: none; }

.cea-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 12px 0;
	background: transparent;
	border: none;
	text-align: left;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	color: #254666;
}

.cea-faq__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	font-size: 16px;
	transition: transform .2s ease;
}

.cea-faq__chevron svg { width: 1em; height: 1em; fill: currentColor; }

.cea-faq__item.is-open .cea-faq__chevron { transform: rotate(180deg); }

.cea-faq__answer {
	display: none;
	padding: 0 0 12px;
}

.cea-faq__item.is-open .cea-faq__answer { display: block; }

.cea-faq__answer p {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #71717A;
}

/* ── Breakpoint mobile ───────────────────────────────────────── */

@media (max-width: 1024px) {
	.cea-faq { padding: 32px 0; }
	.cea-faq__container { flex-direction: column; gap: 24px; padding-inline: 16px; }

	.cea-faq__header { flex-basis: auto; max-width: none; gap: 8px; }

	.cea-faq__title { font-size: 26px; line-height: 32px; }

	.cea-faq__link--top { display: none; }
	.cea-faq__link--bottom { display: inline-flex; align-self: center; margin-top: 8px; }

	.cea-faq__list { gap: 16px; width: 100%; }

	.cea-faq__item { padding: 0; padding-bottom: 16px; }

	.cea-faq__question { padding: 0; }
}
