.contentGalleryCounter {
	--gap-width: 20px;
	--element-radius: var(--border-radius, 10px);
	--font-color: var(--font-color-dark, #000);

	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-width);
	justify-content: space-between;
	color: var(--font-color);
	padding: 2rem 0;
}

.contentGalleryCounter .item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--element-radius);
	box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.contentGalleryCounter .imgwrap {
	width: 100%;
	border-radius: var(--element-radius);
	overflow: hidden;
}

.contentGalleryCounter img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.contentGalleryCounter .item:hover img {
	transform: scale(1.05);
}

.contentGalleryCounter .text {
	margin-top: 1rem;
	width: 100%;
}

.contentGalleryCounter .precounter {
	min-height: 1.6em;
	font-size: 0.9rem;
	letter-spacing: 0.2rem;
	font-weight: 300;
}

.contentGalleryCounter .counterline {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 0.3rem;
}

.contentGalleryCounter .counter {
	font-size: 5rem;
	font-weight: 700;
	line-height: 1;
}

.contentGalleryCounter .counterunit {
	font-size: 2rem;
	line-height: 1;
}

.contentGalleryCounter .postcounter {
	font-size: 2rem;
	font-weight: 600;
}

.contentGalleryCounter .counterdescription {
	margin-top: 1rem;
	font-size: 1.5rem;
	line-height: 1.4;
}
