.base-features {
	position: relative;
	z-index: 3;
	margin-top: -80px;
}
.base-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: var(--band-max);
	margin: 0 auto;
	border: 1px solid var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 0 6px rgba(0,0,0,.16);
	background: linear-gradient(95deg, var(--color-primary) 27%, var(--color-secondary) 107%);
}
.base-feature {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 28px 20px;
	text-align: center;
	color: #fff;
}
.base-feature + .base-feature::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 133px;
	background: rgba(255,255,255,.5);
}
.base-feature__icon {
	display: inline-flex;
	height: 70px;
}
.base-feature__icon svg {
	height: 100%;
	width: auto;
}
.base-feature__label {
	font-family: var(--font-sans);
	font-weight: var(--fw-regular);
	font-size: var(--text-md);
	line-height: 32px;
}

@container (max-width: 944px) {
	.base-features__grid { grid-template-columns: repeat(2, 1fr); }
	.base-feature + .base-feature::before { display: none; }
	.base-feature { box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
}
@container (max-width: 512px) {
	.base-features__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.base-features { margin-top: 24px; }
}
