/* Home section 13 — FAQ (Figma node 1:8030) */

.faq {
	background: var( --color-bg-light );
	padding: 40px 20px;
}

.faq__blob {
	position: absolute;
	top: -162px;
	right: -500px;
	width: 816px;
	height: 816px;
	pointer-events: none;
	z-index: 0;
}

.faq__blob img {
	width: 100%;
	height: 100%;
}

.faq__inner,
body .faq__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.faq__heading,
body .faq__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	max-width: 1240px;
}

.faq__eyebrow p {
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	color: var( --color-orange );
}

.faq__title {
	font-weight: 700;
	font-size: 40px;
	line-height: normal;
	color: var( --color-navy );
}

.faq__list {
	width: 100%;
	max-width: 1198px;
}

.faq__item,
.wp-block-details.faq__item {
	border-bottom: 1px solid rgba( 221, 192, 184, 0.3 );
}

.faq__item:first-child,
.wp-block-details.faq__item:first-child {
	border-top: none;
}

.faq__question,
.wp-block-details.faq__item > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	list-style: none;
	padding: 16px 0 17px;
	cursor: pointer;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: -0.2px;
	line-height: 28px;
	color: var( --color-navy );
}

.faq__question::-webkit-details-marker,
.wp-block-details.faq__item > summary::-webkit-details-marker {
	display: none;
}

.faq__icon {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	background: center / contain no-repeat;
	background-image: url( '../../images/section-13-faq/icon-plus.svg' );
}

.faq__item[open] .faq__icon {
	background-image: url( '../../images/section-13-faq/icon-minus.svg' );
}

.wp-block-details.faq__item > summary::after {
	content: '';
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	background: center / contain no-repeat;
	background-image: url( '../../images/section-13-faq/icon-plus.svg' );
}

.wp-block-details.faq__item[open] > summary::after {
	background-image: url( '../../images/section-13-faq/icon-minus.svg' );
}

.faq__answer {
	padding: 0 0 17px;
	max-width: 900px;
}

.faq__answer p,
.wp-block-details.faq__item > p {
	font-weight: 400;
	font-size: 16px;
	line-height: normal;
	color: var( --color-text-body );
	padding: 0 0 17px;
	max-width: 900px;
	margin: 0;
}

@media ( max-width: 640px ) {
	.faq__title {
		font-size: 28px;
	}

	.faq__question {
		font-size: 16px;
		line-height: 24px;
	}

	.faq__blob {
		width: 500px;
		height: 500px;
		right: -300px;
	}
}
