.dewijnbergen-content-boxes {
	--dewijnbergen-content-boxes-primary: var(--e-global-color-primary, #170f88);
	--dewijnbergen-content-boxes-secondary: var(--e-global-color-secondary, #01aef3);
	--dewijnbergen-content-boxes-text: var(--e-global-color-text, #022222);

	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	align-items: stretch;
}

.dewijnbergen-content-boxes__item {
	display: flex;
	height: 100%;
	min-height: 463px;
	overflow: hidden;
	border-radius: 3px 3px 0 0;
	background: #f4f4f4;
	flex-direction: column;
}

.dewijnbergen-content-boxes__media {
	overflow: hidden;
	aspect-ratio: 380 / 191;
	background: #e8e8e8;
}

.dewijnbergen-content-boxes__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dewijnbergen-content-boxes__content {
	display: flex;
	min-height: 0;
	padding: 18px 10px 13px;
	flex: 1;
	flex-direction: column;
}

.dewijnbergen-content-boxes__title {
	margin: 0 0 5px;
	color: var(--dewijnbergen-content-boxes-primary);
	font-family: var(--e-global-typography-primary-font-family, Arial), Sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.12;
}

.dewijnbergen-content-boxes__description {
	margin: 0 0 22px;
	color: var(--dewijnbergen-content-boxes-text);
	font-family: var(--e-global-typography-text-font-family, Arial), Sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
}

.elementor .dewijnbergen-content-boxes__link {
	width: fit-content;
	margin-top: auto;
	color: var(--dewijnbergen-content-boxes-secondary);
	font-family: var(--e-global-typography-text-font-family, Arial), Sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.dewijnbergen-content-boxes__link:hover,
.dewijnbergen-content-boxes__link:focus {
	color: var(--dewijnbergen-content-boxes-primary);
	text-decoration: underline;
}

@media (max-width: 1024px) {
	.dewijnbergen-content-boxes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}
}

@media (max-width: 767px) {
	.dewijnbergen-content-boxes {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.dewijnbergen-content-boxes__item {
		min-height: 0;
	}

	.dewijnbergen-content-boxes__content {
		padding: 16px 10px 14px;
	}

	.dewijnbergen-content-boxes__title {
		font-size: 22px;
	}

	.dewijnbergen-content-boxes__description {
		font-size: 17px;
		line-height: 1.42;
	}
}