/* Each slide */
.owl-user-carousel .owl-carousel .item {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;           /* center vertically */
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Background image */
.owl-user-carousel .owl-carousel .item .views-field-user-picture {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.owl-user-carousel .owl-carousel .item .views-field-user-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
  z-index: 1;
}

/* No gradient */
.owl-user-carousel .owl-carousel .item::after {
  content: none !important;
  background: none !important;
}

/* Text block overlay */
.owl-user-carousel .owl-carousel .item .text-overlay {
  position: relative;
  z-index: 3;
  padding: 12px 18px;
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}

/* Text styles */
.owl-user-carousel .text-overlay .name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.owl-user-carousel .text-overlay .voornaam {
  margin-right: .3rem;
}
.owl-user-carousel .text-overlay .totem {
  font-size: 1rem;
  font-weight: 600;
  color: #ffd966;
  margin-bottom: .15rem;
}
.owl-user-carousel .text-overlay .bijnaam {
  font-size: .95rem;
  color: #e6e6e6;
  font-style: italic;  /* 👈 makes 'bijnaam' italic */
}
.owl-user-carousel .owl-carousel .item { align-items: flex-end; }
.owl-user-carousel .text-overlay { margin-bottom: 16px; }
