
/*--------------------------------------------------------------
# Workable plugin
--------------------------------------------------------------*/

#section-jobs #whr_embed_hook { width: 100%; }

#section-jobs #whr_embed_hook .whr-items,
#section-jobs #whr_embed_hook .whr-item,
#section-jobs #whr_embed_hook .whr-info {
	list-style: none;
	margin: 0;
	padding: 0;
}

#section-jobs #whr_embed_hook .whr-items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

#section-jobs #whr_embed_hook li.whr-item {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	padding: 22px 20px;
	transition: transform .15s ease, box-shadow .15s ease;
}

#section-jobs #whr_embed_hook li.whr-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

/* caché quand replié */
#section-jobs #whr_embed_hook li.whr-item.whr-hidden {
	display: none !important;
}

/* titre non cliquable */
#section-jobs #whr_embed_hook .whr-title .whr-title, .whr-title>a {
	margin: 0 0 12px 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
	color: #3f5386;
}

#section-jobs #whr_embed_hook .whr-title span.whr-title-text {
	color: #3f5386;
}

#section-jobs #whr_embed_hook .whr-info {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px 0;
}

#section-jobs #whr_embed_hook .whr-info li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border: 1px solid rgba(63,83,134,0.15);
	border-radius: 999px;
	font-size: 12px;
	color: #6b7280;
	background: rgba(63,83,134,0.04);
}

#section-jobs #whr_embed_hook .whr-info li span {
	font-weight: 700;
	color: rgba(63,83,134,0.75);
	text-transform: none;
}

/* (fallback CSS) si Workable utilise ces classes */
#section-jobs #whr_embed_hook .whr-code,
#section-jobs #whr_embed_hook .whr-date {
	display: none !important;
}

/* bouton carte (style fake) */
#section-jobs #whr_embed_hook a.whr-cta-fake {
	display: inline-block;
	margin-top: 8px;
	padding: 10px 14px;
	border: 1px solid rgba(63,83,134,0.35);
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	color: #3f5386;
	background: transparent;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

#section-jobs #whr_embed_hook a.whr-cta-fake:hover {
	background: #FBC72A;
	border-color: #FBC72A;
	color: #1b1b1b;
	text-decoration: none;
}

/* bouton "Bekijk meer" */
#section-jobs #whr_embed_hook .whr-show-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

#section-jobs #whr_embed_hook button.whr-show-more {
	appearance: none;
	border: 1px solid rgba(63,83,134,0.35);
	border-radius: 999px;
	padding: 12px 18px;
	font-weight: 600;
	font-size: 14px;
	color: #3f5386;
	background: transparent;
	cursor: pointer;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

#section-jobs #whr_embed_hook button.whr-show-more:hover {
	background: #FBC72A;
	border-color: #FBC72A;
	color: #1b1b1b;
}

@media (max-width: 992px) {
	#section-jobs #whr_embed_hook .whr-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	#section-jobs #whr_embed_hook .whr-items {
		grid-template-columns: 1fr;
	}
}