/**
 * Cinemore statok widget stílusa.
 * Szám + címke kártyák rácsa.
 */

.cinemore-statok {
	display: grid;
	grid-template-columns: var(--cinemore-statok-cols, repeat(3, 1fr));
	gap: 14px;
}

.cinemore-statok__kartya {
	background: #f4faf7;
	border: 1px solid #e0efe7;
	border-radius: 16px;
	padding: 18px;
}

.cinemore-statok__szam {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 26px;
	color: #0a8f63;
	line-height: 1;
}

.cinemore-statok__cimke {
	font-size: 13.5px;
	color: #5a7067;
	font-weight: 600;
	margin-top: 8px;
	line-height: 1.35;
}

@media (max-width: 767px) {
	.cinemore-statok {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.cinemore-statok {
		grid-template-columns: 1fr;
	}
}
