.preview-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  width: 100%;
  padding: 18px;
}

.preview-item {
  position: relative;
  overflow: hidden;
  background: #eef0eb;
  border-radius: 10px;
}

.preview-item img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.preview-item span {
  display: block;
  padding: 8px 10px;
  overflow: hidden;
  color: #68746d;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.preview-item b {
  position: absolute;
  top: 7px;
  right: 7px;
  padding: 3px 7px;
  color: #fff;
  font-size: 10px;
  background: rgba(23, 33, 28, .82);
  border-radius: 99px;
}
