.how-we-work {
	display: flex;
	padding: 24px 16px;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	align-self: stretch;
	background-color: var(--how-we-work-background-color, #082543);
}

.how-we-work__main-heading,
.how-we-work__subheading {
	font-family: 'Open Sans', sans-serif;
	padding: 0;
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: calc(28 / 24);
	letter-spacing: 0;
	color: #FFF;
	text-align: center;
}

.how-we-work__subheading {
	font-size: 20px;
	font-weight: 400;
	line-height: calc(24 / 20);
	margin-top: 16px;
}

.how-we-work__features-list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 112px;
	max-width: 1120px;
	margin: 0;
	padding: 24px;
}

.how-we-work__feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	position: relative;
}

.how-we-work__feature-item:not(:last-child):after {
	content: '';
	position: absolute;
	left: calc(50% - 1px);
	bottom: -96px;
	height: 80px;
	width: 2px;
	background-image: linear-gradient(#798DA6 50%, rgba(255,255,255,0) 0%);
	background-position: 0 -2px;
	background-size: 2px 8px;
	background-repeat: repeat-y;
}

.how-we-work__feature-image-wrapper {
	width: 116px;
	height: 116px;
	border-radius: 24px;
	padding: 24px;
	overflow: hidden;
	background-color: #FFF;
	margin: 0;
	box-sizing: border-box;
}

.how-we-work__feature-name,
.how-we-work__feature-description {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: calc(22 / 18);
	letter-spacing: 0;
	text-align: center;
	color: #FFF;
	margin-top: 24px;
}

.how-we-work__feature-description {
	font-size: 16px;
	font-weight: 400;
	line-height: calc(20 / 16);
	margin-top: 8px;
}

/* Admin Styles */

.how-we-work-block {
	position: relative;
}

.how-we-work-block .how-we-work__feature-image-wrapper {
	min-height: 116px;
	min-width: 116px;
}

.how-we-work-block .components-button.is-destructive {
	border: 1px solid #cc1818;
	border-radius: 4px;
	padding: 0 12px;
	margin: 0 !important;
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
}

.how-we-work-block .components-button.is-destructive:hover {
	background-color: #cc1818;
	color: #fff !important;
}

.how-we-work-block.disable-redesign:before {
	content: "This block is only available in the redesign mode.";
	display: block;
	color: #cc1818;
	font-size: 14px;
	padding: 15px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	box-sizing: border-box;
	z-index: 1;
}

@media screen and (min-width: 768px) {

	.how-we-work {
		padding: 80px;
	}

	.how-we-work__main-heading {
		font-size: 28px;
		line-height: calc(32 / 28);
	}

	.how-we-work__features-list {
		column-gap: 20%;
		row-gap: 24px;
		justify-content: center;
		width: 100%;
	}
	
	.how-we-work__feature-item {
		flex: 0 0 20%;
    	max-width: 20%;
	}

	.how-we-work__feature-item:not(:last-child):after {
		top: 57px;
		left: 112.5%;
		height: 2px;
		width: 75%;
		background-image: linear-gradient(to right, #798DA6 50%, rgba(255,255,255,0) 0%);
		background-position: -2px 0;
		background-size: 8px 2px;
		background-repeat: repeat-x;
	}

	.how-we-work__feature-item:nth-child(3n):after {
		display: none;
	}

	.how-we-work__features-list {
		padding: 24px;
	}
}