.pv-ground-card-linkable {
  position: relative;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), border-color 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.pv-ground-card-linkable .pv-ground-title-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.pv-ground-card-linkable:hover,
.pv-ground-card-linkable:focus-within {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.62);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.13);
}

.pv-ground-card-linkable:active {
  transform: translateY(-1px) scale(0.995);
}

.pv-ground-card-linkable .pv-ground-title-link:focus-visible {
  border-radius: 2px;
  outline: 3px solid rgba(16, 185, 129, 0.3);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .pv-ground-card-linkable {
    transition: none;
  }
}
