/* GRID */
.cb-postfilter {
	max-width: 1440px;
	width: 85%;
	margin-left: auto;
	margin-right: auto;
}

.cb-postfilter h2 {
	font-size: 2.25rem;
	font-family: "Neo Sans Std";
}

.cb-postfilter > a {
	position: absolute;
	right: 0;
	top: 1em;
}
.cb-teasercards-wrapper {
	display: flex;
	flex-flow: row wrap;
	grid-gap: 3.125rem;
	margin-top: 3rem;
}
.cb-teasercards-card {
	flex-basis: calc(50% - (3.125rem / 2));
	display: flex;
	padding: 1rem;
	border: 1px solid var(--light-blue);
	border-radius: 15px;
	grid-column-gap: 2rem;
}

.cb-teasercards-card .cb-teasercards-imgcol {
	position: relative;
}

.cb-teasercards-card .cb-teasercards-imgcol span {
	color: var(--dark-blue);
	font-size: 0.8125rem;
	background-color: #d8d8d8;
	position: absolute;
	bottom: .5rem;
	left: .5rem;
	padding: 0.5rem;
	border-radius: 5px;
}

.cb-teasercards-card .cb-teasercards-imgcol img {
	width: 208px !important;
	height: 208px !important;
	object-fit: cover;
	border-radius: 7px;
}
.cb-teasercards-card .cb-teasercards-textcol {
	flex-basis: 70%;
	position: relative;
}

.cb-teasercards-card .cb-teasercards-textcol h3 {
	font-family: "Neo Sans Std";
	line-height: 22px;
	margin-bottom: 1rem;
}

.cb-teasercards-card .cb-teasercards-textcol p {
	line-height: 20px;
	font-size: 0.825rem;
}


.cb-teasercards-card .cb-teasercards-textcol a {
	position: absolute;
	bottom: 0;
	right: 0;
	background: var(--arrow-white) center / 10px no-repeat;
	height: 35px;
	width: 35px;
	background-color: var(--light-blue);
	border-radius: 50%;
	transition: all ease 0.3s;
}
.cb-teasercards-card .cb-teasercards-textcol a:hover {
	background: var(--arrow-line-white) 56% 50% / 15px no-repeat, var(--arrow-white) 69% 50% / 10px no-repeat;
	background-color: var(--light-blue);
}

@media only screen and (max-width: 1024px) {
	.cb-teasercards-wrapper {
		flex-direction: column;
		width: 90%;
	}
}

/* MOBILE */
@media only screen and (max-width: 768px) {
	.cb-teasercards-wrapper {
		width: 100%;
		margin-top: 5rem;
	}
	.cb-postfilter h2 {
		font-size: 1.375rem;
	}
	.cb-teasercards-card {
		flex-direction: column;
		flex-basis: 100%;
	}
	.cb-teasercards-card .cb-teasercards-imgcol img {
		width: 100% !important;
		height: 160px !important;
		max-width: 100% !important;
	}
	.cb-teasercards-card .cb-teasercards-textcol {
		margin-top: 1rem;
	}
	.cb-teasercards-card .cb-teasercards-textcol p {
		width: 80%;
	}
	.cb-postfilter > a {
		position: absolute;
		left: 0;
		top: 4em;
	} 
}