/* SECTION COMMENT CA MARCHE */
.hiw {
	width: 100%;
	background: #fafafa;
	padding: 70px 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	text-align: center;
}

.hiw-wrapper {
	max-width: 1050px;
	margin: auto;
}

.hiw h2 {
	font-size: 24px;
	font-family: 'Open Sans', sans-serif;
	color: #2b2628;
	font-weight: 700;
	margin-bottom: 10px;
}

.hiw-subtitle {
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	color: #2b2628;
	opacity: 0.9;
	margin-bottom: 45px;
}

/* GRID PRINCIPALE */
.hiw-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 35px;
}

.hiw-box {
	background: linear-gradient(180deg, #ffffff 0%, #ffeaea 100%);
	padding: 25px 20px;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hiw-box img {
	width: 90%;
	max-width: 220px;
	margin-bottom: 18px;
	border-radius: 8px;
}

.hiw-box h3 {
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
	color: #e9302a;
	font-weight: 700;
	margin-bottom: 10px;
}

.hiw-box p {
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	color: #2b2628;
	line-height: 1.5;
	max-width: 260px;
	margin: auto;
}

/* RESPONSIVE */
@media ( max-width : 900px) {
	.hiw-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media ( max-width : 600px) {
	.hiw-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	.hiw h2 {
		font-size: 20px;
	}
	.hiw-subtitle {
		font-size: 14px;
	}
	.hiw-box img {
		width: 100%;
	}
}