/* =================================================
   FAQ Accordion
   ================================================= */

.faq-accordion {
	clear: both;
	float: left;
	padding: 60px 0 80px;
	width: 100%;
	background: #ffffff;
}

/* Header */
.faq-accordion__header {
	text-align: center;
	margin-bottom: 40px;
}

.faq-accordion__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #e8642c; /* orange accent — matches theme */
	margin-bottom: 0px;
	padding-bottom: 10px;
}

.faq-accordion__heading {
	font-weight: 900;
	font-size: 45.74px;
	line-height: 47.26px;
	letter-spacing: 0.79px;
	text-align: center;
	text-transform: uppercase;
	color: #0F2C64; /* dark navy — matches theme */
	margin: 0;
}

/* List */
.faq-accordion__list {
	border: 1px solid #d9dde6;
	overflow: hidden;
}

/* Item */
.faq-accordion__item {
	border-bottom: 1px solid #d9dde6;
}

.faq-accordion__item:last-child {
	border-bottom: none;
}

/* Question / trigger button */
.faq-accordion__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 22px 28px;
	background: #fff;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 24px;
	font-weight: 900;
	color: #0F2C64;
	line-height: 1.35;
	transition: background 0.15s ease;
}

.faq-accordion__question:hover {
	background: #ffffff;
}

/* Icon — +.png (closed) / x.png (open) */
.faq-accordion__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 32px;
	height: 32px;
}

.faq-accordion__icon-plus,
.faq-accordion__icon-x {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Default (closed): show +, hide X */
.faq-accordion__icon-plus {
	opacity: 1;
	transform: rotate(0deg);
}

.faq-accordion__icon-x {
	opacity: 0;
	transform: rotate(-45deg);
}

/* Open: show X, hide + (with rotate) */
.faq-accordion__item.is-open .faq-accordion__icon-plus {
	opacity: 0;
	transform: rotate(45deg);
}

.faq-accordion__item.is-open .faq-accordion__icon-x {
	opacity: 1;
	transform: rotate(0deg);
}

/* Answer panel */

.faq-accordion__answer[hidden] {
	display: none;
}

.faq-accordion__answer-inner {
	padding: 4px 28px 28px;
	font-size: 18px;
	line-height: 28px;
	color: #555759;
	font-weight: 400;
}

.faq-accordion__answer-inner p {
	margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
	.faq-accordion {
		padding: 40px 0 60px;
	}

	.faq-accordion__question {
		padding: 18px 20px;
		font-size: 16px;
	}

	.faq-accordion__answer-inner {
		padding: 4px 20px 24px;
	}
}
