.cd-category-widget-wrapper .cd-widget-title {
	text-align: center;
	margin-bottom: 40px;
}
.cd-category-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr); /* Fallback */
}

.cd-category-item {
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cd-category-content {
	flex: 1;
	z-index: 2;
}

.cd-category-item-title {
	margin-top: 0;
}

.cd-category-item-desc {
	margin-bottom: 20px;
}

.cd-category-item-btn {
	display: inline-block;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
}


