/*
	Excellus 2026 — moderne designlaag
	Laadt na style.css en herdefinieert de visuele taal:
	tokens, typografie, header, cards, secties, formulieren, footer.
*/

:root {
	/* Brand — warm palet (design 2027) */
	--ex-red: #d92b3a;
	--ex-red-dark: #b01f2d;
	--ex-red-soft: #fbeaec;

	/* Vakgebied-kleuren (warm) */
	--ex-ambulance: #177d6d;
	--ex-meldkamer: #7a5fa8;
	--ex-ziekenhuis: #e08a2e;
	--ex-zorg: #7fa32a;
	--ex-flex: #63509e;
	--ex-academy: #4784b8;
	--ex-kantoor: #4a69b0;
	--ex-caribbean: #2b9d94;

	/* Neutralen — warm creme */
	--ex-ink: #2b2620;
	--ex-ink-2: #4a443c;
	--ex-muted: #7a7266;
	--ex-bg: #faf6ef;
	--ex-surface: #ffffff;
	--ex-border: #ece5d8;

	/* Vorm & effect */
	--ex-radius: 28px;
	--ex-radius-sm: 14px;
	--ex-shadow: 0 1px 2px rgba(43, 38, 32, .05), 0 10px 30px -10px rgba(43, 38, 32, .12);
	--ex-shadow-lift: 0 2px 4px rgba(43, 38, 32, .06), 0 24px 48px -16px rgba(43, 38, 32, .22);
	--ex-font-head: 'Instrument Sans', 'Inter', sans-serif;
	--ex-font-body: 'Inter', sans-serif;
	--ex-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ============ Basis & typografie ============ */

html {
	font-family: var(--ex-font-body);
}
html, body {
	overflow-x: clip;
}
body {
	background-color: var(--ex-bg);
	color: var(--ex-ink-2);
	font-family: var(--ex-font-body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--ex-font-head);
	color: var(--ex-ink);
	font-weight: 800;
	letter-spacing: -0.02em;
}
body h1 {
	font-size: clamp(34px, 4.5vw, 52px);
	line-height: 1.1;
}
body h2 {
	font-size: clamp(26px, 3.2vw, 36px);
	line-height: 1.15;
}
body h3 {
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
}
body p {
	color: var(--ex-muted);
	font-size: 16.5px;
	line-height: 1.75;
}
a {
	color: var(--ex-red);
	transition: color .15s var(--ex-ease);
}
a:hover, a:focus {
	color: var(--ex-red-dark);
}
::selection {
	background: var(--ex-red);
	color: #fff;
}

/* ============ Header: zwevende glasbalk ============ */

/* Oude header-CSS neutraliseren */
body .navigatie,
body[class] .navigatie {
	position: static;
	padding: 0;
	margin: 0;
	background: transparent;
	border-bottom: 0 !important;
	box-shadow: none;
	overflow: visible;
}

.site-hdr {
	position: sticky;
	top: 0;
	z-index: 9300;
	padding: 14px 20px 8px;
	pointer-events: none;
}
.admin-bar .site-hdr {
	top: 32px;
}
.site-hdr__inner {
	max-width: 1240px;
	margin: 0 auto;
	pointer-events: auto;
}
.site-hdr__bar {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, .82);
	-webkit-backdrop-filter: blur(18px) saturate(1.6);
	backdrop-filter: blur(18px) saturate(1.6);
	border: 1px solid rgba(23, 26, 31, .08);
	border-radius: 999px;
	padding: 10px 12px 10px 26px;
	box-shadow: 0 2px 6px rgba(23, 26, 31, .04), 0 18px 50px -20px rgba(23, 26, 31, .35);
}
.site-hdr__logo {
	display: block;
	flex: 0 0 auto;
}
.site-hdr__logo img {
	display: block;
	height: 42px;
	width: auto;
}
.site-hdr__nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	min-width: 0;
}
.site-hdr__menu ul {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	padding: 0 !important;
	margin: 0 !important;
}
.site-hdr__menu ul ul {
	display: none !important;
}
.site-hdr .navigatie ul li a {
	display: block;
	font-family: var(--ex-font-head);
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1;
	color: var(--ex-ink-2);
	border-radius: 999px;
	padding: 13px 20px;
	margin: 0;
	text-decoration: none;
	white-space: nowrap;
	transition: color .15s var(--ex-ease), background .15s var(--ex-ease);
}
.site-hdr .navigatie ul li a:hover,
.site-hdr .navigatie ul li a:focus,
.site-hdr .navigatie ul li.current-menu-item > a,
.site-hdr .navigatie ul li.current-menu-parent > a {
	color: var(--ex-red);
	background: var(--ex-red-soft);
	text-decoration: none;
}
.site-hdr__actions {
	display: flex;
	align-items: center;
	gap: 2px;
	flex: 0 0 auto;
}
.site-hdr__util {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--ex-muted);
	font-family: var(--ex-font-head);
	font-size: 14px;
	font-weight: 600;
	padding: 10px 12px;
	border-radius: 999px;
	text-decoration: none;
	transition: color .15s var(--ex-ease), background .15s var(--ex-ease);
}
.site-hdr__util:hover {
	color: var(--ex-red);
	background: var(--ex-red-soft);
	text-decoration: none;
}
.site-hdr__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: 6px;
	background: linear-gradient(135deg, var(--ex-red), #e01236);
	color: #fff;
	font-family: var(--ex-font-head);
	font-size: 14px;
	font-weight: 700;
	padding: 12px 20px;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 8px 20px -8px rgba(200, 16, 46, .6);
	transition: transform .15s var(--ex-ease), box-shadow .15s var(--ex-ease);
}
.site-hdr__cta:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px -8px rgba(200, 16, 46, .7);
	text-decoration: none;
}

/* Telefoonnummer inkorten op smallere desktops */
@media (max-width: 1360px) {
	.site-hdr__util--phone span {
		display: none;
	}
}
@media (max-width: 1150px) {
	.site-hdr .navigatie ul li a {
		padding: 12px 11px;
		font-size: 14px;
	}
	.site-hdr__logo img {
		height: 36px;
	}
}

/* Mobiel: bar compact, paneel via body.navigate */
@media (max-width: 767px) {
	.site-hdr {
		padding: 10px 12px 6px;
	}
	.site-hdr__bar {
		padding: 6px 8px 6px 14px;
		border-radius: 22px;
		/* geen backdrop-filter: die maakt het fixed menupaneel bar-relatief */
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		background: #ffffff;
	}
	.site-hdr__logo img {
		height: 36px;
	}
	/* Logo links, portaal-knop en hamburger rechts */
	.site-hdr__actions {
		margin-left: auto;
	}
	.site-hdr__util {
		display: none;
	}
	.site-hdr__cta {
		padding: 10px 14px;
		font-size: 13px;
	}
	.site-hdr__cta span {
		display: none;
	}
	.site-hdr .navigatie {
		position: fixed !important;
		top: -130vh !important;
		left: 0;
		width: 100vw;
		height: 100vh !important;
		background: #ffffff !important;
		z-index: 9400;
		overflow: auto !important;
		padding: 150px 24px 40px !important;
		transition: top .3s var(--ex-ease);
	}
	body.navigate .site-hdr .navigatie {
		top: 0 !important;
	}
	.hamburger {
		position: relative !important;
		z-index: 9500 !important;
	}
	.site-hdr__menu ul {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
	}
	.site-hdr .navigatie ul li a {
		font-size: 20px;
		padding: 14px 18px;
		white-space: normal;
	}
	.site-hdr__menu ul ul {
		display: block !important;
		list-style: none;
		padding: 0 0 0 18px !important;
	}
	.site-hdr__menu ul ul li a {
		font-size: 16px;
		color: var(--ex-muted);
	}
	.hamburger {
		position: static !important;
		padding: 8px !important;
		margin-left: 2px;
	}
}

/* Subnavigatie: chip-rij onder de zwevende balk */
.subnavigatie,
body[class] .subnavigatie {
	position: static !important;
	top: auto !important;
	background: transparent !important;
	box-shadow: none !important;
	width: auto;
	overflow: visible;
}
.subnavigatie.subnavigatie-hide {
	display: none !important;
}
@media (max-width: 767px) {
	.subnavigatie {
		display: none !important;
	}
}
.subnavigatie .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 12px 20px 20px;
	display: flex;
	justify-content: center;
	overflow: visible !important;
}
/* Segmented control: één pill-container met tabs */
.subnavigatie ul,
.subnavigatie .container ul {
	float: none !important;
	display: inline-flex;
	justify-content: center;
	gap: 4px;
	list-style: none;
	padding: 5px !important;
	margin: 0 !important;
	overflow: visible !important;
	background: rgba(255, 255, 255, .88);
	-webkit-backdrop-filter: blur(16px) saturate(1.5);
	backdrop-filter: blur(16px) saturate(1.5);
	border: 1px solid rgba(23, 26, 31, .08);
	border-radius: 999px;
	box-shadow: 0 2px 5px rgba(23, 26, 31, .05), 0 14px 34px -16px rgba(23, 26, 31, .3);
}
.subnavigatie ul li,
.subnavigatie .container ul li {
	float: none !important;
}
.subnavigatie ul li a,
.subnavigatie .container ul li a {
	display: block;
	font-family: var(--ex-font-head);
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	color: var(--ex-ink-2);
	background: transparent;
	border: 0;
	border-radius: 999px;
	padding: 11px 22px;
	text-decoration: none;
	transition: color .15s var(--ex-ease), background .15s var(--ex-ease);
}
.subnavigatie ul li a:hover,
.subnavigatie .container ul li a:hover {
	color: var(--ex-red);
	background: var(--ex-red-soft);
	text-decoration: none;
}
.subnavigatie ul li.current-menu-item a,
.subnavigatie .container ul li.current-menu-item a,
.subnavigatie ul li.current_page_item a,
.subnavigatie .container ul li.current_page_item a {
	color: #fff;
	background: var(--ex-red);
	text-decoration: none;
}

/* Verticale vacature-tab: zwevend pill-lipje links, verticaal gecentreerd */
.sidenavigation {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 8000;
}
.sidenavigation .vacature,
.sidenavigation .academy {
	float: none;
	padding: 0;
	margin: 0;
	border-radius: 0 16px 16px 0;
	box-shadow: 4px 10px 30px -10px rgba(200, 16, 46, .5);
	transition: transform .2s var(--ex-ease), box-shadow .2s var(--ex-ease);
}
.sidenavigation .vacature {
	background: linear-gradient(180deg, #e01236, var(--ex-red) 55%, var(--ex-red-dark));
}
.sidenavigation .academy {
	background: linear-gradient(180deg, #6cc0dd, var(--ex-academy));
}
.sidenavigation .vacature:hover,
.sidenavigation .academy:hover {
	box-shadow: 6px 14px 38px -10px rgba(200, 16, 46, .65);
	text-decoration: none;
}
/* Bij hover groeit de tab naar rechts uit; de linkerkant blijft aan de rand */
.sidenavigation .vacature:hover a,
.sidenavigation .academy:hover a {
	padding-right: 20px;
}
.sidenavigation .vacature a,
.sidenavigation .academy a {
	display: flex;
	align-items: center;
	gap: 10px;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	padding: 24px 14px;
	color: #fff;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 13.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: padding-right .2s var(--ex-ease);
}
.sidenavigation .vacature:hover a,
.sidenavigation .academy:hover a {
	text-decoration: none;
}
.sidenavigation .vacature a:before,
.sidenavigation .academy a:before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #fff;
	opacity: .85;
	flex: 0 0 auto;
}
/* Op mobiel verbergen: te weinig ruimte, oogt rommelig over de content */
@media (max-width: 767px) {
	.sidenavigation {
		display: none;
	}
}

/* ============ Vakgebied-cards ============ */

.section-vakgebied .vakgebied:not(.vakgebied-intro) {
	border-radius: var(--ex-radius);
	overflow: hidden;
	box-shadow: var(--ex-shadow);
	transition: box-shadow .25s var(--ex-ease);
}
.section-vakgebied a.vakgebied {
	transition: transform .25s var(--ex-ease), box-shadow .25s var(--ex-ease);
}
.section-vakgebied a.vakgebied:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: var(--ex-shadow-lift);
}

/* Foto vult de hele card */
.section-vakgebied .vakgebied .vakgebied-image {
	inset: 0;
	width: 100%;
	height: 100%;
}
.section-vakgebied .vakgebied .vakgebied-image img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	filter: saturate(.9);
	transition: transform .4s var(--ex-ease);
}
.section-vakgebied a.vakgebied:hover .vakgebied-image img {
	transform: scale(1.05);
}

/* Diagonale wig → vloeiende kleurgradient */
.section-vakgebied .vakgebied:not(.vakgebied-intro):before {
	display: none;
}
.section-vakgebied .vakgebied:not(.vakgebied-intro):after {
	left: 0;
	width: 100%;
	background: linear-gradient(100deg,
		rgba(23, 26, 31, 0) 14%,
		rgba(23, 26, 31, .45) 38%,
		rgba(23, 26, 31, .92) 66%);
}
.section-vakgebied .vakgebied.vakgebied-ambulance:after {
	background: linear-gradient(100deg, transparent 14%, color-mix(in srgb, var(--ex-ambulance) 55%, transparent) 38%, var(--ex-ambulance) 66%);
}
.section-vakgebied .vakgebied.vakgebied-ziekenhuis:after {
	background: linear-gradient(100deg, transparent 14%, color-mix(in srgb, var(--ex-ziekenhuis) 55%, transparent) 38%, var(--ex-ziekenhuis) 66%);
}
.section-vakgebied .vakgebied.vakgebied-zorg:after {
	background: linear-gradient(100deg, transparent 14%, color-mix(in srgb, var(--ex-zorg) 55%, transparent) 38%, var(--ex-zorg) 66%);
}
.section-vakgebied .vakgebied.vakgebied-flex:after {
	background: linear-gradient(100deg, transparent 14%, color-mix(in srgb, var(--ex-flex) 55%, transparent) 38%, var(--ex-flex) 66%);
}
.section-vakgebied .vakgebied.vakgebied-academy:after {
	background: linear-gradient(100deg, transparent 14%, color-mix(in srgb, var(--ex-academy) 55%, transparent) 38%, var(--ex-academy) 66%);
}
.section-vakgebied .vakgebied.vakgebied-kantoor:after {
	background: linear-gradient(100deg, transparent 14%, color-mix(in srgb, var(--ex-kantoor) 55%, transparent) 38%, var(--ex-kantoor) 66%);
}
.section-vakgebied .vakgebied.vakgebied-bemiddeling:after {
	background: linear-gradient(100deg, transparent 14%, color-mix(in srgb, var(--ex-red) 55%, transparent) 38%, var(--ex-red) 66%);
}
.section-vakgebied .vakgebied.vakgebied-caribbean:after {
	background: linear-gradient(100deg, transparent 14%, color-mix(in srgb, var(--ex-caribbean) 55%, transparent) 38%, var(--ex-caribbean) 66%);
}
.section-vakgebied .vakgebied-caribbean .vakgebied-content:after {
	content: "Meer informatie";
}

/* Tekst in de card */
.section-vakgebied .vakgebied .vakgebied-content .content {
	display: flex;
	align-items: center;
	left: 42%;
	width: 58%;
	padding: 20px 24px;
}
.section-vakgebied .vakgebied .vakgebied-content .content .text span {
	display: block;
	font-family: var(--ex-font-head);
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.01em;
	margin-bottom: 2px;
	text-shadow: 0 1px 12px rgba(0, 0, 0, .18);
}
.section-vakgebied .vakgebied .vakgebied-content .content .text p {
	font-size: 15px;
	line-height: 1.5;
	opacity: .92;
}

/* CTA-pill */
.section-vakgebied .vakgebied .vakgebied-content:after {
	border-radius: 999px;
	padding: 8px 18px;
	bottom: 14px;
	right: 14px;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 13.5px;
	color: var(--ex-ink);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
	transition: transform .2s var(--ex-ease);
}
.section-vakgebied a.vakgebied:hover .vakgebied-content:after {
	transform: translateX(2px);
}

/* Intro-blok op de homepage */
.section-vakgebied .vakgebied.vakgebied-intro .intro p {
	color: var(--ex-red);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
}

/* ============ Secties & ritme ============ */

.section {
	padding-top: 84px;
	padding-bottom: 84px;
}
.section-vakgebied {
	padding: 72px 15px;
}
.section-vakgebied .col-lg-4 {
	padding: 18px 15px;
}

/* Rode vacature-band op de homepage */
.section-vacatures.section-vacatures-front {
	background: linear-gradient(135deg, #a50d24 0%, var(--ex-red) 55%, #e01236 100%);
}
.section-vacatures.section-vacatures-front:before {
	background: radial-gradient(900px 400px at 80% -10%, rgba(255, 255, 255, .16), transparent 70%);
	transform: none;
	height: 100%;
	left: 0;
}
.section-vacatures.section-vacatures-front h1,
.section-vacatures.section-vacatures-front h3 {
	color: #fff;
}

/* Vacature-sectie in de standaard achtergrondkleur */
.section-vacatures {
	background-color: var(--ex-bg);
}
.section-vacatures:before {
	display: none;
}

/* ============ Knoppen & formulieren ============ */

.btn,
input[type="submit"],
button[type="submit"],
.wpcf7 input[type="submit"] {
	font-family: var(--ex-font-head);
	font-weight: 700;
	border-radius: 999px;
	transition: transform .15s var(--ex-ease), box-shadow .15s var(--ex-ease), background .15s var(--ex-ease);
}
input[type="submit"]:hover,
button[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px -8px rgba(200, 16, 46, .5);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
	border-radius: var(--ex-radius-sm) !important;
	border: 1px solid var(--ex-border);
	transition: border-color .15s var(--ex-ease), box-shadow .15s var(--ex-ease);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	outline: none;
	border-color: var(--ex-red);
	box-shadow: 0 0 0 4px rgba(200, 16, 46, .1);
}

/* ============ Footer: CTA-banner + donkere footer met watermerk ============ */

.site-ftr {
	margin-top: 72px;
}

/* CTA-banner die half over de footer valt */
.site-ftr__cta {
	position: relative;
	z-index: 2;
	padding: 0 20px;
}
.site-ftr__cta-card {
	max-width: 1160px;
	margin: 0 auto -72px;
	background: linear-gradient(120deg, #9d0c24, var(--ex-red) 55%, #e01236);
	border-radius: 28px;
	padding: 46px 52px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	box-shadow: 0 30px 70px -28px rgba(200, 16, 46, .55);
	overflow: hidden;
	position: relative;
}
.site-ftr__cta-card:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(600px 300px at 85% -20%, rgba(255, 255, 255, .18), transparent 70%);
	pointer-events: none;
}
.site-ftr__cta-text h2 {
	color: #fff;
	font-size: clamp(24px, 2.6vw, 34px);
	margin: 0 0 10px;
	padding: 0;
}
.site-ftr__cta-text h2 span {
	color: rgba(255, 255, 255, .55);
}
.site-ftr__cta-text p {
	color: rgba(255, 255, 255, .85);
	margin: 0;
	padding: 0;
	font-size: 16.5px;
}
.site-ftr__cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	position: relative;
}
.site-ftr__btn {
	display: inline-block;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 15px;
	padding: 15px 28px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform .15s var(--ex-ease), box-shadow .15s var(--ex-ease), background .15s var(--ex-ease);
}
.site-ftr__btn--light {
	background: #fff;
	color: var(--ex-red);
	box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .35);
}
.site-ftr__btn--light:hover {
	color: var(--ex-red-dark);
	transform: translateY(-2px);
	text-decoration: none;
}
.site-ftr__btn--ghost {
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .5);
}
.site-ftr__btn--ghost:hover {
	color: #fff;
	border-color: #fff;
	background: rgba(255, 255, 255, .1);
	transform: translateY(-2px);
	text-decoration: none;
}

/* Donker hoofddeel */
.site-ftr__main {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(900px 420px at 8% 12%, rgba(200, 16, 46, .14), transparent 65%),
		radial-gradient(700px 380px at 92% 85%, rgba(63, 160, 141, .1), transparent 65%),
		#101317;
	border-radius: 44px 44px 0 0;
	padding: 150px 24px 80px;
}
.site-ftr__grid {
	position: relative;
	z-index: 1;
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 48px;
}
.site-ftr__logo {
	display: inline-block;
	background: #fff;
	border-radius: var(--ex-radius-sm);
	padding: 10px 16px;
}
.site-ftr__logo img {
	display: block;
	height: 44px;
	width: auto;
}
.site-ftr__tagline {
	color: rgba(255, 255, 255, .6);
	font-size: 15px;
	line-height: 1.8;
	margin: 22px 0 24px;
	padding: 0;
	max-width: 340px;
}
.site-ftr__social {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-ftr__social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
	transition: background .15s var(--ex-ease), transform .15s var(--ex-ease);
}
.site-ftr__social li a:hover {
	background: rgba(255, 255, 255, .16);
	transform: translateY(-2px);
}
.site-ftr__social li img {
	width: 20px;
	height: 20px;
	border-radius: 4px;
}
.site-ftr__col h3 {
	color: #fff;
	font-family: var(--ex-font-head);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin: 14px 0 20px;
	padding: 0;
}
.site-ftr__col h3:after {
	content: ".";
	color: var(--ex-red);
}
.site-ftr__menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-ftr__menu ul li a {
	display: inline-block;
	color: rgba(255, 255, 255, .62);
	font-size: 15px;
	line-height: 2.3;
	text-decoration: none;
	transition: color .15s var(--ex-ease), transform .15s var(--ex-ease);
}
.site-ftr__menu ul li a:hover {
	color: #fff;
	transform: translateX(3px);
	text-decoration: none;
}
.site-ftr__col p {
	color: rgba(255, 255, 255, .62);
	font-size: 15px;
	line-height: 1.9;
	margin: 0 0 14px;
	padding: 0;
}
.site-ftr__col p strong {
	color: rgba(255, 255, 255, .9);
}
.site-ftr__col p a {
	color: rgba(255, 255, 255, .62);
	text-decoration: none;
}
.site-ftr__col p a:hover {
	color: #fff;
	text-decoration: none;
}
.site-ftr__portal {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 8px;
	color: #fff;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 14px;
	padding: 12px 20px;
	border: 1.5px solid rgba(255, 255, 255, .3);
	border-radius: 999px;
	text-decoration: none;
	transition: background .15s var(--ex-ease), border-color .15s var(--ex-ease), transform .15s var(--ex-ease);
}
.site-ftr__portal:hover {
	color: #fff;
	background: var(--ex-red);
	border-color: var(--ex-red);
	transform: translateY(-2px);
	text-decoration: none;
}

/* Groot merkwatermerk */
.site-ftr__watermark {
	position: absolute;
	left: 50%;
	bottom: -.18em;
	transform: translateX(-50%);
	font-family: var(--ex-font-head);
	font-weight: 800;
	font-size: clamp(110px, 16vw, 250px);
	line-height: 1;
	letter-spacing: .01em;
	color: rgba(255, 255, 255, .028);
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

/* Onderste balk */
.site-ftr__bottom {
	background: #0b0d10;
	padding: 22px 24px 26px;
}
.site-ftr__bottom-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, .45);
	font-size: 13px;
}
.site-ftr__bottom-menu ul {
	display: flex;
	gap: 22px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-ftr__bottom-menu ul li a {
	color: rgba(255, 255, 255, .45);
	font-size: 13px;
	text-decoration: none;
	transition: color .15s var(--ex-ease);
}
.site-ftr__bottom-menu ul li a:hover {
	color: #fff;
	text-decoration: none;
}
.site-ftr__legal {
	max-width: 1160px;
	margin: 14px auto 0;
	padding: 0;
	color: rgba(255, 255, 255, .25);
	font-size: 11.5px;
	line-height: 1.7;
}

/* Footer responsief */
@media (max-width: 991px) {
	.site-ftr__grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
	.site-ftr__main {
		border-radius: 28px 28px 0 0;
		padding: 130px 24px 60px;
	}
}
@media (max-width: 600px) {
	.site-ftr__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.site-ftr__cta-card {
		padding: 34px 28px;
	}
	.site-ftr__cta-card {
		margin-bottom: -96px;
	}
	.site-ftr__main {
		padding-top: 150px;
	}
}

/* ============ Content-cards (blog, reviews, keurmerken) ============ */

.section-posts .content,
.review,
.keurmerk {
	border-radius: var(--ex-radius);
	overflow: hidden;
}
.section-posts .content img {
	border-radius: 0;
}

/* ============ Diagonale overlays uit het oude design ============ */

.section-subpages:before,
.section-academy:before,
.section-opdrachtgevers:before,
.section-wiebenjij:before,
.sidebar li.widget:before,
.section-posts .content:before,
body .navigatie:before {
	display: none;
}
.section-formulier.formulier-solliciteren:before,
.section-formulier.formulier-inschrijven:before {
	background: radial-gradient(800px 400px at 85% 0%, rgba(255, 255, 255, .12), transparent 70%);
	transform: none;
	left: 0;
	height: 100%;
}

/* ============ Homepage intro ============ */

.section-vakgebied .vakgebied.vakgebied-intro .intro h1 {
	font-size: clamp(30px, 3.2vw, 42px);
}

/* ============ Vacature-lijst ============ */

.section-vacatures .vacatures .vacature {
	background-color: #ffffff;
	border-top: 0;
	border-left: 6px solid var(--ex-ink);
	border-radius: var(--ex-radius-sm);
	padding: 22px 24px;
	margin-bottom: 18px;
	box-shadow: 0 1px 2px rgba(23, 26, 31, .05), 0 8px 20px -12px rgba(23, 26, 31, .15);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.section-vacatures .vacatures a.shuffle-item .vacature {
	transition: transform .2s var(--ex-ease), box-shadow .2s var(--ex-ease);
}
.section-vacatures .vacatures a.shuffle-item:hover .vacature {
	transform: translateY(-2px);
	box-shadow: var(--ex-shadow-lift);
}
.section-vacatures .vacatures .vacature .vacature-title {
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 16.5px;
	color: var(--ex-ink);
	flex: 1 1 280px;
}

/* Lege opdrachtgevers-strook op de homepage verbergen */
.section-opdrachtgevers:not(:has(.opdrachtgevers-page)) {
	display: none;
}
.section-vacatures .vacatures .vacature .vacature-regio,
.section-vacatures .vacatures .vacature .vacature-uren {
	color: var(--ex-muted);
	font-size: 14.5px;
}
.section-vacatures .vacatures .vacature .vacature-solliciteren {
	margin-left: auto;
	border-radius: 999px;
	width: auto;
	padding: 9px 22px;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 14px;
	transition: filter .15s var(--ex-ease);
}
.section-vacatures .vacatures a.shuffle-item:hover .vacature-solliciteren {
	filter: brightness(1.1);
}
.section-vacatures .vacatures .vacature.vacature-overig { border-top: 0; border-left-color: var(--ex-red); }
.section-vacatures .vacatures .vacature.vacature-ziekenhuis { border-top: 0; border-left-color: var(--ex-ziekenhuis); }
.section-vacatures .vacatures .vacature.vacature-zorg { border-top: 0; border-left-color: var(--ex-zorg); }
.section-vacatures .vacatures .vacature.vacature-ambulance { border-top: 0; border-left-color: var(--ex-ambulance); }
.section-vacatures .vacatures .vacature.vacature-kantoor { border-top: 0; border-left-color: var(--ex-kantoor); }
.section-vacatures .vacatures .vacature.vacature-flex { border-top: 0; border-left-color: var(--ex-flex); }
.section-vacatures .vacatures .vacature.vacature-caribbean { border-top: 0; border-left-color: var(--ex-ambulance); }
.section-vacatures .vacatures .vacature.vacature-overig .vacature-solliciteren { background-color: var(--ex-red); }
.section-vacatures .vacatures .vacature.vacature-ziekenhuis .vacature-solliciteren { background-color: var(--ex-ziekenhuis); }
.section-vacatures .vacatures .vacature.vacature-zorg .vacature-solliciteren { background-color: var(--ex-zorg); }
.section-vacatures .vacatures .vacature.vacature-ambulance .vacature-solliciteren { background-color: var(--ex-ambulance); }
.section-vacatures .vacatures .vacature.vacature-kantoor .vacature-solliciteren { background-color: var(--ex-kantoor); }
.section-vacatures .vacatures .vacature.vacature-flex .vacature-solliciteren { background-color: var(--ex-flex); }

/* ============ Vacature-filters ============ */

body .filtersblock,
body[class] .filtersblock {
	background-color: var(--ex-surface) !important;
	color: var(--ex-ink);
	border: 1px solid var(--ex-border);
	border-radius: var(--ex-radius);
	box-shadow: var(--ex-shadow);
}
.filtersblock .filters-collapse .filters-text {
	color: var(--ex-ink);
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 15px;
}
.filtersblock .filters-collapse .filters-text:after {
	border-color: var(--ex-red);
	border-width: 0 2px 2px 0;
}
.filtersblock .filters-collapse {
	border-bottom: 1px solid var(--ex-border);
}
.filtersblock .filters-collapse:last-child {
	border-bottom: 0;
}
.filtersblock .filters label.filter {
	color: var(--ex-muted);
	font-size: 15px;
}
.filtersblock .filters label.filter:hover {
	color: var(--ex-ink);
}
.filtersblock .filters label.filter input {
	accent-color: var(--ex-red);
}

/* Paginering */
.paginates ul.paginate li {
	border-radius: 999px;
	min-width: 38px;
	text-align: center;
	font-family: var(--ex-font-head);
	font-weight: 600;
	transition: background .15s var(--ex-ease), color .15s var(--ex-ease);
}
.paginates ul.paginate li:hover {
	background: var(--ex-red-soft);
	color: var(--ex-red);
}
.paginates ul.paginate li.paginate-active {
	background: var(--ex-red);
	color: #fff;
}

/* "Alle vacatures"-knop */
a.allevacatures {
	display: inline-block;
	background: #ffffff;
	color: var(--ex-ink);
	font-family: var(--ex-font-head);
	font-weight: 700;
	border-radius: 999px;
	padding: 13px 28px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
	transition: transform .15s var(--ex-ease), box-shadow .15s var(--ex-ease);
}
a.allevacatures:hover {
	transform: translateY(-2px);
	color: var(--ex-red);
	text-decoration: none;
}

/* ============ Reviews: testimonial-cards ============ */

/* Slider-clipbox: verticale ruimte voor card-schaduwen (horizontaal blijft geknipt) */
.reviewslickslider .slick-list,
.blogslickslider .slick-list {
	padding-top: 24px !important;
	padding-bottom: 56px !important;
	margin-top: -24px !important;
	margin-bottom: -56px !important;
}

/* Gelijke hoogtes: slides als flex, persoon als footer onderaan */
.reviewslickslider .slick-track {
	display: flex !important;
}
.reviewslickslider .slick-slide {
	height: auto !important;
	display: flex !important;
}
.reviewslickslider .slick-slide > div {
	display: flex;
	width: 100%;
}
.section-reviews .reviews-list .review {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: var(--ex-surface);
	border: 1px solid var(--ex-border);
	border-radius: var(--ex-radius);
	box-shadow: var(--ex-shadow);
	overflow: hidden;
	transition: transform .2s var(--ex-ease), box-shadow .2s var(--ex-ease);
}
.section-reviews .reviews-list .review:hover {
	transform: translateY(-4px);
	box-shadow: var(--ex-shadow-lift);
}

/* Binnenste dozen strippen: de .review zelf is nu de kaart */
.section-reviews .reviews-list .review .review-content {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	margin-bottom: 0;
	flex: 1 1 auto;
}
.section-reviews .reviews-list .review .review-content .content {
	border: 0;
	padding: 30px 30px 24px;
	position: relative;
}

/* Groot decoratief aanhalingsteken */
.section-reviews .reviews-list .review .review-content .content:before {
	content: "\201C";
	display: block;
	font-family: Georgia, serif;
	font-size: 64px;
	line-height: .6;
	color: var(--ex-red);
	opacity: .25;
	margin: 6px 0 14px;
}

/* Quote-titel ("Gouden ervaring") */
.section-reviews .reviews-list .review .review-content strong {
	font-family: var(--ex-font-head);
	font-weight: 800;
	font-size: 19px;
	letter-spacing: -0.01em;
	color: var(--ex-ink);
}
.section-reviews .reviews-list .review .review-content .content > p:first-of-type strong {
	display: block;
	margin-bottom: 4px;
}

/* Leesbare bodytekst */
.section-reviews .reviews-list .review .review-content .content p {
	color: var(--ex-muted);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 18px;
}

/* Functie als klein rood label */
.section-reviews .reviews-list .review .review-content .content .review-functie {
	display: inline-block;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ex-red);
	background: var(--ex-red-soft);
	border-radius: 999px;
	padding: 7px 14px;
}

/* Persoon als footer in de kaart */
.section-reviews .reviews-list .review .review-persoon {
	display: flex;
	align-items: center;
	gap: 14px;
	float: none;
	margin: 0;
	padding: 18px 30px 22px;
	border-top: 1px solid var(--ex-border);
	background: #fbfbfa;
	overflow: visible;
}
.section-reviews .reviews-list .review .review-persoon .review-persoon-image {
	float: none;
	flex: 0 0 auto;
	overflow: visible;
	padding: 4px;
}
.section-reviews .reviews-list .review .review-persoon .review-persoon-image img {
	display: block;
	width: 52px;
	height: 52px;
	float: none;
	border-radius: 999px;
	object-fit: cover;
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px var(--ex-red), 0 6px 14px -4px rgba(23, 26, 31, .3);
}
.section-reviews .reviews-list .review .review-persoon .review-persoon-info {
	float: none;
	margin: 0;
	padding: 0;
	width: auto;
	flex: 1 1 auto;
	min-width: 0;
}
.section-reviews .reviews-list .review .review-persoon .review-persoon-info p {
	color: var(--ex-muted);
	font-size: 13.5px;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}
.section-reviews .reviews-list .review .review-persoon .review-persoon-info p strong {
	display: block;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 15.5px;
	color: var(--ex-ink);
}

/* Slick-dots in merkstijl */
.section-reviews .slick-dots li button:before {
	font-size: 10px;
	color: #c9c9c5;
	opacity: 1;
}
.section-reviews .slick-dots li.slick-active button:before {
	color: var(--ex-red);
	opacity: 1;
}

/* ============ Blog-cards ============ */

.section-posts .content {
	background: var(--ex-surface);
	border: 1px solid var(--ex-border);
	box-shadow: var(--ex-shadow);
	transition: transform .2s var(--ex-ease), box-shadow .2s var(--ex-ease);
}
.section-posts .content:hover {
	transform: translateY(-4px);
	box-shadow: var(--ex-shadow-lift);
}

/* ============ Content-typografie: p / ul / li consistent ============ */

.section .content p {
	color: var(--ex-muted);
	font-size: 16.5px;
	line-height: 1.75;
}
.section .content ul,
.section .content ol {
	color: var(--ex-muted);
	font-size: 16.5px;
	line-height: 1.75;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}
.section .content ul li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 10px;
}
.section .content ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: .52em;
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--ex-red);
}
.section .content ol {
	list-style: decimal;
	padding-left: 24px;
}
.section .content ol li {
	margin-bottom: 10px;
}
/* Vetgedrukte regels die als kopje dienen */
.section .content p strong {
	color: var(--ex-ink);
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 17.5px;
}
/* Uitzonderingen: secties met lichte tekst op kleur */
.section-carib .content p,
.section-carib .content ul,
.section-carib .content ul li {
	color: #fff;
}
.section-carib .content ul li:before {
	background: #fff;
}

/* ============ CF7-formulieren: labels op eigen regel, velden gelijk ============ */

body[class] .section-formulier .wpcf7-form {
	border-top-width: 6px;
	border-radius: var(--ex-radius);
	padding: 48px 56px;
}
.section-formulier .wpcf7-form label {
	display: block;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 14.5px;
	color: var(--ex-ink);
	margin: 0 0 8px;
}
.section-formulier .wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	max-width: 560px;
}
.section-formulier .wpcf7-form input[type="text"],
.section-formulier .wpcf7-form input[type="tel"],
.section-formulier .wpcf7-form input[type="email"],
.section-formulier .wpcf7-form input[type="date"],
.section-formulier .wpcf7-form textarea {
	width: 100%;
	max-width: 560px;
	padding: 13px 18px;
	font-size: 15.5px;
	background: #fff;
}
.section-formulier .wpcf7-form textarea {
	min-height: 150px;
}
.section-formulier .input,
.section-formulier .text {
	margin-bottom: 24px;
}
/* Upload (drag & drop) */
.section-formulier .codedropz-upload-wrapper {
	max-width: 560px;
	margin-top: 10px;
}
.codedropz-upload-handler {
	border: 2px dashed #d6d6d2 !important;
	border-radius: var(--ex-radius-sm) !important;
	background: #fbfbfa;
	transition: border-color .15s var(--ex-ease), background .15s var(--ex-ease);
}
.codedropz-upload-handler:hover {
	border-color: var(--ex-red) !important;
	background: var(--ex-red-soft);
}
/* Verzendknop: groter, consistent pill (kleur blijft per vakgebied) */
.section-formulier .wpcf7-form input[type="submit"] {
	padding: 15px 34px;
	font-size: 15.5px;
	border: 0;
	margin-top: 6px;
}

/* ============ Consistente knoppen: overal pill-vorm ============ */

/* Academy: "Inschrijven"-knop op cursuskaarten */
.section-academy .academy .cursus .cursus-inschrijven {
	width: auto;
	border-radius: 999px;
	padding: 9px 22px;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.4;
	transition: filter .15s var(--ex-ease);
}
.section-academy .academy .cursus:hover .cursus-inschrijven {
	filter: brightness(1.08);
}

/* Blog: categorie-filterknoppen */
.section-posts-top .filters button {
	border-radius: 999px;
	padding: 4px 18px 4px 34px;
	background-position: left 8px center;
	background-size: 20px 20px;
	margin: 0 2px 6px 0;
	font-family: var(--ex-font-head);
	font-weight: 600;
	font-size: 14px;
}

/* Gutenberg-knoppen in content */
.wp-block-button__link {
	border-radius: 999px !important;
}

/* Videospeler (Plyr): ronde playknop in merkkleur */
.plyr__control--overlaid {
	border-radius: 999px !important;
	background: var(--ex-red) !important;
	padding: 20px !important;
	box-shadow: 0 10px 30px -8px rgba(200, 16, 46, .55);
}
.plyr__control--overlaid:hover {
	background: var(--ex-red-dark) !important;
}
.plyr--full-ui input[type=range] {
	color: var(--ex-red) !important;
}
.plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover {
	background: var(--ex-red) !important;
}
.plyr__tooltip {
	border-radius: 8px;
}

/* Generieke themaknop (pill) — gebruik .ex-btn + kleurvariant */
.ex-btn {
	display: inline-block;
	font-family: var(--ex-font-head);
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4;
	color: #fff;
	background: var(--ex-red);
	padding: 13px 28px;
	border-radius: 999px;
	text-decoration: none;
	text-align: center;
	box-shadow: 0 8px 22px -8px rgba(23, 26, 31, .35);
	transition: transform .15s var(--ex-ease), box-shadow .15s var(--ex-ease), filter .15s var(--ex-ease);
}
.ex-btn:hover,
.ex-btn:focus {
	color: #fff;
	transform: translateY(-2px);
	filter: brightness(1.08);
	text-decoration: none;
}
.ex-btn--academy {
	background: var(--ex-academy);
	display: block;
	max-width: 320px;
	margin: 20px auto 0;
}

/* ============ Consistente cards: radius + schaduw overal gelijk ============ */

.contact_block,
.contactblock,
.section-subpages .subpage,
.section-academy .academy .cursus,
.section-formulier .wpcf7-form,
.section-wiebenjij .content,
.sidebar li.widget,
.waarwevoorstaan .overons_block,
.borrelstekst {
	background-color: var(--ex-surface);
	border: 1px solid var(--ex-border);
	border-radius: var(--ex-radius);
	box-shadow: var(--ex-shadow);
	overflow: hidden;
}
.borrels img,
.plyr--video,
.section-page .content .plyr,
.h5vp_bs_player_wraper,
.beschikbaarheid .ui-datepicker {
	border-radius: var(--ex-radius);
	overflow: hidden;
	box-shadow: var(--ex-shadow);
}
/* Afbeeldingen die tot de rand van zo'n blok lopen netjes mee afronden */
.contactblock img {
	border-radius: 0;
}
/* Sidebar-widgets (o.a. "Let's talk") */
.sidebar li.widget {
	box-shadow: var(--ex-shadow);
}
.sidebar li.widget img {
	border-radius: 0;
}
/* Losse uitgelichte afbeeldingen in de sidebar (o.a. pand-foto op contact) */
ul.sidebar > img,
.sidebar img.wp-post-image {
	border-radius: var(--ex-radius);
	box-shadow: var(--ex-shadow);
}

/* ============ Slider-pijlen ============ */

.slick-arrow {
	width: 48px;
	height: 48px;
	background-color: var(--ex-surface);
	border-radius: 999px;
	box-shadow: var(--ex-shadow-lift);
	background-size: 20px;
	z-index: 20;
	transition: transform .15s var(--ex-ease);
}
.slick-arrow:hover,
.slick-arrow:focus {
	background-color: var(--ex-surface);
	transform: translate(0, -50%) scale(1.08);
}
.slick-arrow.slick-next {
	right: -64px;
	background-size: 20px;
}
.slick-arrow.slick-prev {
	left: -64px;
	background-size: 20px;
}
@media (max-width: 1360px) {
	.slick-arrow.slick-next { right: 6px; }
	.slick-arrow.slick-prev { left: 6px; }
}

/* Afbeeldingen in contentpagina's */
.section img.alignleft,
.section img.alignright,
.section img.aligncenter,
.section .wp-caption,
article img {
	border-radius: var(--ex-radius-sm);
}

/* ================================================================
   DESIGN 2027 — warm & kleurrijk (goedgekeurd concept)
   ================================================================ */

/* Reveal-animaties */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ex-ease), transform .8s var(--ex-ease); }
.rv.on { opacity: 1; transform: none; }
.rv-d1{transition-delay:.08s}.rv-d2{transition-delay:.16s}.rv-d3{transition-delay:.24s}.rv-d4{transition-delay:.32s}.rv-d5{transition-delay:.4s}
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* Header: warm creme glas */
.site-hdr__bar {
	background: rgba(250, 246, 239, .86);
	border-color: rgba(43, 38, 32, .08);
}
.site-hdr__cta {
	background: var(--ex-red);
	box-shadow: 0 8px 24px -8px rgba(217, 43, 58, .55);
}
.site-hdr__cta:hover {
	box-shadow: 0 12px 28px -8px rgba(217, 43, 58, .7);
}

/* ===== Homepage 2027 ===== */
.hx-hero { position: relative; padding: 76px 28px 40px; text-align: center; overflow: clip; }
.hx-hero__blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hx-hero__blob--1 { width: 640px; height: 640px; background: rgba(224, 138, 46, .16); top: -260px; left: -160px; }
.hx-hero__blob--2 { width: 640px; height: 640px; background: rgba(217, 43, 58, .1); top: -200px; right: -180px; }
.hx-kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ex-font-body); font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ex-muted); }
.hx-kicker:before, .hx-kicker:after { content: ""; width: 22px; height: 2px; background: var(--ex-red); border-radius: 2px; }
.hx-hero h1 { position: relative; font-family: var(--ex-font-head); font-weight: 700; font-size: clamp(32px, 5vw, 66px); line-height: 1.08; letter-spacing: -.03em; margin: 22px auto 18px; max-width: 900px; padding: 0; color: var(--ex-ink); }
.hx-hero h1 em { font-style: normal; color: var(--ex-red); }
.hx-hero .hx-sub { position: relative; font-size: 18px; line-height: 1.7; color: var(--ex-muted); max-width: 560px; margin: 0 auto 34px; }
.hx-facts { position: relative; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hx-fact { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--ex-border); border-radius: 999px; padding: 10px 18px; font-size: 14px; font-weight: 500; color: var(--ex-muted); box-shadow: 0 6px 18px -8px rgba(43, 38, 32, .14); }
.hx-fact b { font-family: var(--ex-font-head); font-weight: 700; color: var(--ex-red); }
.hx-ecg { max-width: 600px; margin: 38px auto 0; height: 60px; }
.hx-ecg svg { width: 100%; height: 100%; }
.hx-ecg__line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: hx-ecg 3.2s var(--ex-ease) .4s forwards; }
@keyframes hx-ecg { to { stroke-dashoffset: 0; } }

/* Domeinen-grid */
.hx-dom { padding: 44px 28px 40px; }
.hx-dom__grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.hx-dcard { position: relative; border-radius: 28px; overflow: hidden; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff; transition: transform .3s var(--ex-ease), box-shadow .3s var(--ex-ease); }
.hx-dcard:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -24px rgba(43, 38, 32, .38); }
.hx-dcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ex-ease); }
.hx-dcard:hover img { transform: scale(1.05); }
.hx-dcard:after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(0, 0, 0, 0) 42%, var(--ov) 88%); z-index: 1; }
.hx-dcard--amb { --ov: rgba(13, 90, 77, .92); background: var(--ex-ambulance); }
.hx-dcard--mld { --ov: rgba(74, 53, 116, .92); background: var(--ex-meldkamer); }
.hx-dcard--zkh { --ov: rgba(150, 84, 15, .92); background: var(--ex-ziekenhuis); }
.hx-dcard--car { --ov: rgba(16, 99, 92, .92); background: var(--ex-caribbean); }
.hx-dcard--aca { --ov: rgba(35, 80, 120, .92); background: var(--ex-academy); }
.hx-dcard--aca img { object-position: center 28%; }
.hx-dcard--vac { background: linear-gradient(165deg, #e6404e, var(--ex-red)); }
.hx-dcard--amb, .hx-dcard--mld { grid-column: span 3; }
.hx-dcard--zkh, .hx-dcard--car, .hx-dcard--aca { grid-column: span 2; }
.hx-dcard--vac { grid-column: span 6; min-height: 130px; flex-direction: row; justify-content: center; align-items: center; gap: 18px; }
.hx-dcard--vac .hx-dcard__txt { display: flex; align-items: baseline; gap: 14px; }
@media (max-width: 1000px) { .hx-dcard { grid-column: span 3 !important; min-height: 280px; } .hx-dcard--vac { grid-column: span 6 !important; min-height: 120px; } }
@media (max-width: 640px) { .hx-dcard { grid-column: span 6 !important; min-height: 240px; } .hx-dcard--vac { min-height: 110px; } }
.hx-dcard__txt { position: relative; z-index: 2; text-shadow: 0 1px 10px rgba(0, 0, 0, .25); }
.hx-dcard__txt .cat { font-size: 13.5px; font-weight: 600; letter-spacing: .05em; opacity: .85; display: block; margin-bottom: 6px; }
.hx-dcard__txt h3 { font-family: var(--ex-font-head); font-weight: 700; font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -.01em; color: #fff; margin: 0; padding: 0; }
.hx-dcard--amb .hx-dcard__txt h3 { font-size: clamp(30px, 3vw, 46px); }
.hx-dcard__arr { position: absolute; top: 22px; right: 22px; z-index: 2; width: 46px; height: 46px; border-radius: 999px; background: rgba(255, 255, 255, .18); display: flex; align-items: center; justify-content: center; font-size: 19px; transition: background .2s, transform .25s var(--ex-ease); }
.hx-dcard:hover .hx-dcard__arr { background: #fff; color: var(--ex-ink); transform: rotate(45deg); }
.hx-dcard--vac b { font-family: var(--ex-font-head); font-weight: 700; font-size: 46px; line-height: 1; }
.hx-dcard--vac span { font-family: var(--ex-font-head); font-size: 22px; font-weight: 600; opacity: .95; }

/* Waarom-sectie */
.hx-why { padding: 110px 28px 60px; }
.hx-shead { max-width: 1300px; margin: 0 auto 48px; text-align: center; }
.hx-shead .hx-kicker { margin-bottom: 16px; }
.hx-shead h2 { font-family: var(--ex-font-head); font-weight: 700; font-size: clamp(28px, 3.6vw, 48px); letter-spacing: -.02em; line-height: 1.08; color: var(--ex-ink); margin: 0; padding: 0; }
.hx-shead h2 em { font-style: normal; color: var(--ex-red); }
.hx-shead p { color: var(--ex-muted); font-size: 16.5px; line-height: 1.7; max-width: 520px; margin: 16px auto 0; }
.hx-why__grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hx-wcard { border-radius: 28px; padding: 40px 34px; transition: transform .3s var(--ex-ease); }
.hx-wcard:hover { transform: translateY(-6px); }
.hx-wcard--a { background: #f3e8d5; }
.hx-wcard--b { background: #e7ecdd; }
.hx-wcard--c { background: #f4e3de; }
.hx-wcard .ico { width: 58px; height: 58px; border-radius: 18px; background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; box-shadow: 0 8px 20px -8px rgba(43, 38, 32, .18); }
.hx-wcard h3 { font-family: var(--ex-font-head); font-weight: 700; font-size: 23px; margin: 0 0 12px; padding: 0; color: var(--ex-ink); }
.hx-wcard p { color: var(--ex-muted); font-size: 15.5px; line-height: 1.75; margin: 0; padding: 0; }
@media (max-width: 900px) { .hx-why__grid { grid-template-columns: 1fr; } }
.hx-certs { max-width: 1300px; margin: 64px auto 0; text-align: center; }
.hx-certs__label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ex-muted); margin-bottom: 26px; }
.hx-certs__logos { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; opacity: .6; }
.hx-certs__logos img { height: 42px; width: auto; filter: grayscale(1); mix-blend-mode: multiply; }

/* Quote-sectie */
.hx-quote { padding: 100px 28px; text-align: center; }
.hx-quote__card { max-width: 880px; margin: 0 auto; background: #fff; border-radius: 28px; padding: 64px 56px 52px; box-shadow: 0 24px 60px -28px rgba(43, 38, 32, .22); position: relative; }
.hx-quote__card:before { content: "\201C"; position: absolute; top: -34px; left: 50%; transform: translateX(-50%); width: 68px; height: 68px; border-radius: 999px; background: var(--ex-red); color: #fff; font-family: var(--ex-font-head); font-size: 44px; font-weight: 800; display: flex; align-items: flex-end; justify-content: center; line-height: 1.4; box-shadow: 0 14px 30px -10px rgba(217, 43, 58, .5); }
.hx-quote blockquote { font-family: var(--ex-font-head); font-weight: 600; font-size: clamp(20px, 2.4vw, 30px); line-height: 1.45; letter-spacing: -.01em; margin: 0 0 30px; min-height: 2.9em; transition: opacity .4s var(--ex-ease); border: 0; padding: 0; color: var(--ex-ink); }
.hx-quote blockquote.fade, .hx-quote .hx-quote__who.fade { opacity: 0; }
.hx-quote__who { display: flex; align-items: center; justify-content: center; gap: 14px; transition: opacity .4s var(--ex-ease); }
.hx-quote__who img { width: 52px; height: 52px; border-radius: 999px; object-fit: cover; box-shadow: 0 0 0 3px var(--ex-border); }
.hx-quote__who > div { text-align: left; }
.hx-quote__who b { font-family: var(--ex-font-head); font-size: 16px; display: block; color: var(--ex-ink); }
.hx-quote__who span { font-size: 13.5px; color: var(--ex-muted); }
.hx-quote__dots { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }
.hx-quote__dots button { width: 30px; height: 5px; border-radius: 999px; border: 0; background: var(--ex-border); cursor: pointer; padding: 0; transition: background .2s; }
.hx-quote__dots button.on { background: var(--ex-red); }

/* ===== Footer: van donker naar warm licht ===== */
.site-ftr__main {
	background: #ffffff;
	border-top: 1px solid var(--ex-border);
	border-radius: 44px 44px 0 0;
}
.site-ftr__tagline,
.site-ftr__col p,
.site-ftr__menu ul li a,
.site-ftr__col p a {
	color: var(--ex-muted);
}
.site-ftr__col p strong { color: var(--ex-ink); }
.site-ftr__col h3 { color: var(--ex-ink); }
.site-ftr__menu ul li a:hover, .site-ftr__col p a:hover { color: var(--ex-ink); }
.site-ftr__logo { background: var(--ex-bg); border: 1px solid var(--ex-border); }
.site-ftr__social li a { background: var(--ex-bg); border: 1px solid var(--ex-border); }
.site-ftr__social li a:hover { background: var(--ex-red-soft); }
.site-ftr__portal { color: var(--ex-ink); border-color: rgba(43, 38, 32, .25); }
.site-ftr__portal:hover { color: #fff; }
.site-ftr__watermark { color: rgba(43, 38, 32, .035); }
.site-ftr__bottom { background: #ffffff; border-top: 1px solid var(--ex-border); }
.site-ftr__bottom-inner, .site-ftr__bottom-menu ul li a { color: var(--ex-muted); }
.site-ftr__bottom-menu ul li a:hover { color: var(--ex-ink); }
.site-ftr__legal { color: rgba(43, 38, 32, .35); }

/* Geen onderstreping op 2027-kaarten (oude link-styling) */
a.hx-dcard, a.hx-dcard:hover, a.hx-dcard:focus,
a.hx-dcard *, a.hx-dcard:hover * {
	text-decoration: none !important;
	color: #fff;
}
a.hx-dcard:hover .hx-dcard__arr { color: var(--ex-ink); }

/* ===== Header 2027: transparant over creme, achtergrond bij scroll ===== */
.site-hdr {
	padding: 0;
	transition: background .3s var(--ex-ease), box-shadow .3s var(--ex-ease);
}
.site-hdr__inner {
	max-width: none;
	margin: 0;
}
.site-hdr__bar {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	padding: 16px 30px;
	max-width: 1360px;
	margin: 0 auto;
}
.site-hdr.hdr-scrolled {
	background: rgba(250, 246, 239, .96);
	box-shadow: 0 1px 0 rgba(43, 38, 32, .08), 0 10px 30px -20px rgba(43, 38, 32, .18);
}
@media (min-width: 768px) {
	.site-hdr.hdr-scrolled {
		background: rgba(250, 246, 239, .86);
		-webkit-backdrop-filter: blur(16px) saturate(1.4);
		backdrop-filter: blur(16px) saturate(1.4);
	}
}
.site-hdr .navigatie ul li a {
	font-weight: 500;
	font-size: 15px;
}
.subnavigatie .container {
	padding-top: 0;
}
@media (max-width: 767px) {
	.site-hdr__bar {
		padding: 12px 16px;
		background: transparent;
		border-radius: 0;
	}
	.site-hdr.hdr-scrolled .site-hdr__bar {
		background: transparent;
	}
}

/* ===== Subpagina's in lijn met de homepage ===== */

/* Zachte warme gradient bovenin elke pagina (zelfde sfeer als de homepage-hero) */
body:not(.home) {
	position: relative;
}
body:not(.home):before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 560px;
	pointer-events: none;
	background:
		radial-gradient(640px 420px at 8% -10%, rgba(224, 138, 46, .14), transparent 70%),
		radial-gradient(640px 420px at 92% -10%, rgba(217, 43, 58, .09), transparent 70%);
}
body:not(.home) .section,
body:not(.home) .site-ftr {
	position: relative;
	z-index: 1;
}

/* Keurmerkenband: van grijs blok naar warme strook (zoals homepage-certs) */
.section-keurmerk {
	background-color: transparent;
	padding: 30px 0;
}
.section-keurmerk .keurmerk img {
	filter: grayscale(1);
	mix-blend-mode: multiply;
	opacity: .65;
	transition: filter .2s var(--ex-ease), opacity .2s var(--ex-ease);
}
.section-keurmerk .keurmerk:hover img {
	filter: none;
	opacity: 1;
}

/* Sectiekoppen op subpagina's: zelfde maat als homepage */
.section-page .content h1,
.section-page .content h2.title {
	letter-spacing: -.02em;
}

/* Subpage-secties: koud grijs → warm creme */
.section-subpages,
.section-academy,
.section-wiebenjij {
	background-color: var(--ex-bg);
}

/* ===== Vacature-detail: formulierband in 2027-stijl ===== */

/* Rode band: warme gradient + afgeronde bovenkant (zoals footer) */
.section-formulier.formulier-solliciteren {
	background: linear-gradient(135deg, #e6404e, var(--ex-red) 55%, var(--ex-red-dark));
	border-radius: 44px 44px 0 0;
	overflow: hidden;
}
.section-formulier.formulier-solliciteren .content h2 {
	font-family: var(--ex-font-head);
	font-weight: 700;
	letter-spacing: -.02em;
}
.section-formulier.formulier-solliciteren .content h2 strong {
	font-weight: 700;
}

/* Witte strook onder de band → warm creme */
.section-formulier .background:before {
	background-color: var(--ex-bg);
}

/* Verzendknop altijd in het warme merkrood (i.p.v. koude vakgebied-kleur) */
.wpcf7-form input[type="submit"],
body[class] .section-formulier .wpcf7-form input[type="submit"] {
	background-color: var(--ex-red) !important;
	color: #fff;
	box-shadow: 0 10px 26px -10px rgba(217, 43, 58, .6);
}
.wpcf7-form input[type="submit"]:hover,
body[class] .section-formulier .wpcf7-form input[type="submit"]:hover {
	background-color: var(--ex-red-dark) !important;
}

/* Deel-widget: sticky naast de vacaturetekst */
.single-vacature .sidebar {
	position: sticky;
	top: 110px;
}

/* Vacaturetekst: prettige leesbreedte */
.single-vacature .section-page .content {
	max-width: 720px;
}

/* Formulierkaart: koppen in inkt, links en accentrand in merkrood */
.section-formulier .wpcf7-form h2,
.section-formulier .wpcf7-form h3,
body[class] .section-formulier .wpcf7-form h2,
body[class] .section-formulier .wpcf7-form h3 {
	color: var(--ex-ink) !important;
	font-family: var(--ex-font-head);
	letter-spacing: -.01em;
}
.section-formulier .wpcf7-form a {
	color: var(--ex-red);
}
body[class] .section-formulier .wpcf7-form {
	border-top-color: var(--ex-red) !important;
}

/* Upload-plugin link in merkrood */
.codedropz-upload-inner a,
.dnd-upload-status a {
	color: var(--ex-red) !important;
}

/* ================================================================
   Elementor-native 2027: glue-styles zodat de homepage-blokken
   als bewerkbare Elementor-elementen dezelfde vormgeving krijgen
   ================================================================ */

/* Hero als Elementor-sectie */
.hx-hero-el:before {
	content: "";
	position: absolute;
	width: 640px; height: 640px;
	border-radius: 50%;
	filter: blur(90px);
	background: rgba(224, 138, 46, .16);
	top: -260px; left: -160px;
	pointer-events: none;
}
.hx-hero-el:after {
	content: "";
	position: absolute;
	width: 640px; height: 640px;
	border-radius: 50%;
	filter: blur(90px);
	background: rgba(217, 43, 58, .1);
	top: -200px; right: -180px;
	pointer-events: none;
}
.hx-hero-el { overflow: clip; }
.hx-hero .elementor-widget-container { position: relative; }
.hx-kicker .elementor-widget-container {
	display: inline-flex; align-items: center; gap: 10px;
}
.hx-kicker .elementor-widget-container:before,
.hx-kicker .elementor-widget-container:after {
	content: ""; width: 22px; height: 2px;
	background: var(--ex-red); border-radius: 2px;
}
.hx-kicker .elementor-heading-title {
	font-family: var(--ex-font-body) !important;
	font-size: 13px !important; font-weight: 700 !important;
	letter-spacing: .2em !important; text-transform: uppercase;
	color: var(--ex-muted) !important;
}
.hx-sub-el { max-width: 560px; margin: 0 auto; }
.hx-sub-el p { font-size: 18px; line-height: 1.7; color: var(--ex-muted); }
.hx-facts-el p {
	display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
	margin: 0; padding: 0;
}
.hx-facts-el .hx-fact b { font-family: var(--ex-font-head); font-weight: 700; color: var(--ex-red); }

/* Vakgebied-cards als Elementor-kolommen */
.hx-dcard-el { padding: 0; display: flex; }
.hx-dcard-el > .elementor-widget-wrap,
.hx-dcard-el > .elementor-element-populated {
	width: 100%;
	min-height: 340px;
	display: flex; flex-direction: column; justify-content: flex-end;
	position: relative;
	padding: 30px;
	border-radius: 28px;
	overflow: hidden;
}
.hx-dcard-el.hx-dcard:after { display: none; }
.hx-dcard-el > .elementor-element-populated:after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(200deg, rgba(0, 0, 0, 0) 42%, var(--ov) 88%);
}
.hx-dcard-el .elementor-widget { width: auto; position: relative; z-index: 2; }
.hx-dcard .hx-cat-el p {
	font-size: 13.5px; font-weight: 600; letter-spacing: .05em;
	color: #fff; opacity: .85; margin: 0 0 6px; padding: 0;
	text-shadow: 0 1px 10px rgba(0, 0, 0, .25);
}
.hx-dcard .elementor-heading-title,
.hx-dcard .elementor-heading-title a {
	font-family: var(--ex-font-head); font-weight: 700;
	font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -.01em;
	color: #fff !important; text-shadow: 0 1px 10px rgba(0, 0, 0, .25);
}
.hx-dcard--amb .elementor-heading-title,
.hx-dcard--amb .elementor-heading-title a { font-size: clamp(30px, 3vw, 46px); }
/* hele kaart klikbaar via de titel-link */
.hx-cardlink a:after { content: ""; position: absolute; inset: 0; z-index: 3; }
/* pijl-bolletje */
.hx-dcard-el > .elementor-element-populated:before {
	content: "\2192";
	position: absolute; top: 22px; right: 22px; z-index: 2;
	width: 46px; height: 46px; border-radius: 999px;
	background: rgba(255, 255, 255, .18);
	display: flex; align-items: center; justify-content: center;
	font-size: 19px; color: #fff;
	transition: background .2s, transform .25s var(--ex-ease);
}
.hx-dcard-el:hover > .elementor-element-populated:before { background: #fff; color: var(--ex-ink); transform: rotate(45deg); }

/* Rode vacature-strip als Elementor-sectie */
.hx-vacstrip-el {
	background: linear-gradient(165deg, #e6404e, var(--ex-red));
	border-radius: 28px;
	min-height: 130px;
	display: flex; align-items: center; justify-content: center;
	transition: transform .3s var(--ex-ease), box-shadow .3s var(--ex-ease);
}
.hx-vacstrip-el:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -24px rgba(43, 38, 32, .38); }
.hx-vacstrip-el p { margin: 0; text-align: center; }
.hx-vacstrip-el p, .hx-vacstrip-el a {
	font-family: var(--ex-font-head); font-weight: 700;
	font-size: 22px; color: #fff; text-decoration: none;
}
.hx-vacstrip-el b { font-size: 46px; line-height: 1; margin-right: 12px; }
.hx-vacstrip-el .hx-cardlink-strip a:after { content: ""; position: absolute; inset: 0; }

/* Waarom-sectie als Elementor */
.hx-h2-el .elementor-heading-title {
	font-family: var(--ex-font-head); font-weight: 700;
	font-size: clamp(28px, 3.6vw, 48px); letter-spacing: -.02em; line-height: 1.08;
	color: var(--ex-ink);
}
.hx-h2-el .elementor-heading-title em { font-style: normal; color: var(--ex-red); }
.hx-lead-el { max-width: 520px; margin: 0 auto; }
.hx-lead-el p { color: var(--ex-muted); font-size: 16.5px; line-height: 1.7; }
.hx-wcard { margin-bottom: 0; }
.hx-wcard > .elementor-widget-wrap,
.hx-wcard > .elementor-element-populated { padding: 40px 34px; }
.hx-wcard .ico p { margin: 0; }
.hx-wcard h3.elementor-heading-title { font-size: 23px; color: var(--ex-ink); }

/* Sectie-afstanden Elementor-home */
.hx-dom-el > .elementor-container { gap: 18px; }
.hx-why-cards-el { padding: 0 28px 60px; }
.hx-certs-sec-el { padding: 0 28px 40px; }

/* Elementor-overrides: logo-hoogtes en herokop */
.hx-certs__logos img { height: 42px !important; width: auto !important; }
.hx-hero h1.elementor-heading-title { color: var(--ex-ink) !important; }
.hx-hero h1.elementor-heading-title em { color: var(--ex-red) !important; }
.hx-h2-el .elementor-heading-title { color: var(--ex-ink) !important; }
.hx-ecg { margin-left: auto !important; margin-right: auto !important; }

/* Expliciete kleurgradienten op de Elementor-cards (var-inheritance is niet betrouwbaar hier) */
.hx-dcard--amb.hx-dcard-el > .elementor-element-populated:after { background: linear-gradient(200deg, rgba(0,0,0,0) 42%, rgba(13, 90, 77, .92) 88%); }
.hx-dcard--mld.hx-dcard-el > .elementor-element-populated:after { background: linear-gradient(200deg, rgba(0,0,0,0) 42%, rgba(74, 53, 116, .92) 88%); }
.hx-dcard--zkh.hx-dcard-el > .elementor-element-populated:after { background: linear-gradient(200deg, rgba(0,0,0,0) 42%, rgba(150, 84, 15, .92) 88%); }
.hx-dcard--car.hx-dcard-el > .elementor-element-populated:after { background: linear-gradient(200deg, rgba(0,0,0,0) 42%, rgba(16, 99, 92, .92) 88%); }
.hx-dcard--aca.hx-dcard-el > .elementor-element-populated:after { background: linear-gradient(200deg, rgba(0,0,0,0) 42%, rgba(35, 80, 120, .92) 88%); }

/* Ritme tussen de card-rijen en de strip */
.hx-dom-el { margin-bottom: 18px; }

/* ECG-lijn netjes gecentreerd op volle breedte */
.hx-ecg { width: 100%; }

/* Compacte widget-afstanden binnen de cards */
.hx-dcard-el .elementor-widget:not(:last-child) { margin-bottom: 2px; }
.hx-dcard .hx-cat-el p { opacity: 1; }

/* Kicker centreren (inline-flex container centreert via de wrapper) */
.hx-kicker { text-align: center; }

/* Elementor-kicker: wrapper als blok zodat de inline-flex-inhoud centreert */
.elementor-widget.hx-kicker { display: block; text-align: center; }

/* Academie-pagina in Elementor */
.hx-aca-intro-el { padding-top: 30px; }
.hx-aca-intro-el .ex-btn--academy { margin: 20px 0 0; }

/* Cursus-inschrijfknoppen in de warme academie-kleur */
.section-academy .academy .cursus .cursus-inschrijven {
	background-color: var(--ex-academy);
}
