.flex_layout.top_werkgevers {
	
}

.flex_layout.top_werkgevers:has(.lila) {
	border-radius: 30px;
	background: var(--Lila, #D3D6FF);
}

.flex_layout.top_werkgevers:has(.baby-blues) {
	border-radius: 30px;
	background: var(--Baby-blues, #B2DDF7);
}

.flex_layout.top_werkgevers .top-header{
	display:flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap:wrap;
	gap:20px;
	margin-bottom:64px;
}

.flex_layout.top_werkgevers .top-header p {
	max-width: 550px;
	margin-bottom: 0;
	color: var(--Grey-stone, #1C1C1C);
}

.flex_layout.top_werkgevers .top-header h2 {
	max-width: 400px;
	color: var(--Grey-stone, #1C1C1C);
}


.flex_layout.top_werkgevers .werkgever_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: stretch;
	justify-items: stretch;
}

.flex_layout.top_werkgevers .werkgever_item {
	padding: 20px;
	border: 1px solid var(--Lila, #D3D6FF);
	background: #FFF;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.flex_layout.top_werkgevers .werkgever_item img {
	max-width: 100%;
	max-height: 60px;
	object-fit: contain;
	margin-bottom: 60px;
	object-position: left;
}

.flex_layout.top_werkgevers .werkgever_name{
	color: var(--Grey-stone, #1C1C1C);
	font-size: 24px;
	font-style: normal;
	font-weight: 550;
	line-height: 1;
	margin-top:auto;
}

.flex_layout.top_werkgevers .werkgever_item svg{
	position: absolute;
	right:20px;
	top:20px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.flex_layout.top_werkgevers .werkgever_item:hover svg,
.flex_layout.top_werkgevers .werkgever_item:focus svg,
.flex_layout.top_werkgevers .werkgever_item:active svg{
	translate:5px;
}

@media (max-width: 1200px) {
	.flex_layout.top_werkgevers .werkgever_grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.flex_layout.top_werkgevers .werkgever_grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.flex_layout.top_werkgevers .werkgever_grid {
		grid-template-columns: 1fr;
	}
	.flex_layout.top_werkgevers .top-header{
		margin-bottom:30px;
}
}