.custom-feature-boxes,
.jwt-feature-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 16px 0;
	width: 100%;
}

.custom-feature-boxes .feature-box,
.jwt-feature-boxes .feature-box {
	background-color: #f2f2f2;
	border-radius: 10px;
	padding: 12px 16px;
	text-align: right;
	font-weight: 500;
	flex: 1 1 calc(33.333% - 10px);
	min-width: 120px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.custom-feature-boxes .feature-box,
	.jwt-feature-boxes .feature-box {
		flex: 1 1 calc(50% - 10px);
	}
}
