.epcg-category-grid-wrapper {
	display: grid;
	grid-column-gap: 20px;
	grid-row-gap: 40px;
}

/* Desktop – liczba kolumn z atrybutu data */
.epcg-category-grid-wrapper[data-columns='2'] {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.epcg-category-grid-wrapper[data-columns='3'] {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.epcg-category-grid-wrapper[data-columns='4'] {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.epcg-category-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.epcg-category-image-wrapper {
	position: relative;
}

.epcg-category-content {
	text-align: center;
	position: absolute;
	left: 1rem;
	right: 1rem;
	z-index: 11;
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	bottom: 1.8em;
	background-color: rgba(255, 255, 255, 0.88);
}

.epcg-category-image {
	width: 100%;
}

.epcg-category-title {
	text-transform: uppercase;
	font-size: 0.9em;
	font-weight: 700;
	color: #000;
	line-height: 1.5;
}

.epcg-category-count {
	text-transform: uppercase;
	font-size: 0.75em;
	color: #777;
}
