/* ---- Icon Cards Grid ---- */
.twoUfi-icon-cards {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.twoUfi-icon-cards--cols-3 {
		grid-template-columns: repeat(3, 1fr);
	}
	.twoUfi-icon-cards--cols-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ---- Card ---- */
.twoUfi-icon-cards__card {
	border-radius: 16px;
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* ---- Large Image ---- */
.twoUfi-icon-cards__image {
	width: 100%;
	max-width: 240px;
	margin-bottom: 24px;
}

.twoUfi-icon-cards__image img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* ---- Font Icon ---- */
.twoUfi-icon-cards__icon {
	font-size: 64px;
	line-height: 1;
	color: #091C30;
	margin-bottom: 24px;
}

/* ---- Title ---- */
.twoUfi-icon-cards__title {
	font-family: 'Inter', sans-serif;
	font-weight: 900;
	font-size: 24px;
	line-height: 1.2;
	color: #091C30;
	margin: 0 0 16px;
}

/* ---- Description (WYSIWYG) ---- */
.twoUfi-icon-cards__desc {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(9, 28, 48, 0.7);
	margin: 0;
}

.twoUfi-icon-cards__desc p:last-child {
	margin-bottom: 0;
}
