.peplynx-feature {
	overflow: hidden;
}
.feature-grid {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	width: 100%;
	padding-bottom: 1rem;
}
.feature-item {
	border-radius: 1.5rem;
	border: 1px solid #d4d4d4;
	background: #fff;
	padding: 2rem 1rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	min-width: calc(100vw - 3rem - 2rem);
	min-height: 0;
}
.feature-item:hover {
	border-color: var(--color-primary);
	background-color: var(--color-primary-bg);
}
.feature-item-title {
	margin-bottom: 1.25rem;
	color: #000;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 111%;
	position: relative;
	z-index: 2;
}
.feature-item-text {
	color: var(--color-text);
	font-size: 1.125rem;
	line-height: 140%;
	position: relative;
	z-index: 2;
	margin: 0;
}
.feature-item--highlight {
	background-color: #446e89;
	border-color: var(--color-primary);
	color: #fff;
}
.feature-item--highlight .feature-item-title,
.feature-item--highlight .feature-item-text {
	color: #fff;
}
@media screen and (min-width: 768px) {
	.feature-grid {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 1.3rem;
		padding-bottom: 0;
	}
	.feature-grid > :nth-child(2),
	.feature-grid > :nth-child(3) {
		grid-column: span 3;
	}
	.feature-grid > :nth-child(1),
	.feature-grid > :nth-child(4) {
		grid-column: span 2;
	}
	.feature-item {
		width: 100%;
		min-width: 0;
		min-height: 260px;
		padding: 2rem;
	}
}
