@font-face {
  font-family: 'Literata';
  src: url('../fonts/literata-latin-normal.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Literata';
  src: url('../fonts/literata-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f4f4;
  --text: #333;
  --link: #0077cc;
  --footer-bg: #eee;
}
:root.dark {
  --bg: #1a1a1a;
  --text: #eee;
  --link: #66b3ff;
  --footer-bg: #333;
}

a,
a:visited {
  color: var(--link);
}

*,*::before,*::after {
  box-sizing: border-box;
}

html, body {
  height: auto;
}
body {
  margin: 0;
  font-family: "Literata", serif;
  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  letter-spacing: 0;
  padding-top: 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5, h6, nav, .button {
  font-family: "Inter", sans-serif;
  font-kerning: normal;
  letter-spacing: 0.01em;
}


header {
  background: var(--bg);
  padding: 1rem;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  transform: translateY(0);
  transition: transform 0.3s;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 500;
}
header.hide {
  transform: translateY(-100%);
}
header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(255, 0, 28), rgb(255, 153, 0), yellow, rgb(0, 255, 0), cyan, blue, rgb(134, 0, 255));
  pointer-events: none;
}
header h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-family: "Inter", sans-serif;
  color: #000;
}
.dark header h1 {
  color: #fff;
}
header h1 a,
header h1 a:visited,
header h1 a:hover,
header h1 a:active {
  color: inherit;
  text-decoration: none;
}
#menu-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: none;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(.4,0,.2,1), color 0.2s cubic-bezier(.4,0,.2,1);
}
#menu-toggle span {
  display: block;
  width: 60%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
#menu-toggle:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 2px;
}
#menu-toggle:hover {
  background-color: rgba(0,0,0,0.08);
}
.dark #menu-toggle:hover {
  background-color: rgba(255,255,255,0.1);
}
header nav {
  margin-left: auto;
  margin-top: 0;
}
header nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.rainbow{
    background: linear-gradient(90deg, rgb(255, 0, 28), rgb(255, 153, 0), yellow, rgb(0, 255, 0), cyan, blue, rgb(134, 0, 255));
}
.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  padding: 0;
}
.category-list li {
  margin: 0;
}
.category-list a {
  position: relative;
  text-decoration: none;
  color: var(--text);
  display: inline-block;
  padding: 0.25rem 0;
}
.category-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.2s cubic-bezier(.4,0,.2,1);
}
.category-list a:hover::after,
.category-list a:focus::after,
.category-list a.current::after {
  width: 100%;
}
.category-list a.current {
  color: var(--link);
}

.breadcrumb {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
  position: relative;
}
.breadcrumb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.2s cubic-bezier(.4,0,.2,1);
}
.breadcrumb a:hover::after,
.breadcrumb a:focus::after {
  width: 100%;
}

  .button {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: var(--link);
    color: #fff !important;
    display: inline-block;
    font-family: "Inter", sans-serif;
  }
  .theme-toggle {
    margin-left: 1rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    padding: 0;
  }
  main {
    max-width: 800px;
    width: 100%;
    flex: 1;
    margin: 1rem auto;
    padding: 2rem;
    background: var(--bg);
    box-sizing: border-box;
  }
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--bg);
    margin-top: auto;
    font-size: 0.8rem;
  }
  .footer-login {
    margin-left: auto;
    text-decoration: none;
    font-size: 0.75rem;
    color: var(--text);
  }
  .post-list-table {
    display: table;
    width: max-content;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
  }
  .post-list-table td {
    padding: 0.35rem 0;
    border: 0;
    vertical-align: top;
  }
  .post-list-table td + td {
    padding-left: 16px;
  }
  .post-list-rating-cell {
    width: 1%;
    white-space: nowrap;
  }
  .post-list-rating {
    display: inline-block;
    font-size: 0.55em;
    line-height: 1;
    vertical-align: 0.18em;
  }
  .post-list-title-cell {
    width: auto;
  }
  .post-list-title-cell a {
    display: inline-block;
    max-width: 34ch;
    vertical-align: top;
  }
  .post-list-date-cell,
  .post-list-length-cell {
    width: 1%;
    white-space: nowrap;
    color: color-mix(in srgb, var(--text) 72%, transparent);
    font-size: 0.95rem;
  }
  .post-list-length-cell {
    text-align: right;
  }
  .posts a { text-decoration: none; color: var(--link); }
  .error { color: red; }
  .post-content img, .post-content video, .post-content iframe { max-width: 100%; }
  .post-content img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .zoomable {
    cursor: pointer;
    position: relative;
    display: inline-block;
  }
  .image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    z-index: 1000;
    touch-action: auto;
  }
  .image-overlay img {
    max-width: 100%;
    max-height: 100%;
    cursor: zoom-in;
    display: block;
    user-select: none;
  }
  .image-overlay.level2 {
    overflow: auto;
    display: block;
  }
  .image-overlay.level2 img {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    cursor: zoom-out;
  }
  .image-overlay .close-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    user-select: none;
    z-index: 1001;
  }
  .loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .loader-overlay::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  body.no-scroll {
    overflow: hidden;
  }
  article.post {
    padding: 1rem 0;
  }
  article.post h2 {
    margin-top: 0;
  }
  article.post .date {
    color: #666;
  }
  .comments h3 {
    margin-top: 2rem;
  }
  form label {
    display: block;
    margin-bottom: 0.5rem;
  }
  input[type="text"], input[type="password"], textarea {
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
  }
  textarea {
    height: 6rem;
  }
  .hero {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    margin: 0 0 1rem 0;
  }
  nav a { margin: 0 0.5rem; }
  @media (max-width: 600px) {
    header h1 { font-size: clamp(1rem, 4.5vw, 1.4rem); }
    main { padding: 1rem; }
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-block !important; }
    .post-list-table td + td { padding-left: 16px; }
    .post-list-date-cell,
    .post-list-length-cell {
      white-space: normal;
      font-size: 0.85rem;
    }
    .post-list-title-cell a { max-width: 22ch; }
    /* menu always available; no special display rules needed */
  }

.mobile-only { display: none; }
.desktop-only { display: inline-block; }
#settings-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 999;
  padding: 0.5rem 1rem 1.5rem;
  padding-top: calc(0.5rem + env(safe-area-inset-top, 0px));
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
#settings-menu.open {
  display: flex;
}
#settings-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#settings-menu nav a {
  font-family: "Inter", sans-serif;
  color: var(--text);
  text-decoration: none;
}
#settings-menu nav a:hover,
#settings-menu nav a:focus {
  text-decoration: underline;
}
#menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}
#settings-menu .theme-toggle {
  margin-left: 0;
  align-self: flex-start;
}
#menu-toggle { display: inline-flex; }

.hidden {
  display: none;
}

@media (min-width: 768px) {
  #settings-menu {
    width: min(340px, 90vw);
    height: auto;
    max-height: calc(100vh - 5rem);
    top: 4.5rem;
    left: auto;
    right: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }
}

#share-btn-container {
  display: inline-block;
}
#share-btn {
  background: none;
  border: none;
  color: var(--link);
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
#share-btn .label {
  display: none;
}
#share-btn:hover .label {
  display: inline;
}
.views {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.post-meta-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.25rem 0.4rem;
  border: 1px solid #555555;
  border-radius: 999px;
  color: #555555;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(.4,0,.2,1), color 0.2s cubic-bezier(.4,0,.2,1);
}
.badge:hover,
.badge:focus {
  background-color: rgba(0,0,0,0.05);
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footnotes {
  margin-top: 0;
  font-size: 0.9rem;
  padding-left: 1.2rem;
  list-style: decimal;
}

.footnotes li {
  margin-bottom: 0.25rem;
}

.footnote-ref a {
  text-decoration: none;
  color: var(--link);
  cursor: pointer;
}

.footnote-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  padding: 1rem;
  box-sizing: border-box;
  overflow-y: auto;
}
.footnote-box {
  background: var(--bg);
  color: var(--text);
  padding: 1rem;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  position: relative;
}
.footnote-box img {
  max-width: 100%;
  height: auto;
}

.footnote-close {
  position: fixed;
  top: 0.25rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  z-index: 1001;
}

.admin-create-form fieldset {
  margin: 0 0 1rem;
  padding: 0.75rem;
  border: 1px solid rgba(85, 85, 85, 0.35);
  border-radius: 6px;
}

.admin-create-form fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.75rem;
}

body.post-editor-body {
  overflow: hidden;
}

body.post-editor-body footer {
  display: none;
}

body.post-editor-body main.editor-main,
.editor-main {
  max-width: none;
  width: 100vw;
  margin: 0;
  padding: 0;
}

.post-editor-shell {
  height: calc(100vh - 4rem);
  height: calc(100dvh - 4rem);
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, auto) minmax(0, auto) minmax(22rem, 1fr);
  overflow: hidden;
  background: var(--bg);
}

.editor-topbar,
.editor-assets-row,
.editor-pane-header {
  font-family: "Inter", sans-serif;
}

.editor-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  max-height: 12rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(85, 85, 85, 0.28);
  overflow-y: auto;
}

.editor-meta-fields {
  display: grid;
  grid-template-columns: minmax(14rem, 2fr) 10rem 8.5rem minmax(18rem, 3fr);
  gap: 0.75rem;
  align-items: end;
}

.editor-field {
  margin: 0;
}

.editor-field span,
.editor-categories legend {
  display: block;
  margin-bottom: 0.25rem;
  color: color-mix(in srgb, var(--text) 72%, transparent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.editor-field input[type="text"],
.editor-field input[type="date"],
.editor-field select {
  width: 100%;
  min-height: 2.45rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(85, 85, 85, 0.35);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.editor-categories {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.editor-categories legend {
  width: 100%;
}

.editor-categories label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 2rem;
  margin: 0;
  padding: 0.25rem 0.45rem;
  border: 1px solid rgba(85, 85, 85, 0.3);
  border-radius: 6px;
  font-size: 0.85rem;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.editor-actions button,
.image-upload-button {
  min-height: 2.35rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(85, 85, 85, 0.35);
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  font: inherit;
  cursor: pointer;
}

.secondary-button {
  background: transparent;
  color: var(--link) !important;
  border: 1px solid rgba(85, 85, 85, 0.35);
}

.autosave-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  color: var(--text);
  font-size: 0.85rem;
  white-space: nowrap;
}

.autosave-status::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #2f8f4e;
}

.autosave-status[data-state="dirty"]::before {
  background: #c57a00;
}

.autosave-status[data-state="saving"]::before {
  background: #2b73d2;
}

.autosave-status[data-state="error"]::before {
  background: #c83232;
}

.editor-assets-row {
  display: grid;
  grid-template-columns: auto minmax(8rem, auto) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  min-height: 4.25rem;
  max-height: 6rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(85, 85, 85, 0.2);
  overflow: hidden;
}

.image-upload-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}

.image-upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-status {
  min-width: 8rem;
  color: color-mix(in srgb, var(--text) 72%, transparent);
  font-size: 0.85rem;
}

.upload-status[data-state="error"] {
  color: #c83232;
}

.asset-list {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  min-width: 0;
  padding-bottom: 0.2rem;
}

.asset-item {
  flex: 0 0 12rem;
  height: 3rem;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: center;
  padding: 0.25rem;
  border: 1px solid rgba(85, 85, 85, 0.3);
  border-radius: 6px;
  background: color-mix(in srgb, var(--bg) 88%, var(--text));
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.asset-item img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: cover;
  border-radius: 4px;
  background: #fff;
}

.asset-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
}

.editor-panes {
  height: 100%;
  min-height: 0;
  width: min(100vw, 1600px);
  align-self: stretch;
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-left: 1px solid rgba(85, 85, 85, 0.24);
  border-right: 1px solid rgba(85, 85, 85, 0.24);
}

.editor-pane {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.editor-source-pane {
  border-right: 1px solid rgba(85, 85, 85, 0.28);
}

.editor-pane-header {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(85, 85, 85, 0.22);
}

.editor-pane-header h2 {
  margin: 0;
  font-size: 0.95rem;
}

.editor-pane-header span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: color-mix(in srgb, var(--text) 68%, transparent);
  font-size: 0.8rem;
}

.html-editor-wrap {
  flex: 1;
  min-height: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #1e1e1e;
  color: #d4d4d4;
  font-family: Consolas, "Cascadia Code", "Liberation Mono", Menlo, monospace;
  font-size: 0.92rem;
  line-height: 1.55;
  tab-size: 2;
}

.html-editor-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2.5rem;
  background: #252526;
  border-right: 1px solid #333842;
  pointer-events: none;
  z-index: 1;
}

.html-highlight,
#html-content {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 1rem 1rem 1rem 3.25rem;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font: inherit;
  line-height: inherit;
  tab-size: 2;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.html-highlight {
  z-index: 1;
  display: none;
  overflow: hidden;
  pointer-events: none;
  scrollbar-width: none;
  user-select: none;
}

.html-highlight::-webkit-scrollbar {
  display: none;
}

#html-content {
  z-index: 2;
  resize: none;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: none;
  max-height: none;
  background: transparent;
  color: #d4d4d4;
  caret-color: #d4d4d4;
  cursor: text;
  pointer-events: auto;
  scrollbar-gutter: stable;
}

.post-editor-shell.syntax-highlighted .html-highlight {
  display: block;
}

.post-editor-shell.syntax-highlighted #html-content {
  color: rgba(212, 212, 212, 0.01);
  -webkit-text-fill-color: rgba(212, 212, 212, 0.01);
}

.post-editor-shell.syntax-highlighted #html-content::selection {
  background: rgba(0, 122, 204, 0.42);
  color: rgba(212, 212, 212, 0.01);
  -webkit-text-fill-color: rgba(212, 212, 212, 0.01);
}

.post-editor-shell.wrapped-editor #html-content {
  color: #d4d4d4;
  -webkit-text-fill-color: #d4d4d4;
}

.post-editor-shell.wrapped-editor #html-content::selection {
  background: rgba(0, 122, 204, 0.45);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

#html-content:focus {
  outline: 2px solid #007acc;
  outline-offset: -2px;
}

.html-comment {
  color: #6a9955;
}

.html-doctype {
  color: #808080;
}

.html-punctuation {
  color: #808080;
}

.html-tag {
  color: #569cd6;
}

.html-attr {
  color: #9cdcfe;
}

.html-operator {
  color: #d4d4d4;
}

.html-string {
  color: #ce9178;
}

.html-entity {
  color: #d7ba7d;
}

#post-preview-frame {
  flex: 1;
  min-height: 0;
  height: 100%;
  width: 100%;
  border: 0;
  background: #fff;
}

.preview-main {
  margin-top: 0.5rem;
}

@media (max-width: 1100px) {
  .editor-topbar,
  .editor-meta-fields,
  .editor-assets-row {
    grid-template-columns: 1fr;
  }

  .editor-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  body.post-editor-body {
    overflow: auto;
  }

  .post-editor-shell {
    height: auto;
    min-height: calc(100vh - 4rem);
    min-height: calc(100dvh - 4rem);
    display: grid;
    grid-template-rows: auto auto auto;
    overflow: visible;
  }

  .editor-topbar,
  .editor-assets-row {
    max-height: none;
    overflow: visible;
  }

  .editor-panes {
    height: auto;
    width: 100vw;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(26rem, 55vh) minmax(26rem, 55vh);
  }

  .editor-source-pane {
    border-right: 0;
    border-bottom: 1px solid rgba(85, 85, 85, 0.28);
  }
}
