/* Extracted from inline <style> in template-parts_home-why-choose-us.php (part of #11 front-end unification) */

.wcu-card--clickable {
  cursor: pointer;
  position: relative;
}
.wcu-card--clickable:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.wcu-card__arrow {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary, #0066cc);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s, transform .2s;
}
.wcu-card--clickable:hover .wcu-card__arrow {
  opacity: 1;
  transform: translateY(0);
}
