.ipg-f70a01a2-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	font-family: inherit;
}

.ipg-f70a01a2-header {
	text-align: center;
	margin-bottom: 40px;
}

.ipg-f70a01a2-section-title {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px;
}

.ipg-f70a01a2-section-subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.ipg-f70a01a2-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ipg-f70a01a2-card {
	background-color: #ffffff;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.ipg-f70a01a2-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.ipg-f70a01a2-card-img-wrap {
	height: 180px; /* Increased height */
	padding: 10px; /* Reduced padding */
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f9fafb;
	border-bottom: 1px solid #f3f4f6;
}

.ipg-f70a01a2-card-img-wrap img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.ipg-f70a01a2-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ipg-f70a01a2-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 12px;
	line-height: 1.3;
}

.ipg-f70a01a2-card-desc {
	font-size: 14px;
	color: #4B5563;
	margin: 0 0 20px;
	line-height: 1.5;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ipg-f70a01a2-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 10px 16px;
	background-color: #0056B3;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	border: 1px solid transparent;
	transition: background-color 0.2s, color 0.2s;
	margin-top: auto;
}

.ipg-f70a01a2-btn:hover {
	background-color: #004494;
	color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
	.ipg-f70a01a2-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.ipg-f70a01a2-grid {
		grid-template-columns: 1fr;
	}
	.ipg-f70a01a2-section-title {
		font-size: 26px;
	}
}