/* Slider Apply Now Overlay Fix
   The .labelbox (caption overlay) sits inside .views-field-field-caption
   which has height:0 and no z-index, causing it to render beneath the slide image.
   Giving .labelbox a z-index establishes a stacking context above the image,
   making the .link-over anchor clickable. */

.bxslider1 .views-field-field-caption {
  position: relative;
  z-index: 10;
}

.bxslider1 .labelbox {
  z-index: 10;
}

/* Ensure the link-over overlay is always on top and fully clickable */
.bxslider1 a.link-over {
  z-index: 200;
  cursor: pointer;
}