.lizzee-categories {

	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	align-items: stretch;
}

.lizzee-category-card {

	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,.08);
	transition: .25s ease;

	display: flex;
	flex-direction: column;

}

.lizzee-category-card:hover {

	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0,0,0,.15);

}

.lizzee-category-image img {

	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;

}

.lizzee-category-content {

	padding: 25px;

	display: flex;
	flex-direction: column;
	flex: 1;

}

.lizzee-category-title {

	margin: 0 0 15px;

}

.lizzee-category-description {

	margin-bottom: 25px;
	line-height: 1.6;

	flex: 1;

}


.lizzee-category-button-wrap {
    display: inline-block;
}

/* Style the link/button itself */
a.lizzee-category-button {
    display: inline-block;
    background-color: #0073aa; /* Example background */
    color: #ffffff;            /* Example text color */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}

.lizzee-category-button:hover {

	background: #0b5ed7;
	color: #fff;

}