.image-choice-group {
  display: grid;
  gap: 8px;
  grid-auto-flow: column;
  align-items: center;
  justify-items: center;
  grid-auto-columns: 1fr;
  /* cancel .choice */
  opacity: 1;
  transition: none !important;
}

.image-choice-group:hover {
  opacity: 1;
  transition: none !important;
}

.image-choice-group img {
  width: 100%;
  max-height: 400px;
}

/* Recreate the same transition are text choices */
.image-choice-group a  {
  opacity: 0.5;
  transition: all 1s;
  color: white;
}

.image-choice-group a:hover {
  color: white;
  opacity: 1;
  transition: all 1s;
}
