.category-cards-grid-6eefd456 {
	display: grid;
	grid-template-columns: repeat(var(--cc-columns, 3), 1fr);
	gap: 20px;
}

.category-card-6eefd456 {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 30px;
	text-decoration: none;
	overflow: hidden;
	border-radius: 4px;
}

.category-card-bg-6eefd456 {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.5s ease;
	z-index: 1;
}

.category-card-6eefd456:hover .category-card-bg-6eefd456 {
	transform: scale(1.05);
}

.category-card-overlay-6eefd456 {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 40%);
	z-index: 2;
	transition: background 0.3s ease;
}

.category-card-6eefd456:hover .category-card-overlay-6eefd456 {
	background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
}

.category-card-content-6eefd456 {
	position: relative;
	z-index: 3;
	color: #fff;
	text-align: left;
}

.category-card-title-6eefd456 {
	margin: 0 0 10px 0;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}

.category-card-link-text-6eefd456 {
	font-size: 14px;
	text-decoration: underline;
	text-underline-offset: 4px;
	color: #fff;
	text-transform: capitalize;
}

@media (max-width: 1024px) {
	.category-cards-grid-6eefd456 {
		grid-template-columns: repeat(var(--cc-columns-tablet, 2), 1fr);
	}
}

@media (max-width: 767px) {
	.category-cards-grid-6eefd456 {
		grid-template-columns: repeat(var(--cc-columns-mobile, 1), 1fr);
	}
}