/* ==========================================================================
   FAQ Section — Home
   ========================================================================== */

.fae-faq__eyebrow {
	margin: 0 0 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	color: #6f6f74;
}

.fae-faq__title {
	max-width: 820px;
	margin: 0;
	font-size: 36px;
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: -0.05em;
}

@media (min-width: 640px) {
	.fae-faq__title {
		font-size: 60px;
	}
}

.fae-faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 860px;
	margin-top: 48px;
}

.fae-faq__item {
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background-color: #0f0f10;
	padding-left: 24px;
	padding-right: 24px;
}

@media (min-width: 640px) {
	.fae-faq__item {
		padding-left: 32px;
		padding-right: 32px;
	}
}

.fae-faq__question-wrap {
	margin: 0;
	font: inherit;
}

.fae-faq__trigger {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 24px;
	padding-bottom: 24px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: #ffffff;
}

@media (min-width: 640px) {
	.fae-faq__trigger {
		font-size: 19px;
	}
}

.fae-faq__trigger:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.fae-faq__icon {
	display: grid;
	flex-shrink: 0;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 9999px;
	border: 1px solid rgba(198, 241, 53, 0.4);
	background-color: rgba(198, 241, 53, 0.1);
	color: #c6f135;
}

.fae-faq__icon-plus,
.fae-faq__icon-minus {
	display: none;
}

.fae-faq__trigger[aria-expanded="false"] .fae-faq__icon-plus {
	display: block;
}

.fae-faq__trigger[aria-expanded="true"] .fae-faq__icon-minus {
	display: block;
}

.fae-faq__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.fae-faq__answer {
	margin: 0;
	padding: 0 0 28px;
	font-size: 16px;
	line-height: 1.6;
	color: #a8a8b0;
}

@media (min-width: 640px) {
	.fae-faq__answer {
		font-size: 17px;
	}
}