
/* izGaraže v0.29d — illustrated vehicle type cards */
.type-grid-illustrated{
  gap:12px;
}
.type-grid-illustrated .vehicle-type-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  min-height:142px;
  padding:10px 10px 14px;
  background:#f7f8f9;
  border:1px solid #e5e9eb;
  border-radius:14px;
  overflow:hidden;
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}
.type-grid-illustrated .vehicle-type-card:hover{
  transform:translateY(-2px);
  border-color:#d7dde1;
  box-shadow:0 8px 22px rgba(30,37,43,.08);
}
.vehicle-type-art{
  width:100%;
  height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:5px;
}
.vehicle-type-art img{
  display:block;
  width:100%;
  max-width:165px;
  height:92px;
  object-fit:contain;
}
.type-grid-illustrated .vehicle-type-card b{
  font-size:12px;
  line-height:1.2;
  color:#202428;
}
@media(max-width:800px){
  .type-grid-illustrated{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding-bottom:4px;
    scroll-snap-type:x proximity;
  }
  .type-grid-illustrated .vehicle-type-card{
    min-width:145px;
    min-height:132px;
    scroll-snap-align:start;
  }
  .vehicle-type-art,
  .vehicle-type-art img{
    height:84px;
  }
}
