.sg-220-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* Default desktop */
	gap: 30px;
}

.sg-220-card {
	background-color: #fff;
	padding: 30px 20px;
	border-radius: 8px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sg-220-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sg-220-icon {
	margin-bottom: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #E8AB14; /* Default accent */
}

.sg-220-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sg-220-title {
	margin: 0 0 15px;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 20px;
	color: #242424;
	text-transform: uppercase;
	line-height: 1.2;
}

.sg-220-desc {
	margin: 0;
	font-family: 'Hind Guntur', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #636363;
}

/* Tablet Breakpoint (Elementor default < 1025px) */
@media (max-width: 1024px) {
	.sg-220-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile Breakpoint (Elementor default < 768px) */
@media (max-width: 767px) {
	.sg-220-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.sg-220-card {
		padding: 25px 15px;
	}
}
