/* Werkboekjes wizard: gereedschappen compact als grid met grotere afbeeldingen */
#wb-gereedschappen-lijst {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

#wb-gereedschappen-lijst > div {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: start !important;
  gap: 8px !important;
  margin-bottom: 0 !important;
  padding: 10px !important;
}

[id^="wb-gereedschap-prev-"] {
  grid-column: 1 / -1;
  width: 100% !important;
  height: 112px !important;
  border-radius: 8px !important;
  background: var(--surface-warm) !important;
}

[id^="wb-gereedschap-prev-"] img {
  width: 100% !important;
  height: 112px !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  background: #fff;
}

#wb-gereedschappen-lijst .wb-gereedschap-naam {
  min-width: 0;
  font-size: 13px;
}

@media (max-width: 560px) {
  #wb-gereedschappen-lijst {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [id^="wb-gereedschap-prev-"],
  [id^="wb-gereedschap-prev-"] img {
    height: 96px !important;
  }
}
