/* Editor preview uses the same tile styling but scaled down a bit */
.editor-preview-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.editor-preview {
  width: 100%;
  max-width: 260px;
}

@media (max-width: 900px) {
  .editor-preview {
    max-width: 100%;
  }
}
