/* =======================================================================
 * ax-approach — "Our Approach" (Figma 2414-57 desktop / 2414-65 mobile)
 *
 * Desktop: every item is open — bold purple title (Inter) + body, no toggle.
 * Mobile: FAQ-style accordion — 32px toggle circle (purple "+" / green "-"),
 * thin dividers, body slides open on tap.
 *
 * All selectors #top-prefixed to beat Enfold.
 * ===================================================================== */

#top .ax-approach {
	--ax-purple: #444192;
	--ax-green: #00bd87;
	font-family: "Montserrat", sans-serif;
}

#top .ax-approach__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	text-align: left;
	cursor: default;
}

#top .ax-approach__title {
	font-family: "Inter", sans-serif;
	font-size: 29px;
	font-weight: 700;
	line-height: 1.19;
	color: var(--ax-purple);
	transition: color .2s ease;
}

#top .ax-approach__item:hover .ax-approach__title {
	color: #00bd87;
}

/* toggle circle — hidden on desktop (everything is open) */
#top .ax-approach__toggle {
	display: none;
	flex: none;
	width: 32px;
	height: 32px;
	border-radius: 77px;
	background: var(--ax-purple);
	place-items: center;
	transition: background .2s ease;
}

#top .ax-approach__toggle svg {
	width: 12px;
	height: 12px;
}

/* body — always visible on desktop */
#top .ax-approach__body {
	overflow: hidden;
}

#top .ax-approach__body-inner {
	padding-top: 12px;
}

#top .ax-approach__item + .ax-approach__item {
	margin-top: 34px;
}

/* ---------------------------------------------------------------------
 * Mobile — collapsible accordion (FAQ pattern)
 * ------------------------------------------------------------------- */
@media (max-width: 989px) {
	#top .ax-approach__item {
		border-top: 1px solid rgba(0,0,0,.12);
		padding: 18px 0;
	}

	#top .ax-approach__item + .ax-approach__item {
		margin-top: 0;
	}
	
	#top .ax-approach__item:first-child {
		border-top: unset !important;
	}

	#top .ax-approach__head {
		cursor: pointer;
	}

	#top .ax-approach__title {
		font-family: "Montserrat", sans-serif;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.38;
	}

	#top .ax-approach__toggle {
		display: grid;
	}

	/* plus -> minus: hide the vertical stroke when open */
	#top .ax-approach__item.is-open .ax-approach__toggle {
		background: var(--ax-green);
	}

	#top .ax-approach__item.is-open .ax-approach__toggle .ax-approach__v {
		opacity: 0;
	}

	/* collapsed by default; slides open when .is-open */
	#top .ax-approach__body {
		max-height: 0;
		transition: max-height .3s ease;
	}

	#top .ax-approach__item.is-open .ax-approach__body {
		max-height: 600px;
	}

	#top .ax-approach__body-inner {
		padding-top: 14px;
	}

	#top .ax-approach__toggle svg {
		width: 20px;
		height: 20px;
	}
}
