.cmg-needs-icons {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 1rem;
}

.cmg-needs-icons-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem 1rem;
	justify-items: center;
	align-items: start;
}

.cmg-needs-icon-item {
	text-align: center;
}

.cmg-needs-icon-link {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.cmg-needs-icon-link:hover,
.cmg-needs-icon-link:focus {
	transform: translateY(-3px);
	text-decoration: none;
}

.cmg-needs-icon-image-wrap {
	width: 135px;
	height: 135px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	background: #f3f4f6;
	margin-bottom: 0.75rem;
}

.cmg-needs-icon-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cmg-needs-icon-label {
	font-size: 1rem;
	font-weight: inherit;
	line-height: 1.35;
}

.cmg-needs-icon-item:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.cmg-needs-prompt {
	display: block;
	width: 100%;
	text-align: center;
	font-size: clamp(1.1rem, 2.5vw, 1.6rem);
	font-weight: inherit;
	line-height: 1.3;
	margin: 0 auto 1.75rem;
	padding-bottom: 0.5rem;
	max-width: 800px;
}

@media (min-width: 768px) {
	.cmg-needs-icons-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem 1.5rem;
	}

	.cmg-needs-icon-image-wrap {
		width: 150px;
		height: 150px;
	}
}

@media (min-width: 1200px) {
	.cmg-needs-icons-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 1.5rem;
	}

	.cmg-needs-icon-item:last-child:nth-child(odd) {
		grid-column: auto;
	}

	.cmg-needs-icon-image-wrap {
		width: 160px;
		height: 160px;
	}
}