/*
 Theme Name: HR Kinderopvang Child
 Theme URI: https://hrkinderopvang.nl/
 Description: Child theme voor HR Kinderopvang site
 Author: Clint Chen
 Template: astra
 Version: 1.0
*/

@import url("../astra/style.css");

/* Hier komt jouw eigen CSS onder */

/* ----------------------------------------
   Basis kleuren & typografie
---------------------------------------- */

/* -----------------------------
   Basis
----------------------------- */

:root {
  /* Logo kleuren */
  --hp-primary: #512b79;      /* hoofdkleur donkerpaars */
  --hp-primary-dark: #3e205d; /* iets donkerder voor hover & CTA */
  --hp-accent: #9d86bb;       /* accent / secundaire kleur */

  /* Achtergronden */
  --hp-bg-light: #ffffff;
  --hp-bg-grey: #f5f3f8;      /* zachte paarse tint, afgeleid van #cbc1d5 */

  /* Tekst */
  --hp-text: #22162f;         /* donkerpaars i.p.v. bijna-zwart */
  --hp-muted: #6b5a80;        /* gedempte tekst (gebaseerd op #b0a2c3) */
}

body {
  color: var(--hp-text);
}

/* Container */

.hp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* -----------------------------
   Homepage Hero
----------------------------- */

#masthead{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* WP auto-wrap: nuke the <p> around the A completely */
.al-hero > p{
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
}

/* remove any theme image spacing */
.al-hero > p > img.al-hero__mark{
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: top;
}

.al-hero p:empty{
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.al-hero{
  position: relative;
  min-height: 640px;                 /* stable baseline */
  height: clamp(600px, 70svh, 760px);
  overflow: visible;
  isolation: isolate;

  /* FULL-BLEED: removes the side gaps even inside a boxed WP wrapper */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* background image layer */
.al-hero__bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: url("/wp-content/uploads/homeheader.jpg"); /* <-- change this */
  background-size: cover;
  background-position: center 35%; /* try 30–45% */
  z-index: 0;
}

/* dark overlay on the right like the screenshot */
.al-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 55%,
      rgba(82,43,121,.65) 100%);
  z-index: 1;
}

/* big A on the left */
.al-hero__mark{
  position: absolute;
  left: -80px;
  bottom: -70px;
  width: clamp(360px, 34vw, 520px);
  height: auto;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.al-hero__container{
  position: relative;
  z-index: 3;

  /* was: clamp(32px, 5vw, 64px) */
  padding-top: clamp(8px, 2vw, 20px);
  padding-bottom: clamp(24px, 4vw, 56px);

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* white content panel */
.al-hero__panel{
  width: min(680px, 92vw); /* was 520px */
  background: rgba(255,255,255,.88);
  padding: clamp(24px, 3.2vw, 44px);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

/* typography */
.al-hero__title{
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #0a2f42;
}

.al-hero__subtitle{
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 20px;
  color: #0a2f42;
}

.al-hero__text{
  margin: 0;
  color: #0a2f42;
  font-size: 15px;
  line-height: 1.55;
  max-width: 62ch;
}

/* responsive adjustments */
@media (max-width: 800px){
  .al-hero{
    min-height: clamp(460px, 58vh, 620px);
  }

  .al-hero__container{
    justify-content: center;
    min-height: clamp(460px, 58vh, 620px);
  }

  .al-hero__mark{
    left: auto !important;
    right: -88px !important;
    top: 0 !important;
    bottom: auto !important;
    width: clamp(420px, 112vw, 680px);
    opacity: .95;
  }

.al-hero::after{
  background: rgba(82,43,121,.35);
}

}


/* -----------------------------
   Hero
----------------------------- */

.hp-hero {
  background: linear-gradient(135deg, #cbc1d5, #ffffff);
  padding: 5rem 0 4rem;

  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hp-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 420px; /* optional: prevents tiny hero height */
  display: flex;     /* if your container doesn't already */
  align-items: center;
}

.hp-hero__mark{
  position: absolute;
  left: clamp(-220px, -18vw, -120px);
  top: 50%;
  transform: translateY(-50%);

  width: clamp(520px, 62vw, 1100px);
  height: auto;

  z-index: 1;           /* behind card */
  pointer-events: none;
  user-select: none;

  opacity: 1;           /* change if you want softer */
}
.hp-hero__mark{ z-index: 1; }
.hp-hero__inner{ z-index: 2; }

@media (max-width: 640px){
  .hp-hero__mark{
    left: -40vw;
    width: 120vw;
    opacity: 0.6;
  }
}


.hp-hero__text {
  flex: 1 1 320px;
}

.hp-hero__side {
  flex: 0 1 320px;
}

.hp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--hp-primary-dark);
  margin-bottom: 0.5rem;
}

.hp-hero h1 {
  font-size: clamp(2.3rem, 3.4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hp-lead {
  font-size: 1.05rem;
  color: var(--hp-muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

/* Hero card rechts */

.hp-hero-card{
  position: relative;
  z-index: 3;
}

.hp-hero-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.hp-hero-card ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--hp-muted);
}

/* -----------------------------
   Buttons
----------------------------- */

.hp-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.1s ease;
  font-size: 0.95rem;
}

.hp-btn--primary {
  background-color: var(--hp-primary);
  color: #ffffff;
  border-color: var(--hp-primary);
}

.hp-btn--primary:hover {
  background-color: var(--hp-primary-dark);
  border-color: var(--hp-primary-dark);
  transform: translateY(-1px);
}

.hp-btn--secondary {
  background-color: transparent;
  color: var(--hp-primary);
  border-color: var(--hp-primary);
}

.hp-btn--secondary:hover {
  background-color: rgba(31, 122, 140, 0.06);
  transform: translateY(-1px);
}

.hp-btn--ghost {
  background-color: transparent;
  color: var(--hp-primary);
  border-color: transparent;
}

.hp-btn--ghost:hover {
  background-color: rgba(31, 122, 140, 0.06);
  border-color: rgba(31, 122, 140, 0.2);
}

.hp-btn--light {
  background-color: #ffffff;
  color: var(--hp-primary);
  border-color: #ffffff;
}

.hp-btn--light:hover {
  background-color: var(--hp-accent);
  color: #1f2933;
  border-color: var(--hp-accent);
}

/* -----------------------------
   Sections
----------------------------- */

.hp-section {
  padding: 4rem 0;
}

.hp-section--light {
  background-color: var(--hp-bg-light);
}

.hp-section--grey {
  background-color: #e2dce8;
}

.hp-section__header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.hp-section__header h2 {
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.hp-section__header p {
  color: var(--hp-muted);
  line-height: 1.6;
}

.hp-section__footer {
  margin-top: 2rem;
  text-align: center;
}

/* -----------------------------
   Grid & cards
----------------------------- */

.hp-grid {
  display: grid;
  gap: 1.75rem;
}

.hp-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hp-card {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.hp-card--soft {
  box-shadow: none;
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.8);
}

.hp-card--border {
  border-left: 4px solid var(--hp-primary);
}

.hp-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.hp-card p {
  color: var(--hp-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.hp-link {
  font-weight: 600;
  color: var(--hp-primary);
  text-decoration: none;
  font-size: 0.9rem;
}

.hp-link:hover {
  text-decoration: underline;
}

/* -----------------------------
   Opdrachtgevers
----------------------------- */

.hp-clients {
  display: grid;
  gap: 2rem;
}

.hp-clients__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.hp-client-logo {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  color: var(--hp-muted);
}

.hp-quote {
  font-style: italic;
  color: var(--hp-muted);
  max-width: 40rem;
}

/* -----------------------------
   CTA onderaan
----------------------------- */

.hp-cta {
  background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-dark));
  color: #ffffff;
  padding: 3.5rem 0;
}

.hp-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hp-cta h2 {
  margin-bottom: 0.5rem;
}

.hp-cta p {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------
   Responsive
----------------------------- */

@media (max-width: 900px) {
  .hp-hero__inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hp-grid--3 {
    grid-template-columns: 1fr;
  }

  .hp-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Voorkomt horizontale scrollbar door de 100vw-truc */
body {
  overflow-x: hidden;
}

/* ---------------------------------
   Opdrachtgevers – scrollbare carrousel
---------------------------------- */

.hp-logo-carousel{
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;

  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 12px;
}
.hp-logo-window{
  overflow-x: hidden;   /* horizontaal verbergen */
  overflow-y: visible;  /* verticaal NIET afknippen (voor hover lift) */
  padding: 12px 0;      /* extra ruimte boven/onder zodat schaduw niet tegen de rand zit */
}


.hp-logo-track {
  display: flex;
  gap: 1.5rem;
}

/* Cards */
.hp-logo-item {
  flex: 0 0 auto;
  min-width: 180px;
}

.hp-logo-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.4rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              border-color 0.15s ease, background-color 0.15s ease;
}

/* Logo's gelijker qua 'optische grootte' */
.hp-logo-item img{
  width: 140px;        /* vaste breedte -> vierkante logo’s worden groter */
  height: 60px;        /* vaste hoogte -> lange logo’s passen nog steeds */
  object-fit: contain; /* nooit croppen */
  margin: 0 0 0.5rem;
  filter: grayscale(0.1);
  opacity: 0.96;
}

.hp-logo-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--hp-muted);
}

/* Hover effect */
.hp-logo-item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(81, 43, 121, 0.55);
}

/* Footer sectie uitlijnen */
.hp-section__footer {
  text-align: center;
  margin-top: 2rem;
}

/* Globale knopstijl (geldt voor ALLE hp-btn knoppen) */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
              border-color 0.15s ease, transform 0.1s ease;
  font-size: 0.95rem;
  line-height: 1; /* zorgt voor perfecte verticale centrering */
}

/* Ghost-variant (outline) – gebruikt bij 'Alle diensten bekijken' én onderaan */
.hp-btn--ghost {
  background-color: transparent;
  color: var(--hp-primary);
  border-color: var(--hp-primary);
}

.hp-btn--ghost:hover {
  background-color: rgba(81, 43, 121, 0.07);
  border-color: var(--hp-primary);
  transform: translateY(-1px);
}

/* Extra marge alleen voor de onderste knop, optioneel */
.hp-btn--footer {
  margin-top: 0.5rem;
}






/* -----------------------------
   Onze dienstverlening – pagina
------------------------------ */

/* Hero */
.svc-hero {
  background: linear-gradient(135deg, rgba(81, 43, 121, 0.15), rgba(203, 193, 213, 0.7));
  padding: 4.5rem 0 3.5rem;
}

.svc-hero__inner {
  max-width: 900px;
}

.svc-hero h1 {
  font-size: clamp(2.4rem, 3.2vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.svc-hero__lead {
  max-width: 48rem;
  color: var(--hp-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Kleine “pills” onder de intro */
.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(81, 43, 121, 0.12);
  color: var(--hp-primary-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Cards grid */
.svc-section {
  padding-top: 3.5rem;
}

.svc-grid {
  margin-top: 2rem;
}

.svc-card {
  min-height: 220px;
}

.svc-card h3 {
  margin-bottom: 0.5rem;
}

.svc-card p {
  margin-bottom: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .svc-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .svc-pills {
    gap: 0.4rem;
  }

  .svc-card {
    min-height: auto;
  }
}

/* Onze dienstverlening – 2 kolommen in plaats van 3 */
.svc-grid.hp-grid--3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Op mobiel nog steeds 1 kolom */
@media (max-width: 768px) {
  .svc-grid.hp-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------
   Dienstverlening – detailpagina's
------------------------------ */

/* Hero bovenaan */
.svc-detail-hero {
  background: linear-gradient(
    135deg,
    rgba(81, 43, 121, 0.14),
    rgba(203, 193, 213, 0.7)
  );
  padding: 4rem 0 3rem;
}

.svc-detail-hero--image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #e8e6ec;
  min-height: 340px;
  padding-top: 5.6rem;
  padding-bottom: 5.2rem;
}

.svc-detail-hero--image::before,
.svc-detail-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.svc-detail-hero--image::before {
  background: url("/wp-content/uploads/dienstverlening.jpg") center center / cover no-repeat;
  z-index: 0;
}

.svc-detail-hero--image::after {
  background: rgba(239, 239, 242, 0.62);
  z-index: 1;
}

.svc-detail-hero .hp-container {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.svc-detail-hero .hp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--hp-primary-dark);
  margin-bottom: 0.4rem;
}

.svc-detail-hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.svc-detail-hero p.svc-detail-lead {
  color: var(--hp-muted);
  line-height: 1.7;
  max-width: 48rem;
}

.svc-detail-hero--image p.svc-detail-lead {
  color: var(--hp-primary-dark);
}

@media (max-width: 768px) {
  .svc-detail-hero--image {
    min-height: 300px;
    padding-top: 4.6rem;
    padding-bottom: 4.2rem;
  }
}

/* Hoofdcontent */
.svc-detail {
  padding: 3rem 0 4rem;
  background-color: #ffffff;
}

.svc-detail__layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.svc-detail__main {
  flex: 2 1 0;
}

.svc-detail__side {
  flex: 1 1 0;
}

/* Tekst in main kolom */
.svc-detail__main p {
  line-height: 1.7;
  color: var(--hp-text);
  margin-bottom: 1rem;
}

.svc-detail__main ul {
  margin: 0 0 1.25rem 1.2rem;
  color: var(--hp-text);
}

/* Sidebar-kaart */
.svc-detail-card {
  background-color: #faf7ff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.svc-detail-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.svc-detail-card ul {
  margin: 0 0 0.75rem 1.1rem;
  color: var(--hp-text);
}

.svc-detail-meta {
  font-size: 0.85rem;
  color: var(--hp-muted);
}

/* Finance / Legal / Tax tabs */
.flt-tabs {
  margin: 0 0 28px;
}

.flt-tabs__nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
  margin: 0 0 26px;
  border: 1px solid rgba(82, 43, 121, 0.18);
  border-radius: 999px;
  background: #faf7ff;
}

.flt-tabs__tab {
  appearance: none;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent;
  color: transparent !important;
  cursor: pointer;
  display: inline-grid !important;
  place-items: center !important;
  font: inherit;
  font-weight: 700;
  height: 48px;
  line-height: 1 !important;
  min-height: 48px;
  padding: 0 20px !important;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.flt-tabs__tab::before {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #522b79;
  line-height: 1;
  transform: translate(-50%, -54%);
  white-space: nowrap;
}

.flt-tabs__tab[data-flt-tab="finance"]::before {
  content: "Finance";
}

.flt-tabs__tab[data-flt-tab="legal"]::before {
  content: "Legal";
}

.flt-tabs__tab[data-flt-tab="tax"]::before {
  content: "Tax";
}

.flt-tabs__tab:hover,
.flt-tabs__tab:focus-visible {
  background: rgba(82, 43, 121, 0.1);
  outline: none;
}

.flt-tabs__tab.is-active,
.flt-tabs__tab[aria-selected="true"] {
  background: #522b79;
  color: transparent !important;
  box-shadow: 0 8px 18px rgba(82, 43, 121, 0.2);
}

.flt-tabs__tab.is-active::before,
.flt-tabs__tab[aria-selected="true"]::before {
  color: #fff;
}

.flt-tabs__panel {
  animation: flt-panel-in 0.18s ease;
}

.flt-tabs__panel[hidden] {
  display: none !important;
}

@keyframes flt-panel-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .flt-tabs__nav {
    display: flex;
    width: 100%;
  }

  .flt-tabs__tab {
    flex: 1 1 0;
    padding-inline: 12px;
  }
}

/* onderaan: terug-link + CTA */
.svc-detail-footer {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.svc-detail-back {
  font-size: 0.9rem;
}

.svc-detail-back a {
  text-decoration: none;
  color: var(--hp-primary);
}

.svc-detail-back a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .svc-detail__layout {
    flex-direction: column;
  }

  .svc-detail__side {
    width: 100%;
  }
}


/* -----------------------------
   Over ons – pagina
------------------------------ */

/* Over ons hero – content gecentreerd, achtergrond full-width */
.about-hero {
  position: relative;
  padding: 4rem 0 3.2rem;
  /* GEEN overflow:hidden hier, anders wordt de bg afgesneden */
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%); /* centreer over het viewport */
  background: linear-gradient(
    135deg,
    rgba(81, 43, 121, 0.12),
    rgba(203, 193, 213, 0.75)
  );
  z-index: -1; /* achter de inhoud */
}

@media (max-width: 768px) {
  .about-hero {
    padding: 3.3rem 0 2.5rem;
  }
}

.about-hero__lead {
  max-width: 46rem;
  color: var(--hp-muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* kernwaarden onder de lead */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.about-value h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.about-value p {
  font-size: 0.9rem;
  color: var(--hp-text);
}

/* Over ons – expertisekaarten */
.about-subnav__grid {
  margin: 2rem auto 0;              /* blok zelf centreren */
  max-width: 1000px;                /* wat smaller dan de pagina */
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* mobiel: 1 kolom */
@media (max-width: 900px) {
  .about-subnav__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

.about-subnav-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem 1.7rem;
  border-radius: 1.2rem;
  background-color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: var(--hp-text);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.about-subnav-card h3 {
  margin-bottom: 0.4rem;
}

.about-subnav-card p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.about-subnav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hp-primary);
}

.about-subnav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  border-color: rgba(81, 43, 121, 0.6);
  background-color: #faf7ff;
}

@media (max-width: 900px) {
  .about-subnav__grid {
    grid-template-columns: 1fr;
  }
}


/* responsive */
@media (max-width: 900px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

.about-subnav-card h3,
.about-subnav-card p,
.about-subnav-link {
  text-decoration: none;
}

.about-subnav-card,
.about-subnav-card * {
  text-decoration: none !important;
}

/* -----------------------------
   Contactpagina
------------------------------ */

.contact-hero {
  background: linear-gradient(
    135deg,
    rgba(81, 43, 121, 0.12),
    rgba(203, 193, 213, 0.75)
  );
  padding: 4rem 0 3rem;
}

.contact-hero__lead {
  max-width: 46rem;
  color: var(--hp-muted);
  line-height: 1.7;
}

/* Hoofdsectie: formulier + info */
.contact-main {
  padding: 3rem 0 4rem;
  background-color: #ffffff;
}

.contact-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Formulierkaart */
.contact-form-card {
  flex: 2 1 0;
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.8rem 1.9rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.contact-form-card h2 {
  margin-bottom: 0.4rem;
}

.contact-form-card p {
  margin-bottom: 1rem;
  color: var(--hp-text);
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form-row {
  display: flex;
  gap: 0.9rem;
}

.contact-field {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-field--full {
  flex: 1 1 100%;
}

.contact-field label {
  font-size: 0.85rem;
  color: var(--hp-muted);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--hp-primary);
  box-shadow: 0 0 0 1px rgba(81, 43, 121, 0.25);
}

/* Acties */
.contact-form-actions {
  margin-top: 0.3rem;
}

.contact-form-actions--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Contactinfo rechts */
.contact-info {
  flex: 1.3 1 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background-color: #faf7ff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.92rem;
}

.contact-info-card--light {
  background-color: #ffffff;
}

.contact-info-card a {
  color: var(--hp-primary);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-map-placeholder {
  border-radius: 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  padding: 0.25rem 1rem 0.9rem;
  margin-top: -2.5rem;
  margin-bottom: -3.5rem;
  font-size: 0.85rem;
  color: var(--hp-muted);
}

.contact-location {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
  padding: clamp(24px, 3vw, 36px);
  background: transparent;
}

.contact-location::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #e2dce8;
  z-index: -1;
}

.contact-location__image,
.contact-location__map {
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.contact-location__map {
  border-radius: 18px;
}

.contact-location__image img,
.contact-location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: 0;
}

.contact-location__image img {
  object-fit: cover;
}

.contact-office {
  padding: 0 0 4rem;
  background: #fff;
}

.contact-office__card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: #faf7ff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.contact-office__image {
  min-height: 320px;
}

.contact-office__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.contact-office__text {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 42px);
}

.contact-office__text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.contact-office__text p {
  margin: 0;
  color: var(--hp-text);
  line-height: 1.7;
}

/* Mailingblok onderaan */
.contact-mailing {
  padding: 3rem 0 4rem;
  background: #fff;
}

.contact-mailing-card {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.8rem 1.9rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 1.5rem;
  align-items: center;
}

.contact-mailing-text h2 {
  margin-bottom: 0.4rem;
}

.contact-mailing-text p {
  margin-bottom: 0;
  color: var(--hp-text);
}

.contact-mailing-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-mailing-meta {
  font-size: 0.8rem;
  color: var(--hp-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-mailing-card {
    grid-template-columns: 1fr;
  }

  .contact-office__card {
    grid-template-columns: 1fr;
  }

  .contact-office__image,
  .contact-office__image img {
    min-height: 240px;
  }

  .contact-location {
    grid-template-columns: 1fr;
  }

  .contact-location__image,
  .contact-location__map,
  .contact-location__image img,
  .contact-location__map iframe {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 3.3rem 0 2.5rem;
  }

  .contact-form-row {
    flex-direction: column;
  }
}

/* Contact Form 7 – foutmeldingen netjes stylen */
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #b91c1c;
  margin-top: 0.2rem;
}

.wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
  border-radius: 0.6rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
}

/* Succes / fout / spam berichten */
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #16a34a;
  background-color: #dcfce7;
  color: #166534;
}

.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-form .wpcf7-response-output.wpcf7-spam-blocked {
  border-color: #b91c1c;
  background-color: #fee2e2;
  color: #991b1b;
}

/* Spinner wat subtieler */
.wpcf7 .wpcf7-spinner {
  margin-left: 0.5rem;
}

/* Over ons – hp-section full-width hack uitschakelen voor deze sectie */
.about-subnav.hp-section {
  position: static;
  left: auto;
  right: auto;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/* Secties over volledige schermbreedte trekken – alleen heroes (zonder Over ons) */
.hp-hero,
.svc-hero,
.jobs-hero,
.jobs-subhero,
.job-detail-hero,
.contact-hero,
.contact-mailing,
.svc-detail-hero,
.hp-cta {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

/* reCAPTCHA badge standaard verbergen */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ...maar op de contactpagina wél tonen (vervang 123 door jouw ID) */
.page-id-171 .grecaptcha-badge {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Vacaturepagina – tekst in knoppen nog iets hoger */
.jobs-type-btn {
  padding-top: 0.25rem;
  padding-bottom: 0.9rem;
}

/* Optioneel: ook voor de Verstuur-knop in de mailingkaart */
.jobs-mailing-submit {
  padding-top: 0.25rem;
  padding-bottom: 0.9rem;
}

/* Vacaturepagina – tekst in 'Doe een open sollicitatie'-knop extra omhoog */
.jobs-side-cta .hp-btn {
  padding-top: 0.25rem;
  padding-bottom: 0.9rem;
}

/* Contact – vacaturemailing-sectie met full-width achtergrond */
.contact-mailing {
  position: relative;
  padding: 3rem 0 4rem; /* jouw bestaande padding, aanpassen mag */
  /* geen overflow:hidden hier */
  background: #fff;
}

.contact-mailing::before {
  content: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  /* Gebruik hier dezelfde kleur als hp-section--grey */
  background-color: #f5f3f8; /* vervang dit evt. door jouw exacte grijs */
  z-index: -1;
}

/* Pijltjes naast de carrousel (niet overlappen) */
.hp-logo-nav{
  position: static;
  transform: none;

  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 26px;
  line-height: 0;
  color: #111827;
  justify-self: center;
}

.hp-logo-nav:hover{
  transform: scale(1.03);
  color: #0f172a;
  background: #f8fafc;
}

.hp-logo-nav:focus{
  outline: 2px solid rgba(81, 43, 121, 0.45);
  outline-offset: 2px;
}


.hp-logo-nav{
  color: #111827;              /* pijltje donker */
  background: #ffffff;         /* knop wit */
}

.hp-logo-nav:hover{
  color: #0f172a;
  background: #f8fafc;         /* heel licht grijs */
}

/* Linkerpijl nét iets verder naar links */
.hp-logo-nav--prev{
  margin-left: -10px; /* probeer -6px t/m -16px */
}

/* Move the arrow characters up slightly inside the buttons */
.hp-logo-nav span {
  display: inline-block;
  transform: translateY(-2px); /* Adjust this value as needed */
}

/* Ons team – hero met full-width achtergrond */
.team-hero {
  position: relative;
  padding: 4rem 0 3.2rem;
}

.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    rgba(81, 43, 121, 0.12),
    rgba(203, 193, 213, 0.75)
  );
  z-index: -1;
}

.team-hero__lead {
  max-width: 46rem;
  color: var(--hp-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Ons team – grid & moderne cards */
.team-section {
  padding: 3rem 0 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* Cards */
.team-card {
  border-radius: 1.4rem;
  padding: 1.4rem 1.5rem 1.5rem;
  background: radial-gradient(circle at top left, #f5f3fa, #ffffff);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease, background-color 0.16s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(81, 43, 121, 0.5);
}

/* Foto */
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.2rem;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #cbc1d5, #9d86bb);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Naam + rol */
.team-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.team-role-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: rgba(81, 43, 121, 0.08);
  color: #512b79;
}

/* Bio's */
.team-bio-short,
.team-bio-full {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--hp-text);
}

.team-bio-full {
  margin-top: 0.35rem;
}

/* Iconenrij */
.team-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.1rem;
}

/* Icon-knoppen */
.team-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

.team-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: #512b79;
}

.team-icon-btn:hover {
  background-color: #faf7ff;
  border-color: rgba(81, 43, 121, 0.8);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

/* Lees meer / Minder weergeven (summary) */
.team-details {
  margin-top: 0.3rem;
}

/* default triangle weg */
.team-details summary {
  list-style: none;
}

.team-details summary::-webkit-details-marker {
  display: none;
}

.team-more-toggle {
  font-size: 0.85rem;
  color: var(--hp-primary);
  cursor: pointer;
  padding: 0.15rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* klein pijltje erbij via CSS (optioneel) */
.team-more-toggle::after {
  content: "▼";
  font-size: 0.6rem;
  transform: translateY(1px);
}

/* als open: pijltje omdraaien en tekst iets aanpassen via attribute selector desnoods */
.team-details[open] .team-more-toggle::after {
  transform: rotate(-180deg) translateY(-1px);
}

.team-more-toggle:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-hero {
    padding: 3.3rem 0 2.5rem;
  }
}

/* -----------------------------
   Vacatures – overzichtspagina
------------------------------ */

.jobs-hero {
  background: linear-gradient(
    135deg,
    rgba(81, 43, 121, 0.14),
    rgba(203, 193, 213, 0.7)
  );
  padding: 4rem 0 3.5rem;
}

.jobs-hero__layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.jobs-hero__text {
  flex: 2 1 0;
}

.jobs-hero__side {
  flex: 1.4 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.jobs-hero__lead {
  max-width: 40rem;
  color: var(--hp-muted);
  line-height: 1.7;
}

/* Mailingkaart rechtsboven */
.jobs-mailing-card {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.jobs-mailing-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.jobs-mailing-card p {
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  color: var(--hp-text);
}

.jobs-mailing-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jobs-mailing-card form.jobs-mailing-form {
  margin: 0;
}

.jobs-mailing-form .mc4wp-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jobs-mailing-form .mc4wp-response p {
  margin: 0.5rem 0 0;
}

.jobs-mailing-label {
  font-size: 0.8rem;
  color: var(--hp-muted);
}

.jobs-mailing-card .jobs-mailing-form input[type="email"] {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: #ffffff !important;
  color: var(--hp-text) !important;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
}

.jobs-mailing-card .jobs-mailing-form input[type="email"]:focus {
  border-color: var(--hp-primary);
  box-shadow: 0 0 0 1px rgba(81, 43, 121, 0.25);
}

.jobs-mailing-submit {
  margin-top: 0.4rem;
  justify-content: center;
}

/* Prevent an MC4WP form theme from changing this card's existing button. */
.jobs-mailing-card .jobs-mailing-form .jobs-mailing-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border: 2px solid var(--hp-primary) !important;
  border-radius: 999px;
  background: var(--hp-primary) !important;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}

.jobs-mailing-card .jobs-mailing-form .jobs-mailing-submit:hover,
.jobs-mailing-card .jobs-mailing-form .jobs-mailing-submit:focus {
  border-color: var(--hp-primary-dark) !important;
  background: var(--hp-primary-dark) !important;
  color: #ffffff !important;
}

.jobs-mailing-meta {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--hp-muted);
}

/* Open sollicitatie blok */
.jobs-side-cta {
  background-color: #faf7ff;
  border-radius: 1rem;
  padding: 1.1rem 1.3rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.jobs-side-cta h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.jobs-side-cta p {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

/* Social links */
.jobs-social {
  font-size: 0.85rem;
  color: var(--hp-muted);
}

.jobs-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.jobs-social-links a {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--hp-primary);
}

.jobs-social-links a:hover {
  text-decoration: underline;
}

/* Categoriekaarten onderaan */
.jobs-section {
  padding-top: 3.5rem;
}

.jobs-grid {
  margin-top: 2.2rem;
}

.jobs-type-card {
  text-align: left;
}

.jobs-type-card p {
  margin-bottom: 0.9rem;
}

/* derde kaart iets breder laten ogen */
.jobs-type-card--wide {
  grid-column: span 2;
}

/* Zorg dat buttons full-width in de kaart netjes zijn op mobiel */
.jobs-type-btn {
  margin-top: 0.2rem;
}

/* Responsief */
@media (max-width: 960px) {
  .jobs-hero__layout {
    flex-direction: column;
  }

  .jobs-hero__side {
    width: 100%;
  }

  .jobs-type-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .jobs-hero {
    padding: 3rem 0 2.5rem;
  }
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.jobs-type-card {
  height: 100%;
}

/* Mobiel: onder elkaar */
@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PAGE-ID-135 + PAGE-ID-142: Vacatures – CLEAN SLATE
   (overschrijft Astra/andere CSS alleen op deze pagina's)
   ========================================================= */

/* 0) Kill desktop “disappear until resize/inspect” (wrapper resets) */
.page-id-135 #content,
.page-id-135 .site-content,
.page-id-135 .content-area,
.page-id-135 .ast-container,
.page-id-135 .entry-content,
.page-id-135 .entry-content-wrap,
.page-id-135 .ast-article-single,
.page-id-139 #content,
.page-id-139 .site-content,
.page-id-139 .content-area,
.page-id-139 .ast-container,
.page-id-139 .entry-content,
.page-id-139 .entry-content-wrap,
.page-id-139 .ast-article-single {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
  filter: none !important;
  clip-path: none !important;
  overflow: visible !important;
  max-height: none !important;
}

/* Subhero + lijst (achtergrond/spacing + overlap-fix) */
.page-id-135 .jobs-subhero,
.page-id-139 .jobs-subhero{
  background: #e2dce8;
  padding: 56px 0 34px;
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important; /* overlay blijft binnen hero */
}

.page-id-135 .jobs-subhero::before,
.page-id-135 .jobs-subhero::after,
.page-id-139 .jobs-subhero::before,
.page-id-139 .jobs-subhero::after{
  content: none !important;
}

.page-id-135 .jobs-list,
.page-id-139 .jobs-list{
  background: #fff;
  padding: 28px 0 64px;
  position: relative !important;
  z-index: 2 !important;
  padding-top: 32px !important;
}

/* 3) Grid = stacked list */
.page-id-135 .jobs-list__grid,
.page-id-139 .jobs-list__grid{
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  overflow: visible !important;
  max-height: none !important;
}

/* 4) Card (horizontaal) */
.page-id-135 .job-row,
.page-id-139 .job-row{
  display: grid !important;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 22px;
  background: #fff !important;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);

  /* HARD: nooit verbergen */
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;

  position: relative !important;
  z-index: 1 !important;
}

.page-id-135 .job-row__media,
.page-id-139 .job-row__media{
  display: block;
}

.page-id-135 .job-row__media img,
.page-id-135 .job-row__placeholder,
.page-id-139 .job-row__media img,
.page-id-139 .job-row__placeholder{
  width: 170px;
  height: 170px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  background: rgba(0,0,0,.06);
}

.page-id-135 .job-row__top,
.page-id-139 .job-row__top{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.page-id-135 .job-row__title,
.page-id-139 .job-row__title{
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.1;
}

.page-id-135 .job-row__title a,
.page-id-139 .job-row__title a{
  text-decoration: none;
  color: inherit;
}

.page-id-135 .job-row__sub,
.page-id-139 .job-row__sub{
  font-size: 16px;
  opacity: .85;
  margin-bottom: 6px;
}

.page-id-135 .job-row__loc,
.page-id-139 .job-row__loc{
  margin: 0;
  opacity: .8;
}

.page-id-135 .job-row__cta,
.page-id-139 .job-row__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #522b79;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.page-id-135 .job-row__cta:hover,
.page-id-139 .job-row__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(82, 43, 121, 0.25);
}

.page-id-135 .job-row__cta:active,
.page-id-139 .job-row__cta:active {
  transform: translateY(0);
}

.page-id-135 .job-row__desc,
.page-id-139 .job-row__desc{
  margin: 6px 0 0;
  opacity: .85;
  line-height: 1.5;
}

.page-id-135 .job-row__meta,
.page-id-139 .job-row__meta{
  margin-top: 18px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.page-id-135 .job-row__meta-item,
.page-id-139 .job-row__meta-item{
  display: grid;
  gap: 4px;
  min-width: 140px; /* zorgt dat labels mooi uitlijnen */
}

.page-id-135 .job-row__meta-label,
.page-id-139 .job-row__meta-label{
  font-size: 12px;
  opacity: .6;
}

.page-id-135 .job-row__meta-value,
.page-id-139 .job-row__meta-value{
  font-weight: 600;
}

.page-id-135 .job-row__org,
.page-id-139 .job-row__org{
  color: #522b79;
  font-weight: 700;
  margin: 0 0 4px;
}

/* 5) Mobile */
@media (max-width: 720px){
  .page-id-135 .jobs-subhero,
  .page-id-139 .jobs-subhero{
    padding: 48px 0 36px;
  }

  .page-id-135 .jobs-list,
  .page-id-139 .jobs-list{
    padding-top: 24px !important;
  }

  .page-id-135 .job-row,
  .page-id-139 .job-row{
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
  }

  .page-id-135 .job-row__media img,
  .page-id-135 .job-row__placeholder,
  .page-id-139 .job-row__media img,
  .page-id-139 .job-row__placeholder{
    width: 100%;
    height: 190px;
    border-radius: 14px;
  }

  .page-id-135 .job-row__top,
  .page-id-139 .job-row__top{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .page-id-135 .job-row__body,
  .page-id-139 .job-row__body,
  .page-id-135 .job-row__top > div,
  .page-id-139 .job-row__top > div{
    min-width: 0;
  }

  .page-id-135 .job-row__title,
  .page-id-139 .job-row__title{
    font-size: 22px;
    line-height: 1.12;
  }

  .page-id-135 .job-row__desc,
  .page-id-139 .job-row__desc{
    line-height: 1.45;
  }

  .page-id-135 .job-row__cta,
  .page-id-139 .job-row__cta{
    align-self: flex-start;
    padding: 10px 16px;
    font-size: 14px;
  }

  .page-id-135 .job-row__meta,
  .page-id-139 .job-row__meta{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  .page-id-135 .job-row__meta-item,
  .page-id-139 .job-row__meta-item{
    min-width: 0;
  }
}

.page-id-135 .jobs-list__header,
.page-id-139 .jobs-list__header{ margin-bottom: 18px; }

.page-id-135 .jobs-list__grid,
.page-id-139 .jobs-list__grid{ margin-top: 12px; margin-bottom: 28px; }

.page-id-135 .jobs-list__footer,
.page-id-139 .jobs-list__footer{ margin-top: 0; padding-top: 10px; }

/* -----------------------------
   Onze opdrachtgevers
------------------------------ */

/* Hero met full-width achtergrond (zoals bij Over ons) */
.clients-hero {
  position: relative;
  padding: 4rem 0 3.2rem;
}

.clients-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    rgba(81, 43, 121, 0.12),
    rgba(203, 193, 213, 0.75)
  );
  z-index: -1;
}

.clients-hero__lead {
  max-width: 46rem;
  color: var(--hp-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.clients-section {
  padding: 3rem 0 4rem;
}

/* Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

/* Card (rounded square background) */
.client-card {
  text-decoration: none !important;
  color: var(--hp-text);
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.2rem 1.2rem 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease, background-color 0.16s ease;
}

.client-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  border-color: rgba(81, 43, 121, 0.55);
  background-color: #faf7ff;
}

/* Logo vlak */
.client-logo {
  width: 100%;
  aspect-ratio: 1 / 1; /* rounded square */
  border-radius: 1.05rem;
  background: #f5f3f8;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  overflow: hidden;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-name {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.client-quote {
  font-size: 0.85rem;
  color: var(--hp-muted);
  line-height: 1.5;
}

/* Quote blok op opdrachtgeverspagina */
.clients-testimonial {
  position: relative;
  padding: 72px 0 76px;
  background: #fff;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.clients-testimonial::before {
  content: none;
}

.clients-testimonial::after {
  content: none;
}

.clients-testimonial__viewport {
  width: min(920px, 100% - 32px);
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  transition: height 0.3s ease;
}

.clients-testimonial.is-dragging .clients-testimonial__viewport {
  cursor: grabbing;
}

.clients-testimonial__track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.38s ease;
  will-change: transform;
}

.clients-testimonial.is-dragging .clients-testimonial__track {
  transition: none;
}

.clients-testimonial__slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 2px;
}

.clients-testimonial__inner {
  width: 100%;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 54px);
  position: relative;
  z-index: 1;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.clients-testimonial > .clients-testimonial__inner {
  width: min(920px, 100% - 32px);
}

.clients-testimonial__avatar {
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  border-radius: 999px;
  border: 3px solid #ffffff;
  overflow: hidden;
  background: #f8f6fb;
  box-shadow: 0 0 0 3px rgba(82, 43, 121, 0.18), 0 12px 28px rgba(82, 43, 121, 0.16);
}

.clients-testimonial__avatar:empty,
.clients-testimonial__avatar.is-empty,
.clients-testimonial__avatar:has(> img:not([src])),
.clients-testimonial__avatar:has(> img[src=""]) {
  display: grid;
  place-items: center;
}

.clients-testimonial__avatar:empty::before,
.clients-testimonial__avatar.is-empty::before,
.clients-testimonial__avatar:has(> img:not([src]))::before,
.clients-testimonial__avatar:has(> img[src=""])::before {
  content: "\201C";
  color: #522b79;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  transform: translateY(8px);
}

.clients-testimonial__avatar.is-empty img,
.clients-testimonial__avatar:has(> img:not([src])) img,
.clients-testimonial__avatar:has(> img[src=""]) img {
  display: none;
}

.clients-testimonial__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  padding: 10px;
  background: #fff;
}

.clients-testimonial__name {
  margin: 0 0 18px;
  color: var(--hp-text);
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 700;
  line-height: 1.35;
}

.clients-testimonial__quote {
  margin: 0 auto;
  max-width: 880px;
  color: rgba(0, 43, 69, 0.72);
  border: 0 !important;
  font-size: clamp(16px, 1.2vw, 19px);
  font-style: italic;
  line-height: 1.6;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.clients-testimonial__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 6px;
}

.clients-testimonial__dots button,
.clients-testimonial__dots span {
  appearance: none;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(82, 43, 121, 0.18);
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.clients-testimonial__dots button.is-active,
.clients-testimonial__dots button[aria-current="true"],
.clients-testimonial__dots span:first-child {
  background: #522b79;
  transform: scale(1.12);
}

.clients-testimonial__dots button:focus-visible {
  outline: 2px solid rgba(82, 43, 121, 0.45);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .clients-testimonial {
    padding: 52px 0 56px;
  }

  .clients-testimonial__avatar {
    width: 92px;
    height: 92px;
  }
}

/* CTA onderaan */
.clients-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-hero {
    padding: 3.3rem 0 2.5rem;
  }

  .clients-section {
    padding-top: 1.5rem;
  }
}

@media (max-width: 520px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA knop onder opdrachtgevers carousel – tekst iets hoger */
.clients-cta-btn {
  padding-top: 0.2rem;
  padding-bottom: 1rem;
}

/* CTA onder carousel altijd centreren */
.clients-cta {
  display: flex;
  justify-content: center;
}

/* knop mag niet full-width worden */
.clients-cta .clients-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
}

/* ===== FIX: remove gap between header and hero (Astra page builder template) ===== */
body.home.ast-page-builder-template #content.site-content,
body.home.ast-page-builder-template #content.site-content > .ast-container,
body.home.ast-page-builder-template #primary.content-area,
body.home.ast-page-builder-template main.site-main,
body.home.ast-page-builder-template article.ast-article-single,
body.home.ast-page-builder-template .entry-content{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Astra “normal title” area can still reserve space */
body.home.ast-normal-title-enabled .ast-page-title-wrap,
body.home.ast-normal-title-enabled .ast-page-header,
body.home.ast-normal-title-enabled .ast-title-bar-wrap{
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}

/* If Astra uses a pseudo spacer above content */
body.home.ast-page-builder-template #content.site-content::before{
  content: none !important;
  display: none !important;
  height: 0 !important;
}

#masthead,
#masthead .main-header-bar,
#masthead .ast-primary-header-bar{
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Keep Astra's mobile menu trigger visible against the purple header. */
.ast-header-break-point #masthead .ast-button-wrap .menu-toggle,
.ast-header-break-point #masthead .ast-button-wrap .menu-toggle:focus,
.ast-header-break-point #masthead .ast-button-wrap .menu-toggle:hover,
.ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle,
.ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle:focus,
.ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle:hover,
.ast-header-break-point .ast-mobile-header-wrap .ast-button-wrap .menu-toggle,
.ast-header-break-point .ast-mobile-header-wrap .ast-button-wrap .menu-toggle:focus,
.ast-header-break-point .ast-mobile-header-wrap .ast-button-wrap .menu-toggle:hover,
.ast-mobile-popup-drawer .ast-mobile-popup-header .menu-toggle-close {
  color: #ffffff !important;
}

.ast-header-break-point #masthead .ast-button-wrap .menu-toggle .ast-mobile-svg,
.ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle .ast-mobile-svg,
.ast-header-break-point .ast-mobile-header-wrap .ast-button-wrap .menu-toggle .ast-mobile-svg,
.ast-mobile-popup-drawer .ast-mobile-popup-header .menu-toggle-close .ast-mobile-svg {
  fill: currentColor !important;
}

@media (max-width: 921px) and (prefers-reduced-motion: no-preference) {
  .ast-header-break-point #masthead .ast-button-wrap .menu-toggle .ast-mobile-svg,
  .ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle .ast-mobile-svg,
  .ast-header-break-point .ast-mobile-header-wrap .ast-button-wrap .menu-toggle .ast-mobile-svg,
  .ast-mobile-popup-drawer .ast-mobile-popup-header .menu-toggle-close .ast-mobile-svg {
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .ast-header-break-point #masthead .ast-button-wrap .menu-toggle:hover .ast-mobile-svg,
  .ast-header-break-point #masthead .ast-button-wrap .menu-toggle:focus-visible .ast-mobile-svg,
  .ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle:hover .ast-mobile-svg,
  .ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle:focus-visible .ast-mobile-svg,
  .ast-header-break-point .ast-mobile-header-wrap .ast-button-wrap .menu-toggle:hover .ast-mobile-svg,
  .ast-header-break-point .ast-mobile-header-wrap .ast-button-wrap .menu-toggle:focus-visible .ast-mobile-svg {
    transform: scale(1.08);
  }

  .ast-header-break-point #masthead .ast-button-wrap .menu-toggle.toggled .ast-mobile-svg,
  .ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle.toggled .ast-mobile-svg,
  .ast-header-break-point .ast-mobile-header-wrap .ast-button-wrap .menu-toggle.toggled .ast-mobile-svg {
    transform: rotate(90deg) scale(0.94);
  }

  .ast-mobile-popup-drawer.active .ast-mobile-popup-header,
  .ast-mobile-popup-drawer.active .ast-mobile-popup-content {
    animation: alanlucaMobileDrawerIn 280ms cubic-bezier(.2, .8, .2, 1) both;
  }

  .ast-mobile-popup-drawer.active .ast-mobile-popup-content {
    animation-delay: 40ms;
  }

  .ast-mobile-popup-drawer.active .main-header-menu > .menu-item {
    animation: alanlucaMobileMenuItemIn 240ms ease both;
  }

  .ast-mobile-popup-drawer.active .main-header-menu > .menu-item:nth-child(2) {
    animation-delay: 35ms;
  }

  .ast-mobile-popup-drawer.active .main-header-menu > .menu-item:nth-child(3) {
    animation-delay: 70ms;
  }

  .ast-mobile-popup-drawer.active .main-header-menu > .menu-item:nth-child(4) {
    animation-delay: 105ms;
  }

  .ast-mobile-popup-drawer.active .main-header-menu > .menu-item:nth-child(5) {
    animation-delay: 140ms;
  }

  .ast-mobile-popup-drawer.active .main-header-menu > .menu-item:nth-child(6) {
    animation-delay: 175ms;
  }

  @keyframes alanlucaMobileMenuItemIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes alanlucaMobileDrawerIn {
    from {
      opacity: 0;
      transform: translateY(-14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Make mobile drawer submenu items readable on the white panel. */
.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu,
.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu .sub-menu {
  background: #ffffff !important;
}

.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu .menu-link,
.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu .sub-menu .menu-link,
.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu .menu-item > .ast-menu-toggle {
  color: #002b45 !important;
}

.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu .sub-menu .menu-link {
  padding-left: 36px !important;
}

.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu .menu-item:hover > .menu-link,
.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu .menu-item:focus-within > .menu-link,
.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu .menu-item:hover > .ast-menu-toggle,
.ast-mobile-popup-drawer .ast-mobile-popup-content .main-header-menu .menu-item:focus-within > .ast-menu-toggle {
  color: #522b79 !important;
}

/* -----------------------------
   Split section under hero
   Purple-tinted version (WP-safe + fixed layout)
----------------------------- */
.al-split{
  position: relative;
  z-index: 5; /* stays above the hanging hero A */
  padding: clamp(70px, 9vw, 120px) 0;
}

/* force 2-column layout on desktop + self-contained container */
.al-split__grid{
  width: min(1200px, 100% - 48px);
  margin-inline: auto;

  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

/* -----------------------------
   WP auto-wrap fixes (paragraphs injected by editor)
----------------------------- */

/* flatten paragraph wrappers so grid children still behave as columns */
.al-split__grid > p{
  display: contents;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
}

/* remove empty editor paragraphs */
.al-split__grid > p:empty{
  display: none !important;
}

/* also flatten accidental p wrappers inside columns */
.al-split__content > p:empty,
.al-split__media > p:empty{
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* LEFT */
.al-split__content{
  min-width: 0;
}

.al-split__eyebrow{
  margin: 0 0 20px;
  color: #6e4a95; /* derived from #522b79 */
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.35;
  font-weight: 500;
}

.al-split__title{
  margin: 0 0 28px;
  color: #0a2f42;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  max-width: 14ch;
}

.al-split__text{
  color: #0a2f42;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  max-width: 64ch;
}

.al-split__text p{
  margin: 0 0 20px;
}

.al-split__text p:last-child{
  margin-bottom: 0;
}

/* RIGHT */
.al-split__media{
  position: relative;
  min-width: 0;
}

.al-split__image-wrap{
  position: relative;
  overflow: hidden;
  background: #ddd;
  min-height: 460px;
}

.al-split__image-wrap img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* purple gradient wash over image */
.al-split__image-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(82, 43, 121, 0.00) 5%,
      rgba(82, 43, 121, 0.10) 45%,
      rgba(82, 43, 121, 0.24) 100%
    );
  z-index: 1;
  pointer-events: none;
}

/* angled purple shape */
.al-split__image-wrap::after{
  content: "";
  position: absolute;
  top: -4%;
  right: -6%;
  width: 44%;
  height: 112%;
  background: rgba(82, 43, 121, 0.22);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 58% 100%);
  z-index: 2;
  pointer-events: none;
}

/* bottom-right label strip */
.al-split__tag{
  margin-top: 14px;
  margin-left: auto;
  width: min(95%, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* left color bar in the tag */
.al-split__tag::before{
  content: "";
  flex: 0 0 38%;
  height: 16px;
  background: linear-gradient(90deg, #9e80bf, #c7b2db);
}

/* text in the tag */
.al-split__tag span{
  flex: 1 1 auto;
  color: #0a2f42;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 1000px){
  .al-split__grid{
    width: min(1200px, 100% - 32px);
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .al-split__title{
    max-width: 100%;
  }

  .al-split__text{
    max-width: 100%;
  }

  .al-split__media{
    order: 2;
  }

  .al-split__image-wrap{
    min-height: 340px;
  }

  .al-split__tag{
    width: 100%;
  }

  .al-split__tag span{
    white-space: normal;
    text-align: left;
  }
}

@media (max-width: 640px){
  .al-split{
    padding: 56px 0 70px;
  }

  .al-split__image-wrap{
    min-height: 280px;
  }

  .al-split__tag::before{
    height: 12px;
  }
}


/* -----------------------------
   Wie zijn wij (two cards)
   WP-safe + forced 2-col desktop
----------------------------- */
.al-who2{
  background: #f3f2f6;
  padding: clamp(60px, 8vw, 110px) 0;
}

.al-who2__inner{
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.al-who2__title{
  margin: 0 0 clamp(16px, 2.4vw, 26px);
  color: #0a2f42;
  font-size: clamp(22px, 2.2vw, 34px); /* smaller */
  line-height: 1.15;
  letter-spacing: .01em;
  text-transform: none;                /* not all caps */
  font-weight: 700;
  text-align: center;
}

/* FORCE 2 columns unless truly small */
.al-who2__grid{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

/* WP sometimes injects <p> wrappers — flatten them */
.al-who2__grid > p{
  display: contents !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Also remove empty injected paragraphs */
.al-who2__grid > p:empty{
  display: none !important;
}

.al-who2__card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(82,43,121,.14);
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 22px;
  overflow: hidden;
}

.al-who2__subtitle{
  margin: 0 0 12px;
  color: #522b79;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.al-who2__card p{
  margin: 0;
  color: rgba(10,47,66,.92);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
}

.al-who2__cta{
  margin-top: clamp(18px, 3vw, 28px);
  display: flex;
  justify-content: center;
}

.al-who2__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(82,43,121,.12);
  border: 1px solid rgba(82,43,121,.22);
  color: #522b79;
  font-weight: 800;
  text-decoration: none;
}

.al-who2__btn:hover{
  background: rgba(82,43,121,.16);
  border-color: rgba(82,43,121,.30);
}

/* spacing */
.al-who2__title{ margin: 0 0 clamp(40px, 5vw, 70px); }
.al-who2__cta{ margin-top: clamp(40px, 5vw, 76px); }

/* only stack on smaller screens */
@media (max-width: 700px){
  .al-who2__grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px){
  .al-who2__inner{
    width: min(1200px, 100% - 32px);
  }
}

.svc-spacer{
  height: 30px; /* adjust */
}

/* full-bleed half background to the RIGHT */
.al-split--halfbg{
  position: relative;
  padding: clamp(56px, 7vw, 110px) 0;
}

.al-split--halfbg::before{
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;

  /* start point (pull left/right) */
  left: calc(50% - 80px);      /* adjust: 40px / 80px / 120px */

  /* ALWAYS flush to the viewport right edge */
  right: calc(50% - 50vw - 1px); /* -1px removes tiny gap/hairline */

  background: #f3f2f6;
  z-index: 0;
}

/* make sure content stays above the half background */
.al-split--halfbg .al-split__grid{
  position: relative;
  z-index: 1;
}

/* -----------------------------
   Services intro (new classes)
   Clean alignment + purple accents
----------------------------- */
.svc-intro{
  max-width: 920px;
  position: relative;
  padding-left: 20px;
}

.svc-intro::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 4px;
  background: rgba(82,43,121,.25); /* derived from #522b79 */
  border-radius: 99px;
}

.svc-intro__title{
  margin: 0 0 16px;
  color: #0a2f42;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: .01em;
  font-weight: 800;
}

.svc-intro__lead,
.svc-intro__text{
  margin: 0 0 14px;
  color: rgba(10,47,66,.92);
  line-height: 1.7;
  font-size: 16px;
  max-width: 78ch;
}

.svc-intro__text{
  margin-bottom: 0;
  color: rgba(10,47,66,.85);
}

@media (max-width: 640px){
  .svc-intro{
    padding-left: 16px;
  }

  .svc-intro__lead,
  .svc-intro__text{
    font-size: 15px;
  }
}

/* Full-bleed section background (break out of boxed layout) */
.hp-section--fullbleed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ====== TEAM (new classes) ====== */
.t-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* HERO */
.t-hero {
  padding: 56px 0 24px;
}

.t-eyebrow {
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.75;
}

.t-title {
  margin: 0 0 10px;
  line-height: 1.1;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.t-lead {
  margin: 0;
  max-width: 70ch;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.85;
}

/* SECTION HEAD */
.t-section {
  padding: 28px 0 72px;
}

.t-sectionHead {
  margin-bottom: 28px;
}

.t-sectionHead--sp{
  margin-top: 56px; /* spacing between HR row and Salaris row */
}

.t-h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.t-muted {
  margin: 0;
  max-width: 80ch;
  line-height: 1.7;
  opacity: 0.85;
}

/* GRID (default: 3 cards on one row) */
.t-grid{
  display: flex;
  justify-content: space-between;
  gap: 56px;
  align-items: flex-start;
  flex-wrap: nowrap; /* keeps HR cards on one row */
}

.t-grid.t-grid--left{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 56px;
}

.t-grid.t-grid--left > .t-card{
  width: 100%;
  max-width: 360px;
  min-width: 0;
  justify-self: center;
}

.t-grid.t-grid--left > .t-card:nth-child(2){
  grid-column: 2;
}

/* ===== 4-CARD ROW: final layout
   1 - 2 - 3
   4
   (uses percentage widths so it works even if container is smaller)
===== */
.t-grid.t-grid--4{
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 56px;
}

/* 3 columns on the first row (2 gaps of 56px = 112px) */
.t-grid.t-grid--4 > .t-card{
  flex: 0 0 calc((100% - 112px) / 3);
  max-width: none;
  min-width: 0;
}

/* card 4 forced onto its own row */
.t-grid.t-grid--4 > .t-card:nth-child(4){
  flex: 0 0 100%;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .t-grid{
    flex-wrap: wrap;
    justify-content: center;
  }
  .t-grid.t-grid--left{
    display: flex;
    justify-content: center;
    gap: 28px;
  }
  .t-grid.t-grid--left > .t-card{
    flex: 0 1 340px;
    max-width: 360px;
  }
  .t-grid.t-grid--left > .t-card:nth-child(2){
    grid-column: auto;
  }
  .t-card{
    flex: 0 1 340px;
  }

  /* on smaller screens: let the 4-card row behave like normal wrap */
  .t-grid.t-grid--4{
    justify-content: center;
    gap: 28px;
  }
  .t-grid.t-grid--4 > .t-card{
    flex: 0 1 340px;
    max-width: 360px;
  }
  .t-grid.t-grid--4 > .t-card:nth-child(4){
    flex-basis: auto;
  }
}

@media (max-width: 620px) {
  .t-grid{
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
  }
  .t-card{
    flex: 0 1 340px;
  }
}

/* CARD (centered like the screenshot) */
.t-card{
  flex: 1 1 0;
  max-width: 360px; /* keeps cards from getting too wide */
  min-width: 260px; /* keeps a nice minimum */
  text-align: center;
}

/* circle image (no background color needed) */
.t-avatar {
  width: clamp(180px, 24vw, 260px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* name + role */
.t-name {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.t-role {
  margin: 0 auto 18px;
  max-width: 36ch;
  line-height: 1.5;
  opacity: 0.85;
}

/* icon row */
.t-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.t-icbtn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.t-icbtn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.85;
}

.t-icbtn:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.14);
}

/* tooltip base */
.t-icbtn{
  position: relative; /* needed for tooltip positioning */
}

/* only show tooltip when data-tip exists */
.t-icbtn[data-tip]::after{
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;

  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1;
  background: rgba(20, 14, 8, 0.92);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  z-index: 50;
}

/* little arrow */
.t-icbtn[data-tip]::before{
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 2px);
  transform: translateX(-50%);

  opacity: 0;
  transition: opacity .15s ease;

  border: 7px solid transparent;
  border-bottom-color: rgba(20, 14, 8, 0.92);
  z-index: 51;
}

/* show on hover + keyboard focus */
.t-icbtn[data-tip]:hover::after,
.t-icbtn[data-tip]:focus-visible::after{
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
}

.t-icbtn[data-tip]:hover::before,
.t-icbtn[data-tip]:focus-visible::before{
  opacity: 1;
}

/* Make sure avatar can host overlay + button */
.t-avatar{
  position: relative;
}

/* purple fading overlay */
.t-avatarOverlay{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .2s ease;
  background: radial-gradient(circle at 30% 20%,
    rgba(176, 116, 62, 0.75),   /* warm oak highlight */
    rgba(149,  92, 44, 0.40) 55%,/* mid tone */
    rgba(92,   56, 26, 0.18) 100% /* deep shadow */
  );
  pointer-events: none;
}

/* "Lees meer" button inside the circle (perfectly centered) */
.t-avatarCta{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;

  padding: 10px 16px 19px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  background: rgba(255,255,255,0.92);
  color: rgba(44, 16, 84, 1);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  z-index: 2;
}

/* show overlay + CTA on hover */
.t-avatar:hover .t-avatarOverlay,
.t-avatar:hover .t-avatarCta{
  opacity: 1;
}

.t-avatar:hover .t-avatarCta{
  transform: translate(-50%, -50%) scale(1.02);
}

/* keyboard accessibility */
.t-avatarCta:focus-visible{
  outline: 3px solid rgba(124, 58, 237, 0.55);
  outline-offset: 4px;
}

.t-avatarCta:hover,
.t-avatarCta:active,
.t-avatarCta:focus{
  background: rgba(255,255,255,0.92);
  color: rgba(44, 16, 84, 1);
  text-decoration: none;
}

/* hidden content blocks */
.t-modalContent[hidden]{ display:none; }

/* modal wrapper (fade) */
.t-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: block;          /* keep in flow so opacity can animate */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition: opacity .2s ease, visibility .2s ease;
}
.t-modal.is-open{
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* backdrop (fade) */
.t-modalOverlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
}

/* panel (CENTER of screen + pop animation) */
.t-modalPanel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.98);
  opacity: 0;

  width: min(860px, calc(100% - 48px));
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);

  max-height: calc(100vh - 48px);
  overflow: auto;

  transition: transform .2s ease, opacity .2s ease;
}

.t-modal.is-open .t-modalPanel{
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* inner spacing */
.t-modalInner{
  padding: 34px 34px 36px;
}

/* title + text look */
.t-modalInner h3{
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.15;
}
.t-modalText{
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.92;
}

/* close button like screenshot (small square, top-right) */
.t-modalX{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  border: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #e4deea;
  color: #522b79;
  font-size: 26px;
  line-height: 0;       /* <- key */
  padding: 0;           /* <- key */
  cursor: pointer;
}

.t-modalX:hover{
  background: rgba(106, 70, 168, 0.18);
}

/* prevent background scroll */
body.t-modal-lock{
  overflow: hidden;
}

.al-footer{
  background: #522b79;
  color: rgba(255,255,255,.92);
}

/* safer sizing in grids/flex */
.al-footer, .al-footer *{ box-sizing: border-box; }

.al-footer a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.al-footer a:hover{ text-decoration: underline; }

.al-footer__inner{
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
  padding: 46px 0 18px;
}

/* TOP: 3 columns */
.al-footer__top{
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

/* Make each column start/end cleanly */
.al-footer__col{ min-width: 0; }
.al-footer__col > :first-child{ margin-top: 0; }
.al-footer__col > :last-child{ margin-bottom: 0; }

/* Brand */
.al-footer__brand{ display: inline-block; }
.al-footer__brand img{
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 14px;
}

/* Meta */
.al-footer__meta{ margin: 0; }
.al-footer__meta p{
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.45;
  opacity: .95;
}

/* KvK/BTW left + contact right */
.al-footer__meta-grid{
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  align-items: start;
  margin-top: 6px;
}

/* Headings */
.al-footer__heading{
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .95;
}

/* Social icons */
.al-footer__social-icons{
  display: flex;
  gap: 12px;
  align-items: center;
}

.al-footer__icon{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.al-footer__icon svg{ display: block; }
.al-footer__icon:hover{ background: rgba(255,255,255,.18); }

.al-footer__slogan{
  display: block;
  width: 150px;
  max-width: calc(100vw - 48px);
  height: auto;
  margin-top: 18px;
}

.al-footer__contact-cta{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 170px;
  margin-top: -2px;
}

.al-footer__contact-cta .al-footer__btn{
  margin-top: 2px;
}

.al-footer__contact-cta .al-footer__slogan{
  align-self: flex-start;
  margin-left: 145px;
  margin-top: 22px;
}

/* Buttons (base) */
.al-footer__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  min-height: 44px;
  text-align: center;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.al-footer__btn:hover,
.al-footer__btn:focus {
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.18);
  box-shadow: 0 0 12px rgba(255,255,255,.35);
  text-decoration: none;
}

/* Newsletter form */
.al-footer form.al-footer__form{ margin: 0; }

.al-footer__form .mc4wp-form-fields{ margin: 0; }

.al-footer__form .mc4wp-response p{
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

/* Use GRID so the input never collapses into a tiny square */
.al-footer__form-row{
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto; /* input + button */
  gap: 10px;
  align-items: center;
}

.al-footer .al-footer__form input[type="email"]{
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92) !important;
  outline: none;
}
.al-footer__form input::placeholder{ color: rgba(255,255,255,.75); }

/* Keep MC4WP's optional theme stylesheet from restyling this footer instance. */
.al-footer .al-footer__form .al-footer__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 44px;
  padding: 12px 16px;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 8px;
  color: inherit !important;
  font-weight: 700;
  line-height: 1;
}

.al-footer .al-footer__form .al-footer__btn:hover,
.al-footer .al-footer__form .al-footer__btn:focus{
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.4) !important;
  color: inherit !important;
}

/* Bottom bar */
.al-footer__bottom{
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);

  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  font-size: 13px;
  opacity: .95;
}

.al-footer__legal{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.6;
}
.al-footer__legal span{ opacity: .6; }

/* Responsive */
@media (max-width: 980px){
  .al-footer__top{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .al-footer__inner{
    width: min(1200px, 100% - 32px);
  }
  .al-footer__top{
    grid-template-columns: 1fr;
  }
  .al-footer__meta-grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .al-footer__form-row{
    grid-template-columns: 1fr;
  }
  .al-footer__contact-cta{
    align-items: flex-start;
    margin-left: 0;
    margin-top: 0;
    text-align: left;
  }
  .al-footer__contact-cta .al-footer__slogan{
    margin-left: 0;
  }
}

.al-footer__headings{
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;              /* wraps nicely if it can't fit */
  margin: 0 0 12px;
}

.al-footer__headings .al-footer__heading{
  margin: 0;                    /* stop them from stacking with margins */
}

.al-footer__heading--muted{
  opacity: .8;
  font-weight: 700;             /* optional: slightly lighter */
  text-transform: none;         /* optional: looks nicer as a subtitle */
  letter-spacing: 0;
}

.al-footer__col .al-footer__headings{
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 0 0 12px;
  width: 100%;
}

.al-footer__col .al-footer__form{
  width: 100%;
  display: block;
}

.al-footer__col .al-footer__heading{
  white-space: nowrap;
}

/* Match the “HR dat meebeweegt” typography inside svc-detail */
.svc-detail__main{
  color: #000;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  opacity: 0.92;
}

.svc-detail__main,
.svc-detail__main p,
.svc-detail__main ul,
.svc-detail__main li {
  color: #000;
}

/* Paragraph spacing like the screenshot */
.svc-detail__main p{
  margin: 0 0 16px;
}

/* Eyebrow styling (reuse your existing class) */
.svc-detail__main .al-split__eyebrow{
  margin: 0 0 20px;
  color: #6e4a95; /* derived from #522b79 */
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.35;
  font-weight: 500;
}

.al-gap-tight{
  margin-top: -200px; /* try -24px, -32px, -40px */
  padding-top: 0 !important;
}

@media (max-width: 768px){
  .al-gap-tight{
    margin-top: -145px !important;
    padding-top: 24px !important;
  }
}

.contact-map{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}

.contact-map iframe{
  width: 100%;
  height: 200px; /* tweak */
  border: 0;
  display: block;
}

.al-split__btn--space {
  margin-left: 16px;
}

.al-split__btn:hover {
  color: #3b2368;
  transform: translateY(-1px);
}

.hp-btn.hp-btn--primary:hover {
  color: #fff !important;
}

.vacature-page {
  background: #fff;
}

.vacature-hero {
  padding: 48px 0 32px;
  background: #e2dce8;
}

.vacature-hero::before,
.vacature-hero::after {
  content: none;
}

.vacature-hero .v-breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
}

.vacature-hero .v-breadcrumbs a {
  text-decoration: none;
}

.vacature-hero h1 {
  margin: 0 0 16px;
}

.vacature-hero .svc-detail-lead {
  max-width: 760px;
  margin-bottom: 24px;
}

.vacature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vacature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f2f6;
  font-size: 14px;
  line-height: 1.4;
}

.vacature-detail {
  padding: 32px 0 80px;
  background: #fff;
}

.vacature-detail .svc-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.vacature-detail .svc-detail__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vacature-detail .vacature-sidecard {
  padding: 28px;
  border-radius: 20px;
  background: #f7f4fb;
  border: 1px solid rgba(82, 43, 121, 0.08);
}

.vacature-detail .vacature-sidecard .hp-btn {
  margin-top: 12px;
}

.vacature-recruiter--inline {
  margin-top: 48px;
}

.vacature-recruiter__card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: #f3f2f6;
  border-radius: 24px;
}

.vacature-recruiter__media {
  display: flex;
  justify-content: center;
}

.vacature-recruiter__image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.vacature-recruiter__content h2 {
  margin: 0 0 16px;
}

.vacature-recruiter__content p {
  margin-bottom: 16px;
}

.vacature-recruiter__functie {
  font-weight: 600;
}

.vacature-recruiter__list {
  margin: 0;
  padding-left: 20px;
}

.vacature-recruiter__list li {
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .vacature-detail .svc-detail__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .vacature-hero {
    padding: 40px 0 24px;
  }

  .vacature-recruiter__card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vacature-recruiter__image {
    width: 140px;
    height: 140px;
  }
}

.vacature-sidecard--org {
  text-align: center;
}

.vacature-sidecard__logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 0 auto 20px;
  margin-bottom: 32px;
}

.vacature-recruiter--full {
  margin-top: 48px;
}

.vacature-recruiter--full .vacature-recruiter__card {
  width: 100%;
}

.vacature-detail .svc-detail__side {
  position: sticky;
  top: 110px;
  align-self: start;
}

body,
.site,
.site-main,
.content-area,
.entry-content,
main {
  background: #fff;
}

.svc-experience {
  padding: 0 0 80px;
}

.svc-experience__card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: #f3f2f6;
  border-radius: 24px;
}

.svc-experience__card[hidden] {
  display: none !important;
}

.svc-experience__card.is-active {
  animation: flt-panel-in 0.18s ease;
}

.svc-experience__media {
  display: flex;
  justify-content: center;
}

.svc-experience__image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.svc-experience__content h2,
.svc-experience__content h3 {
  margin: 0 0 16px;
}

.svc-experience__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .svc-experience__card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-experience__image {
    width: 140px;
    height: 140px;
  }
}

.svc-detail-contactperson {
  margin-top: 28px;
  text-align: left;
}

.svc-detail-contactperson__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

.svc-detail-contactperson__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}

.svc-detail-contactperson__content strong,
.svc-detail-contactperson__content span {
  margin: 0;
  padding: 0;
}

.svc-detail-contactperson__content strong {
  display: block;
  line-height: 1.1;
}

.svc-detail-contactperson__content span {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  opacity: 0.8;
}

.jobs-footer-banner--image-only {
  width: 100%;
  height: 320px;
  background: url('/wp-content/uploads/vacature.jpg') center center / cover no-repeat;
  margin: 0;
  padding: 0;
}

.jobs-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

footer {
  margin-top: 0;
}

.al-split__text--black,
.al-split__text--black p {
  color: #000;
}

.page-id-132 .jobs-footer-banner.jobs-footer-banner--image-only {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  height: 320px;
  padding: 0 !important;
  background: url('/wp-content/uploads/vacature.jpg') center center / cover no-repeat;
}

.page-id-132 .jobs-section,
.page-id-132 .jobs-footer-banner {
  margin-bottom: 0 !important;
}

.page-id-132 footer,
.page-id-132 .site-footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.vacature-side-photo {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.vacature-side-photo__img {
  display: block;
  width: 100%;
  height: auto;
}