/* ==========================================================
   ADITI PROMOTERS
   FAQ SECTION
   ========================================================== */

.faq {
	padding: 120px 0;
	background: #f8f7f3;
}

.faq .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 32px;
}


/* ==========================================================
   HEADER
   ========================================================== */

.faq__header {
	max-width: 820px;
	margin-bottom: 64px;
}

.faq__eyebrow {
	display: block;
	margin-bottom: 18px;

	font-family: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.22em;
	text-transform: uppercase;

	color: #c58a18;
}

.faq__title {
	max-width: 760px;
	margin: 0 0 24px;

	font-family: inherit;
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.035em;

	color: #152f63;
}

.faq__title span {
	display: inline;
}

.faq__description {
	max-width: 720px;
	margin: 0;

	font-family: inherit;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.75;

	color: #64718a;
}


/* ==========================================================
   FAQ LIST
   ========================================================== */

.faq__list {
	width: 100%;
	border-top: 1px solid rgba(21, 47, 99, 0.16);
}

.faq-item {
	margin: 0;
	border-bottom: 1px solid rgba(21, 47, 99, 0.16);
	background: transparent;
}

.faq-item[open] {
	background: rgba(255, 255, 255, 0.45);
}


/* ==========================================================
   QUESTION
   ========================================================== */

.faq-item__question {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;

	width: 100%;
	padding: 30px 4px;

	cursor: pointer;

	list-style: none;

	font-family: inherit;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.45;

	color: #152f63;

	transition:
		color 0.25s ease,
		padding 0.25s ease;
}

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

.faq-item__question::marker {
	display: none;
}

.faq-item__question:hover {
	color: #c58a18;
}

.faq-item__question span {
	flex: 1;
}


/* ==========================================================
   ICON
   ========================================================== */

.faq-item__question i {
	flex: 0 0 22px;

	width: 22px;
	height: 22px;

	color: #c58a18;

	transition:
		transform 0.3s ease,
		color 0.25s ease;
}

.faq-item[open] .faq-item__question i {
	transform: rotate(45deg);
}

.faq-item[open] .faq-item__question {
	color: #152f63;
}


/* ==========================================================
   ANSWER
   ========================================================== */

.faq-item__answer {
	max-width: 820px;
	padding: 0 70px 32px 4px;
}

.faq-item__answer p {
	margin: 0;

	font-family: inherit;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.8;

	color: #64718a;
}


/* ==========================================================
   FOCUS ACCESSIBILITY
   ========================================================== */

.faq-item__question:focus-visible {
	outline: 2px solid #c58a18;
	outline-offset: 6px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

	.faq {
		padding: 96px 0;
	}

	.faq .container {
		padding: 0 28px;
	}

	.faq__header {
		margin-bottom: 52px;
	}

	.faq__title {
		font-size: clamp(40px, 6vw, 56px);
	}

	.faq-item__question {
		padding: 28px 2px;
		font-size: 20px;
	}

	.faq-item__answer {
		padding-right: 56px;
	}
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.faq {
		padding: 76px 0;
	}

	.faq .container {
		padding: 0 20px;
	}

	.faq__header {
		margin-bottom: 42px;
	}

	.faq__eyebrow {
		margin-bottom: 14px;
		font-size: 11px;
		letter-spacing: 0.18em;
	}

	.faq__title {
		margin-bottom: 20px;

		font-size: clamp(34px, 9vw, 44px);
		line-height: 1.08;
		letter-spacing: -0.03em;
	}

	.faq__description {
		font-size: 16px;
		line-height: 1.7;
	}

	.faq-item__question {
		gap: 20px;
		padding: 23px 0;

		font-size: 18px;
		line-height: 1.45;
	}

	.faq-item__question i {
		flex-basis: 19px;
		width: 19px;
		height: 19px;
	}

	.faq-item__answer {
		padding: 0 28px 25px 0;
	}

	.faq-item__answer p {
		font-size: 15.5px;
		line-height: 1.75;
	}
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

	.faq {
		padding: 64px 0;
	}

	.faq .container {
		padding: 0 18px;
	}

	.faq__header {
		margin-bottom: 36px;
	}

	.faq__title {
		font-size: 34px;
	}

	.faq__description {
		font-size: 15.5px;
	}

	.faq-item__question {
		padding: 21px 0;
		font-size: 17px;
	}

	.faq-item__answer {
		padding-bottom: 23px;
	}

	.faq-item__answer p {
		font-size: 15px;
	}
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.faq-item__question,
	.faq-item__question i {
		transition: none;
	}
}