/* ── JSON Sort Keys — style.css ─────────────────────────────────────────── */

/* ── Custom Properties ─────────────────────────────────────────────────────── */
.jsk-page {
  /* Dark theme (default) */
  --bg:           #0d1117;
  --bg-hero:      #0d1117;
  --surface:      #161b22;
  --surface-2:    #1c2128;
  --surface-3:    #21262d;
  --border:       #30363d;
  --border-soft:  #21262d;
  --text:         #e6edf3;
  --text-muted:   #8b949e;
  --text-subtle:  #484f58;
  --accent:       #58a6ff;
  --accent-2:     #79c0ff;
  --accent-grd:   linear-gradient(135deg, #388bfd 0%, #1f6feb 100%);
  --success:      #3fb950;
  --error:        #f85149;
  --warn:         #d29922;
  --code-bg:      #010409;
  --code-text:    #e6edf3;
  --ln-bg:        #0d1117;
  --ln-text:      #3d444d;
  --shadow:       0 4px 24px rgba(0,0,0,.45);
  --shadow-lg:    0 8px 48px rgba(0,0,0,.6);
  --shadow-btn:   0 2px 10px rgba(88,166,255,.25);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-xs:    6px;
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono:         'Fira Code', 'Cascadia Code', 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --transition:   .18s ease;
  --editor-h:     600px;

  font-family: var(--font);
  background:  var(--bg);
  color:        var(--text);
  line-height:  1.6;
  overflow-x:   hidden;
  box-sizing:   border-box;
}

/* Light theme */
.jsk-page[data-theme="light"] {
  --bg:         #f0f4f8;
  --bg-hero:    #eef2ff;
  --surface:    #ffffff;
  --surface-2:  #f6f8fa;
  --surface-3:  #f0f2f5;
  --border:     #d0d7de;
  --border-soft:#e2e8f0;
  --text:       #1f2328;
  --text-muted: #656d76;
  --text-subtle:#8c959f;
  --accent:     #0969da;
  --accent-2:   #218bff;
  --accent-grd: linear-gradient(135deg, #0969da 0%, #4f46e5 100%);
  --success:    #1a7f37;
  --error:      #cf222e;
  --warn:       #9a6700;
  --code-bg:    #13161e;
  --code-text:  #e6edf3;
  --ln-bg:      #0d1117;
  --ln-text:    #3d444d;
  --shadow:     0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 6px 28px rgba(0,0,0,.12);
  --shadow-btn: 0 2px 10px rgba(9,105,218,.22);
}

*, *::before, *::after { box-sizing: inherit; }

/* ── Container ──────────────────────────────────────────────────────────────── */
.jsk-container {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── Kicker ─────────────────────────────────────────────────────────────────── */
.jsk-kicker {
  display:        inline-block;
  margin:         0 0 14px;
  padding:        4px 12px;
  background:     rgba(88,166,255,.12);
  border:         1px solid rgba(88,166,255,.25);
  border-radius:  999px;
  color:          var(--accent);
  font-size:      .72rem;
  font-weight:    700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.jsk-page[data-theme="light"] .jsk-kicker {
  background: rgba(9,105,218,.08);
  border-color: rgba(9,105,218,.2);
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.jsk-hero {
  background:
    linear-gradient(180deg, rgba(88,166,255,.06) 0%, transparent 70%),
    var(--bg-hero);
  background-image:
    linear-gradient(180deg, rgba(88,166,255,.06) 0%, transparent 70%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.jsk-page[data-theme="light"] .jsk-hero {
  background-image:
    linear-gradient(180deg, rgba(9,105,218,.06) 0%, transparent 70%),
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

.jsk-hero-row {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-bottom:   16px;
}

.jsk-hero-title {
  margin:        0 0 14px;
  font-size:     clamp(2rem, 5vw, 3.5rem);
  font-weight:   800;
  line-height:   1.1;
  letter-spacing: -.03em;
  background:    var(--accent-grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jsk-hero-desc {
  margin:     0 0 24px;
  max-width:  680px;
  color:      var(--text-muted);
  font-size:  1.05rem;
  line-height: 1.7;
}

/* Feature badges */
.jsk-badges {
  display:   flex;
  flex-wrap: wrap;
  gap:       10px;
}

.jsk-badge {
  display:      inline-flex;
  align-items:  center;
  gap:          6px;
  padding:      6px 14px;
  background:   var(--surface);
  border:       1px solid var(--border);
  border-radius: 999px;
  color:        var(--text-muted);
  font-size:    .8rem;
  font-weight:  500;
  transition:   border-color var(--transition), color var(--transition);
}
.jsk-badge:hover { border-color: var(--accent); color: var(--accent); }
.jsk-badge svg   { color: var(--accent); flex-shrink: 0; }

/* Theme button */
.jsk-theme-btn {
  display:       flex;
  align-items:   center;
  justify-content: center;
  width:         38px;
  height:        38px;
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius-xs);
  color:         var(--text-muted);
  cursor:        pointer;
  padding:       0;
  transition:    color var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink:   0;
}
.jsk-theme-btn:hover { color: var(--accent); border-color: var(--accent); }
.jsk-page[data-theme="dark"]  .jsk-icon-moon { display: none; }
.jsk-page[data-theme="light"] .jsk-icon-sun  { display: none; }

/* ── Ad Zones ───────────────────────────────────────────────────────────────── */
.jsk-ad-zone { padding: 20px 0; }
.jsk-ad-inline { margin: 32px 0 0; padding: 0; }

.jsk-ad-slot {
  border-radius: var(--radius-sm);
  border:        2px dashed var(--border);
  background:    var(--surface);
  color:         var(--text-subtle);
  font-size:     .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display:       flex;
  align-items:   center;
  justify-content: center;
  min-height:    100px;
}
.jsk-ad-728x90 { max-width: 728px; height: 90px; min-height: 90px; margin: 0 auto; }

/* ── Workspace ──────────────────────────────────────────────────────────────── */
.jsk-workspace { padding: 0 0 40px; }

/* ── Toolbar ────────────────────────────────────────────────────────────────── */
.jsk-toolbar {
  position:      sticky;
  top:           0;
  z-index:       90;
  display:       flex;
  align-items:   center;
  flex-wrap:     wrap;
  gap:           10px;
  background:    var(--surface-2);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       12px 16px;
  margin:        24px 0 16px;
  box-shadow:    var(--shadow);
  transition:    background var(--transition), box-shadow var(--transition);
}

.jsk-toolbar.is-sticky {
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top:    0;
  background:    rgba(22,27,34,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:    0 6px 30px rgba(0,0,0,.5);
}
.jsk-page[data-theme="light"] .jsk-toolbar.is-sticky {
  background: rgba(255,255,255,.9);
}

.jsk-toolbar-selects {
  display:   flex;
  flex-wrap: wrap;
  gap:       10px;
  flex:      1 1 auto;
  min-width: 0;
}

.jsk-toolbar-actions {
  display:     flex;
  flex-wrap:   wrap;
  align-items: center;
  gap:         6px;
  flex-shrink: 0;
}

/* Select groups */
.jsk-select-group {
  display:        flex;
  flex-direction: column;
  gap:            3px;
  min-width:      0;
}

.jsk-select-label {
  font-size:      .67rem;
  font-weight:    700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color:          var(--text-subtle);
}

.jsk-select {
  background:    var(--surface-3);
  border:        1px solid var(--border);
  border-radius: var(--radius-xs);
  color:         var(--text);
  font-family:   var(--font);
  font-size:     .82rem;
  padding:       7px 28px 7px 10px;
  cursor:        pointer;
  outline:       none;
  appearance:    none;
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b949e' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 8px center;
  transition:    border-color var(--transition);
  min-width:     160px;
  max-width:     220px;
}
.jsk-select:focus { border-color: var(--accent); }

/* Buttons */
.jsk-btn {
  display:       inline-flex;
  align-items:   center;
  gap:           6px;
  padding:       7px 13px;
  background:    var(--surface-3);
  border:        1px solid var(--border);
  border-radius: var(--radius-xs);
  color:         var(--text-muted);
  font-family:   var(--font);
  font-size:     .82rem;
  font-weight:   500;
  cursor:        pointer;
  line-height:   1;
  white-space:   nowrap;
  text-decoration: none;
  transition:    background var(--transition), color var(--transition), border-color var(--transition), transform .1s ease;
}
.jsk-btn:hover  { background: var(--surface-2); color: var(--text); border-color: var(--text-subtle); }
.jsk-btn:active { transform: scale(.97); }

.jsk-btn-primary {
  background:    var(--accent);
  border-color:  var(--accent);
  color:         #fff;
  font-weight:   600;
  box-shadow:    var(--shadow-btn);
}
.jsk-btn-primary:hover {
  background:    var(--accent-2);
  border-color:  var(--accent-2);
  color:         #fff;
  box-shadow:    0 4px 16px rgba(88,166,255,.4);
}
.jsk-btn-primary.loading { opacity: .7; pointer-events: none; }

.jsk-btn-primary svg { flex-shrink: 0; }

.jsk-upload-label { cursor: pointer; }
#jskFileInput { display: none; }

/* Separator */
.jsk-sep {
  display: inline-block;
  width:   1px;
  height:  24px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Editor Grid ────────────────────────────────────────────────────────────── */
.jsk-editor-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   16px;
  align-items:           start;
}

/* ── Editor Panel ───────────────────────────────────────────────────────────── */
.jsk-editor-panel {
  display:       flex;
  flex-direction: column;
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  overflow:      hidden;
  box-shadow:    var(--shadow);
}

/* Panel header — macOS-style */
.jsk-panel-header {
  display:         flex;
  align-items:     center;
  gap:             10px;
  padding:         10px 14px;
  background:      var(--surface-2);
  border-bottom:   1px solid var(--border);
  flex-shrink:     0;
}

.jsk-panel-chrome {
  display: flex;
  gap:     6px;
  flex-shrink: 0;
}

.jsk-dot {
  width:         12px;
  height:        12px;
  border-radius: 50%;
  flex-shrink:   0;
}
.jsk-dot-r { background: #ff5f57; }
.jsk-dot-y { background: #febc2e; }
.jsk-dot-g { background: #28c840; }

.jsk-panel-title {
  flex:        1 1 auto;
  font-size:   .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color:       var(--text-muted);
  min-width:   0;
  overflow:    hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jsk-panel-meta {
  font-size:     .72rem;
  color:         var(--text-subtle);
  font-variant-numeric: tabular-nums;
  white-space:   nowrap;
  flex-shrink:   0;
}

/* ── Editor Shell (line numbers + textarea) ─────────────────────────────────── */
.jsk-editor-shell {
  display:               grid;
  grid-template-columns: 48px 1fr;
  flex:                  1 1 auto;
  height:                var(--editor-h);
  background:            var(--code-bg);
  overflow:              hidden;
}

.jsk-editor-shell.is-dragging {
  outline:        2px dashed var(--accent);
  outline-offset: -4px;
}

.jsk-line-nums {
  margin:      0;
  padding:     16px 10px 16px 0;
  background:  var(--ln-bg);
  border-right: 1px solid #21262d;
  color:        var(--ln-text);
  font-family:  var(--mono);
  font-size:    .8rem;
  line-height:  1.65;
  text-align:   right;
  user-select:  none;
  overflow:     hidden;
  white-space:  pre;
}

.jsk-editor-area {
  display:    block;
  width:      100%;
  height:     100%;
  margin:     0;
  padding:    16px;
  background: transparent;
  border:     none;
  color:      var(--code-text);
  font-family: var(--mono);
  font-size:  .83rem;
  line-height: 1.65;
  resize:     none;
  outline:    none;
  tab-size:   2;
  overflow:   auto;
  white-space: pre;
  overflow-wrap: normal;
}

.jsk-editor-area::placeholder { color: var(--text-subtle); opacity: .7; }
.jsk-editor-area[readonly]    { cursor: default; }

/* Scrollbar styling */
.jsk-editor-area::-webkit-scrollbar,
.jsk-line-nums::-webkit-scrollbar { width: 6px; height: 6px; }
.jsk-editor-area::-webkit-scrollbar-track,
.jsk-line-nums::-webkit-scrollbar-track { background: transparent; }
.jsk-editor-area::-webkit-scrollbar-thumb,
.jsk-line-nums::-webkit-scrollbar-thumb { background: #30363d; border-radius: 3px; }
.jsk-editor-area::-webkit-scrollbar-thumb:hover { background: #484f58; }

/* ── Status bar ─────────────────────────────────────────────────────────────── */
.jsk-status-bar {
  position:    relative;
  min-height:  28px;
  padding:     4px 14px;
  background:  var(--surface-2);
  border-top:  1px solid var(--border);
  font-size:   .74rem;
  color:       var(--text-subtle);
  display:     flex;
  align-items: center;
}

.jsk-status-bar.valid   { color: var(--success); }
.jsk-status-bar.invalid { color: var(--error);   }

/* ── Toast ──────────────────────────────────────────────────────────────────── */
.jsk-toast {
  position:   absolute;
  right:      12px;
  top:        50%;
  transform:  translateY(-50%) translateY(4px);
  background: var(--text);
  color:      var(--surface);
  font-size:  .74rem;
  font-weight: 500;
  padding:    4px 10px;
  border-radius: var(--radius-xs);
  opacity:    0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
}
.jsk-toast.show { opacity: 1; transform: translateY(-50%); }

/* ── Message Bar ────────────────────────────────────────────────────────────── */
.jsk-message {
  min-height:    44px;
  margin:        14px 0 0;
  padding:       12px 16px;
  border-radius: var(--radius-sm);
  border:        1px solid var(--border);
  background:    var(--surface);
  color:         var(--text-muted);
  font-size:     .85rem;
  display:       flex;
  align-items:   center;
  gap:           8px;
  transition:    border-color var(--transition), color var(--transition);
}
.jsk-message:empty { display: none; }
.jsk-message.valid   { color: var(--success); border-color: rgba(63,185,80,.3);  }
.jsk-message.invalid { color: var(--error);   border-color: rgba(248,81,73,.3);  }

/* ── Stats Grid ─────────────────────────────────────────────────────────────── */
.jsk-stats-grid {
  display:               grid;
  grid-template-columns: repeat(6, 1fr);
  gap:                   12px;
  margin:                16px 0 0;
}

.jsk-stat-card {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            4px;
  padding:        16px 12px;
  background:     var(--surface);
  border:         1px solid var(--border);
  border-radius:  var(--radius-sm);
  text-align:     center;
  transition:     border-color var(--transition), transform var(--transition);
}
.jsk-stat-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.jsk-stat-icon { color: var(--text-subtle); line-height: 1; }
.jsk-stat-value {
  font-size:    1.35rem;
  font-weight:  800;
  color:        var(--text);
  font-variant-numeric: tabular-nums;
  line-height:  1;
}
.jsk-stat-label {
  font-size:    .7rem;
  font-weight:  600;
  color:        var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── SEO Content ────────────────────────────────────────────────────────────── */
.jsk-seo { padding: 56px 0; border-top: 1px solid var(--border); }

.jsk-seo h2 {
  margin:       0 0 16px;
  font-size:    clamp(1.4rem, 3vw, 2rem);
  font-weight:  800;
  letter-spacing: -.02em;
  color:        var(--text);
}

.jsk-seo h3 {
  margin:       20px 0 8px;
  font-size:    1.05rem;
  font-weight:  700;
  color:        var(--text);
}

.jsk-seo p  { margin: 0 0 14px; color: var(--text-muted); line-height: 1.75; }
.jsk-seo code {
  font-family: var(--mono);
  font-size:   .85em;
  padding:     2px 6px;
  background:  var(--surface-3);
  border:      1px solid var(--border);
  border-radius: 4px;
  color:       var(--accent-2);
}

.jsk-seo-intro   { margin-bottom: 36px; }
.jsk-seo-block   { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border-soft); }
.jsk-seo-block:last-child { border-bottom: none; padding-bottom: 0; }

/* SEO feature cards */
.jsk-seo-cards {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   16px;
  margin-top:            24px;
}

.jsk-seo-card {
  padding:       22px;
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  transition:    border-color var(--transition), transform var(--transition);
}
.jsk-seo-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.jsk-seo-card h3    { margin: 0 0 10px; font-size: .95rem; color: var(--text); }
.jsk-seo-card p     { margin: 0; font-size: .88rem; }

/* Benefits list */
.jsk-benefit-list {
  margin:      12px 0 0;
  padding:     0;
  list-style:  none;
  display:     flex;
  flex-direction: column;
  gap:         12px;
}
.jsk-benefit-list li {
  padding:       12px 16px;
  background:    var(--surface);
  border:        1px solid var(--border);
  border-left:   3px solid var(--accent);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  color:         var(--text-muted);
  font-size:     .9rem;
  line-height:   1.6;
}
.jsk-benefit-list li strong { color: var(--text); }

/* Code examples */
.jsk-code-example {
  margin:        14px 0;
  border-radius: var(--radius-sm);
  overflow:      hidden;
  border:        1px solid var(--border);
}

.jsk-code-label {
  padding:     6px 14px;
  background:  var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size:   .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color:       var(--text-subtle);
}

.jsk-pre {
  margin:     0;
  padding:    14px 16px;
  background: var(--code-bg);
  overflow-x: auto;
  font-family: var(--mono);
  font-size:  .82rem;
  line-height: 1.65;
  color:      var(--code-text);
}

.jsk-pre code { all: unset; font: inherit; color: inherit; }

/* FAQ */
.jsk-faq { margin-top: 8px; }
.jsk-faq h2 { margin-bottom: 20px; }

.jsk-faq-item {
  margin-bottom: 10px;
  border:        1px solid var(--border);
  border-radius: var(--radius-sm);
  background:    var(--surface);
  overflow:      hidden;
  transition:    border-color var(--transition);
}
.jsk-faq-item:hover           { border-color: var(--text-subtle); }
.jsk-faq-item[open]           { border-color: var(--accent); }

.jsk-faq-item summary {
  padding:     14px 18px;
  font-weight: 600;
  font-size:   .92rem;
  color:       var(--text);
  cursor:      pointer;
  list-style:  none;
  display:     flex;
  align-items: center;
  gap:         10px;
  user-select: none;
}
.jsk-faq-item summary::-webkit-details-marker { display: none; }
.jsk-faq-item summary::before {
  content:     '›';
  font-size:   1.1rem;
  color:       var(--accent);
  transition:  transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.jsk-faq-item[open] summary::before { transform: rotate(90deg); }

.jsk-faq-item p {
  margin:  0;
  padding: 0 18px 16px;
  font-size: .88rem;
  line-height: 1.75;
}

/* ── Focus Ring ─────────────────────────────────────────────────────────────── */
.jsk-btn:focus-visible,
.jsk-select:focus-visible,
.jsk-theme-btn:focus-visible,
.jsk-upload-label:focus-visible,
.jsk-faq-item summary:focus-visible {
  outline:        2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Loading Animation ──────────────────────────────────────────────────────── */
@keyframes jsk-spin {
  to { transform: rotate(360deg); }
}
.jsk-btn-primary.loading svg {
  animation: jsk-spin .7s linear infinite;
}

/* ── Responsive — Tablet ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .jsk-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .jsk-select     { min-width: 140px; }
}

@media (max-width: 900px) {
  .jsk-editor-grid  { grid-template-columns: 1fr; }
  .jsk-seo-cards    { grid-template-columns: 1fr 1fr; }
  .jsk-editor-shell { height: 420px; }
}

@media (max-width: 768px) {
  .jsk-container    { width: calc(100% - 32px); }
  .jsk-hero         { padding: 32px 0; }
  .jsk-hero-title   { font-size: 2rem; }
  .jsk-hero-desc    { font-size: .95rem; }
  .jsk-toolbar      {
    flex-direction: column;
    align-items:    stretch;
    gap:            12px;
    margin-top:     16px;
  }
  .jsk-toolbar-selects { flex-direction: column; }
  .jsk-select          { min-width: 0; max-width: none; width: 100%; }
  .jsk-toolbar-actions { flex-wrap: wrap; }
  .jsk-btn             { flex: 1 1 calc(50% - 6px); justify-content: center; min-width: 80px; }
  .jsk-btn-primary     { flex: 1 1 100%; }
  .jsk-sep             { display: none; }
  .jsk-editor-shell    { height: 360px; grid-template-columns: 38px 1fr; }
  .jsk-line-nums       { font-size: .72rem; padding: 12px 8px 12px 0; }
  .jsk-editor-area     { font-size: .78rem; padding: 12px; }
  .jsk-stats-grid      { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .jsk-stat-value      { font-size: 1.1rem; }
  .jsk-seo-cards       { grid-template-columns: 1fr; }
  .jsk-seo             { padding: 36px 0; }
}

@media (max-width: 480px) {
  .jsk-hero-title   { font-size: 1.6rem; }
  .jsk-editor-shell { height: 300px; }
  .jsk-stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .jsk-badges       { gap: 6px; }
  .jsk-badge        { font-size: .72rem; padding: 4px 10px; }
  .jsk-ad-728x90    { height: auto; min-height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .jsk-page *, .jsk-page *::before, .jsk-page *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media print {
  .jsk-toolbar, .jsk-ad-zone, .jsk-stats-grid { display: none; }
  .jsk-editor-grid  { grid-template-columns: 1fr; }
  .jsk-editor-shell { height: auto; }
}
