/* LAYOUT */
/* Nur fÃ¼r Typ Block */
.cb-facts.block {
	background-color: var(--lightgrey);
	padding: 3rem 1rem;
}

/* Nur fÃ¼r Typ Kachel */
.cb-facts.no-background .cb-block-card{
	background-color: var(--lightgrey);
}

/* Generell */
.cb-facts .cb-block-textalign-center {
	text-align: center;
}

.cb-facts .cb-block-titlewrapper {
	font-family: var(--primary-font);
	margin-bottom: 2rem;
}

.cb-facts .cb-block-titlewrapper h2 {
	font-weight: bold;
}

.cb-facts .cb-block-factswrapper {
	display: flex;
	gap: 2rem;
	justify-content: space-around;
}

.cb-facts .cb-block-card {
	padding: 1.5rem;
	flex-basis: calc(25% - 2rem);
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
}

.cb-facts .cb-block-card h3 {
	font-family: var(--primary-font);
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 2rem;
}

.cb-facts .cb-block-card img {
	height: 65px;
	width: auto;
	object-fit: contain;
}

/* TABLET */
@media only screen and (max-width: 1024px) {
	.cb-facts .cb-block-factswrapper {
		gap: 1em;
	}
	.cb-facts .cb-block-card {
		padding:0.5em;
		justify-content: flex-start;
	}
	.cb-facts.no-background .cb-block-card {
		background-color: transparent;
	}
}


/* MOBILE */
@media only screen and (max-width: 768px) {
	.cb-facts .cb-block-factswrapper {
		flex-flow: column;
	}
	.cb-facts .cb-block-card {
		align-items: center;
		padding: 1.5rem 2rem;
	}
	.cb-facts .cb-block-card p,
	.cb-facts .cb-block-card h3{
		text-align: center;
	}
	.cb-facts {
		margin-left: 10px;
		margin-right: 10px;
	}
	.cb-facts .cb-block-titlewrapper h2 {
		font-size: 1.625rem;
	}
}