/* ============================================================
   MARCH — FAQ Accordion CSS
   ============================================================ */

.march-faq {
	padding: clamp(48px, 6vw, 80px) 0;
}

/* ── Header ───────────────────────────────────────────────── */
.march-faq__header {
	margin-bottom: clamp(24px, 3vw, 36px);
}

.march-faq__header--divider {
	border-top: 2px solid var(--color-black, #111);
	padding-top: clamp(20px, 2.5vw, 32px);
}

.march-faq__section-title {
	font-family: var(--font-primary, 'Outfit', sans-serif);
	font-size: clamp(20px, 2.5vw, 28px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: var(--color-black, #111);
	margin: 0 0 8px;
	line-height: 1.1;
}

.march-faq__section-sub {
	font-family: var(--font-primary, 'Outfit', sans-serif);
	font-size: 14px;
	color: var(--color-gray-400, #999);
	margin: 0;
}

/* ── List ─────────────────────────────────────────────────── */
.march-faq__list {
	width: 100%;
}

/* ── Item ─────────────────────────────────────────────────── */
.march-faq__item {
	border-bottom: 1px solid var(--color-gray-200, #e5e5e5);
}

.march-faq__item:first-child {
	border-top: 1px solid var(--color-gray-200, #e5e5e5);
}

/* ── Question Button ──────────────────────────────────────── */
.march-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--color-black, #111);
	transition: opacity 0.2s;
}

.march-faq__question:hover {
	opacity: 0.7;
}

.march-faq__question-text {
	font-family: var(--font-primary, 'Outfit', sans-serif);
	font-size: clamp(15px, 1.6vw, 17px);
	font-weight: 500;
	color: var(--color-black, #111);
	line-height: 1.4;
}

/* ── Icon (+/−) ───────────────────────────────────────────── */
.march-faq__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--faq-accent, #111);
	transition: transform 0.3s ease;
}

.march-faq__icon-v {
	transform-origin: center;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Open state: hide the vertical line (− instead of +) */
.march-faq__item--open .march-faq__icon-v {
	transform: scaleY(0);
	opacity: 0;
}

.march-faq__item--open .march-faq__question {
	opacity: 1;
}

/* ── Answer Panel ─────────────────────────────────────────── */
.march-faq__answer {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s ease;
}

.march-faq__answer[hidden] {
	display: block !important; /* Override hidden attr so CSS transition works */
	max-height: 0;
}

.march-faq__item--open .march-faq__answer {
	max-height: 600px; /* Large enough for any answer */
}

.march-faq__answer-inner {
	padding: 0 48px 24px 0;
	font-family: var(--font-primary, 'Outfit', sans-serif);
	font-size: clamp(14px, 1.5vw, 16px);
	font-weight: 400;
	line-height: 1.7;
	color: var(--color-gray-700, #444);
}

.march-faq__answer-inner p {
	margin: 0 0 1em;
}

.march-faq__answer-inner p:last-child {
	margin-bottom: 0;
}

.march-faq__answer-inner a {
	color: var(--color-black, #111);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.march-faq__answer-inner ul,
.march-faq__answer-inner ol {
	padding-left: 1.4em;
	margin-bottom: 1em;
}

.march-faq__answer-inner li {
	margin-bottom: 0.4em;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
	.march-faq__question {
		padding: 16px 0;
	}

	.march-faq__answer-inner {
		padding-right: 16px;
	}
}
