/* Стиль для контейнера с вашим классом */
.clickable-img {
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

/* Эффект при наведении — меняем именно  внутри */
.clickable-img img {
  transition: all 0.2s ease !important;
  display: block !important; /* обязательно */
}

.clickable-img:hover img {
  transform: scale(1.03) !important;
  opacity: 0.95 !important;
}

/* Эффект "нажатия" */
.clickable-img.clicked img {
  transform: scale(0.98) !important;
  opacity: 0.85 !important;
}