.gftm-faqs {
	--gftm-faq-oxford: #0d1c2b;
	--gftm-faq-gold: #a86315;
	--gftm-faq-gold-light: #c68a3d;
	--gftm-faq-platinum: #acb9bd;
	width: 100%;
}

.gftm-faqs *,
.gftm-faqs *::before,
.gftm-faqs *::after {
	box-sizing: border-box;
}

.gftm-faq {
	margin: 0 0 14px;
	border: 1px solid rgb(255 255 255 / 12%);
	background: rgb(255 255 255 / 3%);
	transition:
		border-color 240ms ease,
		background-color 240ms ease;
}

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

.gftm-faq[open] {
	border-color: rgb(168 99 21 / 58%);
	background: rgb(255 255 255 / 5%);
}

.gftm-faq summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 28px;
	gap: 20px;
	align-items: center;
	padding: 22px 26px;
	color: #fff;
	font: 600 16px/1.45 Cinzel, Georgia, serif;
	letter-spacing: 0.02em;
	list-style: none;
	cursor: pointer;
}

.gftm-faq summary::-webkit-details-marker {
	display: none;
}

.gftm-faq summary:focus-visible {
	outline: 2px solid var(--gftm-faq-gold-light);
	outline-offset: -4px;
}

.gftm-faq summary i {
	position: relative;
	width: 28px;
	height: 28px;
}

.gftm-faq summary i::before,
.gftm-faq summary i::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 1px;
	background: var(--gftm-faq-gold-light);
	transform: translate(-50%, -50%);
	transition: transform 240ms ease;
}

.gftm-faq summary i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.gftm-faq[open] summary i::after {
	transform: translate(-50%, -50%) rotate(0);
}

.gftm-faq__answer {
	max-width: 1080px;
	padding: 0 72px 24px 26px;
	color: var(--gftm-faq-platinum);
	font: 300 14.5px/1.75 Montserrat, sans-serif;
}

.gftm-faq__answer p {
	margin: 0;
}

.gftm-faqs__more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: max-content;
	max-width: 100%;
	margin: 22px auto 0;
	padding: 15px 30px;
	border: 1px solid rgb(255 255 255 / 25%);
	border-radius: 0;
	background: transparent;
	color: #fff;
	font: 500 12px/1 Montserrat, sans-serif;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background-color 240ms ease,
		border-color 240ms ease,
		color 240ms ease;
}

.gftm-faqs__more:hover,
.gftm-faqs__more:focus-visible {
	border-color: var(--gftm-faq-gold);
	background: var(--gftm-faq-gold);
	color: #fff;
	outline: 0;
}

.gftm-faqs__more i {
	font: 300 17px/1 Montserrat, sans-serif;
	transition: transform 240ms ease;
}

.gftm-faqs__more[aria-expanded="true"] i {
	transform: rotate(45deg);
}

.gftm-faqs__note {
	max-width: 760px;
	margin: 24px auto 0;
	color: var(--gftm-faq-platinum);
	font: 300 11.5px/1.55 Montserrat, sans-serif;
	text-align: center;
}

@media (max-width: 640px) {
	.gftm-faq summary {
		gap: 14px;
		padding: 19px 18px;
		font-size: 14px;
	}

	.gftm-faq__answer {
		padding: 0 52px 21px 18px;
		font-size: 13.5px;
	}

	.gftm-faqs__more {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gftm-faq,
	.gftm-faq summary i::before,
	.gftm-faq summary i::after,
	.gftm-faqs__more,
	.gftm-faqs__more i {
		transition: none;
	}
}
