.how-we-work {
	background-color: var(--color-bg-light);
	color: var(--color-text);
	padding: var(--space-8) 0;
}

.how-we-work__inner {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--space-4);
}

.how-we-work__header {
	max-width: 40rem;
	margin-bottom: var(--space-6);
}

.how-we-work__eyebrow {
	margin-bottom: var(--space-3);
}

.how-we-work__heading {
	margin-bottom: var(--space-4);
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 400;
	line-height: 1.08;
	color: var(--color-heading);
}

.how-we-work__intro {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.65;
}

.how-we-work__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-6);
	align-items: stretch;
}

.how-we-work__image {
	min-height: 28rem;
	background-color: #2a2724;
	background-image: url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?auto=format&fit=crop&w=1200&q=70');
	background-size: cover;
	background-position: center;
}

.how-we-work__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.how-we-work__accordion {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #1A1A1A26;
}

.how-we-work__item {
	border-bottom: 1px solid #1A1A1A26;
}

.how-we-work__item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	width: 100%;
	margin: 0;
	padding: var(--space-4) 0;
	border: 0;
	background: transparent;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	color: var(--color-heading);
}

.how-we-work__item-header:hover .how-we-work__item-title {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.how-we-work__item-title {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.15;
}

.how-we-work__item-toggle {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	position: relative;
	color: var(--color-heading);
}

.how-we-work__item-toggle::before,
.how-we-work__item-toggle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1px;
	background-color: currentColor;
	transform: translate(-50%, -50%);
}

.how-we-work__item-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.how-we-work__item.is-open .how-we-work__item-toggle::after {
	opacity: 0;
}

.how-we-work__item-collapse {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.how-we-work__item.is-open .how-we-work__item-collapse {
	grid-template-rows: 1fr;
}

.how-we-work__item-body {
	overflow: hidden;
	min-height: 0;
	padding-bottom: 0;
}

.how-we-work__item.is-open .how-we-work__item-body {
	padding-bottom: var(--space-4);
}

.how-we-work__item-body p {
	margin: 0 0 var(--space-3);
	max-width: 38rem;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-text);
}

.how-we-work__checklist {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.how-we-work__checklist li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-2);
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--color-text);
}

.how-we-work__check {
	flex-shrink: 0;
	margin-top: 0.2em;
	color: var(--color-heading);
}

@media (prefers-reduced-motion: reduce) {
	.how-we-work__item-collapse {
		transition: none;
	}
}

@media (max-width: 900px) {
	.how-we-work__grid {
		grid-template-columns: 1fr;
	}

	.how-we-work__image {
		min-height: 20rem;
	}
}
