/* Global fix for card clickability */
.card-explore {
  position: relative;
  z-index: 1;
  transform: translate3d(0,0,0); /* Force GPU layer to potentially help with z-index issues on mobile */
}

.card-explore .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.card-explore__link {
    position: relative; 
    z-index: 2; /* Ensure button is above stretched link */
}
