.home-why {
	width: 100%;
	padding: 70px 0;
	font-family: "Monserrat", Sans-serif;
}

.home-why__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.home-why__title {
	font-size: 42px;
	font-weight: 300;
	text-transform: uppercase;
	color: #2F2F2F;
	margin: 0 0 20px;
}

.home-why__subtitle {
	font-size: 16px;
	line-height: 29px;
	color: #616262;
	margin: 0 auto 50px;
	max-width: 1100px;
}

.home-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 40px;
}

.home-why__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.home-why__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-why__icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* SVG icons: masked shape painted with the brand accent color, ignoring
   whatever fill is baked into the uploaded file (see hotel_suite_print_
   design_tokens() for where --hs-color-primary comes from). */
.home-why__icon--svg {
	width: 80px;
	height: 80px;
	background: var( --hs-color-primary, #a8875e );
	-webkit-mask: var( --home-why-icon-svg ) center / contain no-repeat;
	mask: var( --home-why-icon-svg ) center / contain no-repeat;
}

/* Icon-font choice: a glyph colored with the brand accent, same idea as the
   masked-SVG upload case above. */
.home-why__icon.hs-font-icon {
	color: var( --hs-color-primary, #a8875e );
	font-size: 32px;
}

.home-why__box-title {
	font-size: 18px;
	font-weight: 400;
	color: #2F2F2F;
	margin: 0;
}

.home-why__box-text {
	font-size: 14px;
	line-height: 1.6;
	color: #8a8a8a;
	margin: 0;
	max-width: 260px;
}

@media (max-width: 860px) {
	.home-why__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 24px;
	}
}

@media (max-width: 520px) {
	.home-why {
		padding: 40px 0;
	}
	.home-why__grid {
		grid-template-columns: 1fr;
	}
}
