/* Base feel */
.jm-clickable-card {
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.jm-clickable-card:hover,
.jm-clickable-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
@media (prefers-reduced-motion: reduce) {
  .jm-clickable-card { transition: box-shadow .15s ease; }
  .jm-clickable-card:hover,
  .jm-clickable-card:focus-within { transform: none; }
}

/* The full-card link overlay */
.jm-clickable-card > a.block-link {
  position: absolute;
  inset: 0;           /* top/right/bottom/left */
  z-index: 10;        /* above inner content */
  text-indent: -9999px; /* visually hidden, still accessible */
  overflow: hidden;
}

/* Focus ring for keyboard users */
.jm-clickable-card > a.block-link:focus {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Keep specific inner elements clickable above the overlay if needed */
.jm-clickable-card .allow-click {
  position: relative;
  z-index: 20;
}
