.flex_layout.split_hero {
  overflow: hidden;
  background: #1c1c1c;
  padding: 60px 0px 60px 0px;
}

.flex_layout.split_hero .split-hero__inner {
  display: flex;
  flex-direction: row;
  min-height: 78vh;
}

.flex_layout.split_hero .split-hero__paneel {
  position: relative;
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: flex 0.4s ease;
  border-radius: 10px;
}

.flex_layout.split_hero .split-hero__paneel:first-child {
  border-radius: 10px 0px 0px 10px;
}

.flex_layout.split_hero .split-hero__paneel:last-child {
  border-radius: 0px 10px 10px 0px;
}

/* Gradient overlay */
.flex_layout.split_hero .split-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 33.35%,
    rgba(0, 0, 0, 0.8) 85.56%
  );
  pointer-events: none;
}

.flex_layout.split_hero .split-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 2.5rem;
  color: var(--White, #fff);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Label */
.flex_layout.split_hero .split-hero__label {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--Purple-rain, #8089ff);
}

/* Titel */
.flex_layout.split_hero .split-hero__titel {
  font-size: clamp(1.75rem, 3vw, 4.3rem);
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--White, #fff);
  text-align: center;
  font-family: "Neue Haas Display", sans-serif;
  font-weight: 600;
}

.flex_layout.split_hero .split-hero__titel--vet {
  font-family: "PP Pangaia", sans-serif;
  font-weight: 700;
}

/* Knoppen */
.flex_layout.split_hero .split-hero__knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.flex_layout.split_hero .split-hero__knop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 4;
  background: rgba(255, 255, 255, 0.2);
  color: var(--White, #fff);
  text-decoration: none;
  font-family: "Neue Haas Display", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  font-style: normal;
  border-radius: 4px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.flex_layout.split_hero .split-hero__knop:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--White, #fff);
}

.flex_layout.split_hero .split-hero__knop-arrow {
  transition: transform 0.2s ease;
}

.flex_layout.split_hero .split-hero__knop:hover .split-hero__knop-arrow {
  transform: translateX(3px);
}

/* Tablet */
@media screen and (max-width: 992px) {
  .flex_layout.split_hero .split-hero__inner {
    min-height: 60vh;
  }

  .flex_layout.split_hero .split-hero__content {
    padding: 2rem 1.75rem;
  }
}

/* Mobiel — stapel onder elkaar */
@media screen and (max-width: 767px) {
  .flex_layout.split_hero .split-hero__inner {
    flex-direction: column;
    min-height: unset;
  }

  .flex_layout.split_hero .split-hero__paneel {
    min-height: 85vw;
    flex: none;
    border-radius: 10px !important;
  }

  .flex_layout.split_hero .split-hero__content {
    padding: 1.75rem 1.25rem;
  }
}
