/* YMC Filter Resource Cards - Clickable */
.ymc-resource-card-clickable {
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 14px;
}

.ymc-resource-card-clickable:hover {
  border-color: #bff67e;
  box-shadow:
    0 0 0 1px #bff67e,
    0 10px 30px rgba(191, 246, 126, 0.25);
  transform: translateY(-3px);
}

.ymc-resource-card-clickable:active {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px #bff67e,
    0 5px 15px rgba(191, 246, 126, 0.2);
}

/* Highlight the card title on hover - matching gw-card-row style */
.ymc-resource-card-clickable:hover h1,
.ymc-resource-card-clickable:hover h2,
.ymc-resource-card-clickable:hover h3,
.ymc-resource-card-clickable:hover h4,
.ymc-resource-card-clickable:hover .entry-title,
.ymc-resource-card-clickable:hover .post-title,
.ymc-resource-card-clickable:hover a[class*='title'] {
  color: #bff67e !important;
}

/* Ensure buttons inside clickable cards still work independently */
.ymc-resource-card-clickable a.button,
.ymc-resource-card-clickable a.btn,
.ymc-resource-card-clickable a[class*='button'],
.ymc-resource-card-clickable a[class*='btn'] {
  position: relative;
  z-index: 10;
}
