/* Nieuwsberichten Block */
.so-latest-posts {
	display: flex;
    flex-direction: column;
    gap: 16px;
	margin-top: 48px;
    margin-bottom: 48px;
}

.so-latest-posts > .wp-block-columns {
	gap: 0px 32px;
}

.so-latest-posts .posts .post {
	flex: 0 0 calc(25% - ((3*24px) / 4));
	border-radius: 32px;
	box-sizing: border-box;
	background: #f7f5f6;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: all .2s ease-in-out;
}

.so-latest-posts .posts .post:hover {
	transform: translateY(-12px);
}

.so-latest-posts .posts .post .content {
	padding: 24px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.so-latest-posts .posts .post picture {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	display: block;
	background: #18A2B8;
}

.so-latest-posts .posts .post picture img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.so-latest-posts .posts .post picture:has(img.fallback) {
	display: flex;
	align-items: center;
	justify-content: center;
}

.so-latest-posts .posts .post .post-date {
	opacity: .6;
	margin-bottom: 12px;
	display: block;
}

.so-latest-posts .posts .post dl {
	display: flex;
	gap: 2px 4px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.so-latest-posts .posts .post dd {
	background: var(--blauw);
	color: #fff;
	font-size: 14px;
	border-radius: 24px;
	padding: 0 18px;
}

.so-latest-posts .posts .post img.fallback {
	width: 70%;
	height: auto;
}

.so-latest-posts .posts .post h3 {
	padding-top: 0;
	font-size: 22px;
	margin-bottom: 4px;
}

.so-latest-posts .posts .post .post-excerpt {
	margin-bottom: 12px;
}

.so-latest-posts .posts .post .wp-block-button {
	margin-top: auto;
}

.so-latest-posts .posts .post a {
	position: static;
}

.so-latest-posts .posts .post a:before {
	display: none;
}

.so-latest-posts .posts .post a:after {
	content: '';
	inset: 0;
	position: absolute;
}

.so-latest-posts .wp-block-button__link {
	text-wrap: nowrap;
}

.posts-mb-slide .slick-slide {
	margin: 0 8px;
}

.posts-mb-slide .slick-list {
	margin: 0 -8px;
}

@media screen and (min-width: 1344px) {
	.so-latest-posts .posts {
		display: flex;
		flex-wrap: wrap;
		gap: 24px;
		flex-direction: row;
	}
}

@media screen and (max-width: 1344px) {
	.posts-mb-slide .slick-list {
		overflow: visible;
	}

	.so-latest-posts {
		margin-left: 16px;
		margin-right: 16px;
	}
}