/* De Spotlight container */
.spotlight-link {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important; /* Dwingt de hoogte van de hele rij af */
  text-decoration: none !important;
  overflow: hidden;
}

/* De Foto: 55% van de hoogte */
.spotlight-image-part {
  flex: 0 0 55% !important; 
  width: 100%;
  overflow: hidden;
}

.spotlight-image-part img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Het Gele Vlak: 45% van de hoogte */
.spotlight-text-part {
  flex: 0 0 45% !important;
  background-color: #f0b41a;
  padding: 22px 25px !important; /* lets compacter voor de balans */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}