.ecosystem { background: #ffffff; color: #1E1E1E; padding-top: 120px; padding-bottom: 20px; }
.ecosystem .section-header { margin-bottom: 50px; }
.ecosystem .section-header__eyebrow { color: #794332; }
.ecosystem .section-header__headline { color: #154533; }
.ecosystem .section-header__copy { font-size: 17px; max-width: 640px; }

.ecosystem__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 28px;
	padding-bottom: 28px;
}
.ecosystem-word { padding: 32px 32px; }
.ecosystem-word:first-child { padding-left: 0; }
.ecosystem-word:not(:last-child) { border-right: 1px solid rgba(0, 0, 0, 0.1); }
.ecosystem-word__word { display: block; font-family: var(--font-serif); font-size: 24px; color: #191919; margin-bottom: 14px; }
.ecosystem-word__desc { color: #595959; font-size: 14px; line-height: 1.6; }

.ecosystem__strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 32px;
	padding-top: 20px;
}
.ecosystem__strip-item { font-size: 13px; color: #6b6b6b; text-transform: uppercase; letter-spacing: 1px; position: relative; }
.ecosystem__strip-item:not(:last-child)::after { content: '\2192'; margin-left: 32px; color: #6b6b6b; }

@media (max-width: 900px) {
	.ecosystem__grid { grid-template-columns: repeat(2, 1fr); }
	.ecosystem-word:nth-child(2n+1) { padding-left: 0; }
	.ecosystem-word:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
	.ecosystem__grid { grid-template-columns: 1fr; }
	.ecosystem-word { padding-left: 0 !important; border-right: none !important; }
}
@media (max-width: 640px) {
	.ecosystem { padding-top: 40px; }
	.ecosystem .section-header { margin-bottom: 40px; }
	.ecosystem__grid { padding-top: 0; padding-bottom: 0; }
	.ecosystem-word { padding: 20px 0; }
	.ecosystem-word:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

	.ecosystem__strip {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 8px;
		scrollbar-width: none;
	}
	.ecosystem__strip::-webkit-scrollbar { display: none; }
	.ecosystem__strip-item { flex-shrink: 0; scroll-snap-align: start; }
}
