.list {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 20px;
}
.card {
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  width: 100% !important;
  box-sizing: border-box;
  max-width: unset;
  display: inline;
}
.title{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
.image{
  width: 100%;
  height: 160px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}