/* Truly empty except for the one layout that cannot exist without CSS:
   the post editor's side-by-side markdown/preview columns.
   Everything else is 100% browser default — no fonts, no input styling,
   no label styling, no link styling beyond what the browser already does. */

.editor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.editor-grid textarea {
  width: 100%;
  height: 60vh;
}

.preview {
  height: 60vh;
  overflow-y: auto;
}

@media (max-width: 600px) {
  .editor-grid {
    grid-template-columns: 1fr;
  }
}
