.spcp-features {
	--spcp-name-color: #aa9263;
	--spcp-text-color: #292725;
	margin: 0 0 clamp(20px, 2.5vw, 30px);
	padding: clamp(8px, 1.5vw, 16px) 0;
}

.spcp-features__title {
	margin: 0 0 20px;
	color: var(--spcp-text-color);
	font-size: clamp(22px, 2vw, 28px);
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
}

.spcp-features__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: clamp(22px, 3vw, 36px);
	align-items: start;
	margin: 0;
	padding: 0;
	list-style: none;
}

.spcp-feature {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 0 0 20%;
	min-width: 0;
	box-sizing: border-box;
	padding: 0 clamp(8px, 1.5vw, 22px);
	text-align: center;
	flex-direction: column;
}

.spcp-feature__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: 0 auto 13px;
	color: #171717;
}

.spcp-feature__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 58px;
	max-height: 58px;
}

.spcp-feature__name {
	display: block;
	color: var(--spcp-name-color);
	font-size: clamp(20px, 2vw, 25px);
	font-style: italic;
	font-weight: 400;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.spcp-feature__description {
	display: block;
	margin-top: 7px;
	color: var(--spcp-text-color);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.spcp-features--animated:not(.spcp-features--visible) .spcp-feature__icon {
	opacity: 0;
	transform: translateY(12px) scale(0.88);
}

.spcp-features--animated.spcp-features--visible .spcp-feature__icon {
	animation: spcp-icon-reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: var(--spcp-animation-delay, 0ms);
}

@keyframes spcp-icon-reveal {
	0% {
		opacity: 0;
		filter: blur(3px);
		transform: translateY(12px) scale(0.88);
	}

	65% {
		opacity: 1;
		filter: blur(0);
		transform: translateY(-2px) scale(1.04);
	}

	100% {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 640px) {
	.spcp-features {
		margin-bottom: 22px;
		padding: 8px 0;
	}

	.spcp-features__grid {
		row-gap: 26px;
	}

	.spcp-feature {
		flex-basis: 33.3333%;
		padding-right: 5px;
		padding-left: 5px;
	}

	.spcp-feature__icon {
		width: 50px;
		height: 50px;
		margin: 0 auto 11px;
	}

	.spcp-feature__icon svg {
		max-width: 50px;
		max-height: 50px;
	}

	.spcp-feature__name {
		font-size: 19px;
	}

	.spcp-feature__description {
		margin-top: 6px;
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.spcp-features--animated:not(.spcp-features--visible) .spcp-feature__icon {
		opacity: 1;
		transform: none;
	}

	.spcp-features--animated.spcp-features--visible .spcp-feature__icon {
		animation: none;
	}
}
