/* convert2image — one stylesheet for the whole site.
   Warm paper, dark ink, one rust accent. Kept deliberately plain. */

:root {
  --paper: #faf7f1;
  --paper-2: #f2ece2;
  --card: #fffdf9;
  --ink: #2b2521;
  --ink-2: #625850;
  --ink-3: #8a7f74;
  --line: #e3dace;
  --line-2: #d3c7b7;
  --accent: #a94f2b;
  --accent-2: #8c3f21;
  --accent-soft: #f5e4d8;
  --sage: #4d6a50;
  --sage-soft: #e3ebdf;
  --warn: #9a3b2e;
  --focus: #c9763f;
  --radius: 8px;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", Consolas, Menlo, monospace;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1d1a17;
    --paper-2: #26221e;
    --card: #231f1b;
    --ink: #efe7db;
    --ink-2: #c3b8aa;
    --ink-3: #978b7e;
    --line: #3a332c;
    --line-2: #4b4239;
    --accent: #e0885c;
    --accent-2: #eea27b;
    --accent-soft: #3a2a20;
    --sage: #9cbb98;
    --sage-soft: #29321f;
    --warn: #e58a7a;
    color-scheme: dark;
  }
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 var(--sans);
  text-rendering: optimizeLegibility;
}

img, svg, canvas { max-width: 100%; }

a { color: var(--accent); text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-2); text-decoration-thickness: 2px; }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 3px; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 2.7rem); margin: 0 0 .35em; }
h2 { font-size: 1.6rem; margin: 2.2em 0 .5em; }
h3 { font-size: 1.22rem; margin: 1.8em 0 .4em; }
p { margin: 0 0 1.05em; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; }

.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper); padding: 8px 12px; z-index: 10; }
.skip:focus { left: 8px; top: 8px; }

/* Header */
.site-head { border-bottom: 1px solid var(--line); background: var(--paper); }
.site-head .wrap { display: flex; align-items: center; gap: 24px; min-height: 64px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.brand:hover { color: var(--ink); }
.brand svg { width: 28px; height: 28px; flex: none; }
.brand b { color: var(--accent); font-weight: 600; }
.site-nav { margin-left: auto; display: flex; gap: 4px; flex-wrap: wrap; }
.site-nav a { color: var(--ink-2); text-decoration: none; padding: 6px 10px; border-radius: 6px; font-size: .96rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); background: var(--paper-2); }
.site-nav { align-items: center; }

/* Header dropdowns. Hover opens them where there is a mouse; the arrow button opens them anywhere. */
.site-head { position: relative; z-index: 30; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { padding-right: 4px; }
.nav-toggle { display: inline-grid; place-items: center; width: 24px; height: 30px; margin-left: -2px; padding: 0; border: 0; border-radius: 6px; background: none; color: var(--ink-3); cursor: pointer; }
.nav-toggle svg { width: 12px; height: 12px; transition: transform .15s; }
.nav-toggle:hover { color: var(--ink); background: var(--paper-2); }
.nav-item.open .nav-toggle svg { transform: rotate(180deg); }
.nav-menu {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 6px;
  min-width: 460px; padding: 16px 20px 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 6px 28px;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 12px 32px rgba(43, 37, 33, .13);
}
.nav-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -8px; height: 8px; }
.nav-item.open .nav-menu { display: grid; }
@media (hover: hover) and (min-width: 700px) {
  .nav-item:hover .nav-menu { display: grid; }
}
.nav-menu p { margin: 0 0 6px; font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.nav-menu ul { list-style: none; margin: 0 0 8px; padding: 0; }
.nav-menu ul:has(> li:nth-child(9)) { columns: 2; column-gap: 16px; }
.site-nav .nav-menu a { display: block; padding: 3px 6px; margin: 0 -6px; font-size: .93rem; color: var(--ink); }
.site-nav .nav-menu a:hover { background: var(--paper-2); color: var(--accent); }
.site-nav .nav-menu .nav-all { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 4px 18px; margin: 4px 0 0; padding-top: 10px; border-top: 1px solid var(--line); text-transform: none; letter-spacing: 0; font-size: .9rem; }
.site-nav .nav-menu .nav-all a { display: inline; margin: 0; padding: 0; color: var(--accent); font-weight: 600; }
.nav-item.current > a { color: var(--ink); background: var(--paper-2); }
@media (max-width: 700px) {
  .nav-item { position: static; }
  .nav-menu { left: 12px; right: 12px; min-width: 0; margin-top: 0; }
  .nav-menu ul:has(> li:nth-child(9)) { columns: 2; }
}

/* Footer */
.site-foot { margin-top: 80px; border-top: 1px solid var(--line); background: var(--paper-2); color: var(--ink-2); font-size: .93rem; }
.site-foot .wrap { padding-top: 36px; padding-bottom: 36px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.foot-grid h2 { font-size: 1rem; margin: 0 0 .6em; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin: 0 0 6px; }
.foot-grid a { color: var(--ink-2); text-decoration: none; }
.foot-grid a:hover { color: var(--accent); text-decoration: underline; }
.foot-note { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .87rem; color: var(--ink-3); }

/* Breadcrumbs */
.crumbs { font-size: .88rem; color: var(--ink-3); margin: 28px 0 14px; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line-2); }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.lead { font-size: 1.14rem; color: var(--ink-2); max-width: 44em; margin-bottom: 1.4em; }

/* Home */
.intro { padding: 56px 0 18px; }
.intro h1 { max-width: 16em; }
.intro h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.intro .lead { max-width: 36em; }

.dir { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.dir section { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px 14px; }
.dir h2 { margin: 0 0 .15em; font-size: 1.3rem; }
.dir .sub { color: var(--ink-3); font-size: .92rem; margin: 0 0 .9em; }
.linklist { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 20px; }
.linklist li { break-inside: avoid; margin: 0 0 7px; }
.linklist a { text-decoration: none; color: var(--ink); border-bottom: 1px solid transparent; }
.linklist a:hover { color: var(--accent); border-bottom-color: currentColor; }

.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 56px 0 0; padding-top: 32px; border-top: 1px solid var(--line); }
.notes h2 { font-size: 1.15rem; margin: 0 0 .4em; }
.notes p { color: var(--ink-2); font-size: .98rem; }

/* Tool box */
.tool {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin: 8px 0 12px;
}
.drop {
  position: relative;
  border: 2px dashed var(--line-2);
  border-radius: 10px;
  background: var(--paper);
  padding: 34px 20px;
  text-align: center;
  transition: border-color .15s, background .15s;
  cursor: pointer;
}
.drop:hover, .drop.over { border-color: var(--accent); background: var(--accent-soft); }
.drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.drop .big { font-family: var(--serif); font-size: 1.3rem; margin: 6px 0 4px; }
.drop .small { color: var(--ink-3); font-size: .9rem; margin: 0; }
.drop svg { width: 40px; height: 40px; color: var(--accent); }
.drop.compact { padding: 16px; }
.drop.compact .big { font-size: 1.05rem; }
.drop.compact svg { display: none; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-size: .96rem; font-weight: 600;
  padding: 9px 16px; border-radius: 7px; cursor: pointer;
  border: 1px solid var(--accent); background: var(--accent); color: #fff;
  text-decoration: none; line-height: 1.3;
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }
@media (prefers-color-scheme: dark) { .btn, .btn:hover { color: #1d1a17; } }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover { border-color: var(--ink-3); background: var(--paper-2); color: var(--ink); }
.btn.small { padding: 5px 11px; font-size: .88rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.opts { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: flex-end; margin: 0 0 16px; }
.opts:empty { display: none; }
.opt { display: flex; flex-direction: column; gap: 4px; font-size: .9rem; color: var(--ink-2); min-width: 0; }
.opt > span { font-weight: 600; color: var(--ink); }
.opt.inline { flex-direction: row; align-items: center; gap: 8px; }
.opt input[type=number], .opt input[type=text], .opt select, .opt textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 6px;
  padding: 7px 9px; min-width: 0;
}
.opt input[type=number] { width: 7.5em; }
.opt input[type=text] { width: 14em; }
.opt input[type=color] { width: 44px; height: 36px; padding: 2px; border: 1px solid var(--line-2); border-radius: 6px; background: var(--paper); }
.opt input[type=range] { width: 180px; accent-color: var(--accent); }
.opt input[type=checkbox] { accent-color: var(--accent); width: 17px; height: 17px; }
.opt output { font-variant-numeric: tabular-nums; color: var(--ink); }
.opt.wide { flex-basis: 100%; }
.opt textarea { width: 100%; min-height: 150px; font-family: var(--mono); font-size: .85rem; resize: vertical; }

/* Segmented buttons wrap onto a second row on narrow screens; the negative margins share borders. */
.seg { display: inline-flex; flex-wrap: wrap; padding: 1px 0 0 1px; }
.seg button { font: inherit; font-size: .9rem; padding: 7px 12px; margin: -1px 0 0 -1px; border: 1px solid var(--line-2); background: var(--paper); color: var(--ink-2); cursor: pointer; }
.seg button:first-child { border-radius: 7px 0 0 7px; }
.seg button:last-child { border-radius: 0 7px 7px 0; }
.seg button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

.queue { list-style: none; margin: 16px 0 0; padding: 0; }
.queue:empty { display: none; }
.item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center;
  padding: 10px 0; border-top: 1px solid var(--line);
}
.item:first-child { border-top: 0; }
.thumb { width: 56px; height: 56px; border-radius: 6px; object-fit: cover; background: var(--paper-2) repeating-conic-gradient(var(--line) 0 25%, transparent 0 50%) 0 0/12px 12px; border: 1px solid var(--line); }
.item .name { font-weight: 600; word-break: break-all; font-size: .95rem; }
.item .meta { color: var(--ink-3); font-size: .86rem; }
.item .meta .down { color: var(--sage); font-weight: 600; }
.item .meta .up { color: var(--warn); font-weight: 600; }
.err, .item .err { color: var(--warn); font-size: .92rem; }
.spin { display: inline-block; width: 14px; height: 14px; border: 2px solid var(--line-2); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; vertical-align: -2px; margin-right: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spin { animation-duration: 3s; } }

.bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 14px; }
.bar:empty { display: none; }
.bar .grow { flex: 1; }
.hint { color: var(--ink-3); font-size: .88rem; margin: 10px 0 0; }
.privacy { display: flex; gap: 8px; align-items: center; color: var(--ink-3); font-size: .88rem; margin: 0 0 8px; }
.privacy svg { width: 15px; height: 15px; color: var(--sage); flex: none; }

/* Interactive stage: crop, picker, etc. */
.stage { position: relative; margin: 14px 0 0; display: inline-block; max-width: 100%; line-height: 0; user-select: none; touch-action: none; overflow: hidden; border-radius: 4px; }
.stage canvas, .stage img { display: block; max-width: 100%; height: auto; border-radius: 4px; background: repeating-conic-gradient(var(--line) 0 25%, var(--paper) 0 50%) 0 0/16px 16px; }
.stage.pick canvas { cursor: crosshair; }
.sel { position: absolute; border: 2px solid #fff; outline: 1px solid rgba(0,0,0,.55); box-shadow: 0 0 0 9999px rgba(20,14,10,.45); cursor: move; touch-action: none; }
.sel .h { position: absolute; width: 16px; height: 16px; background: #fff; border: 1px solid rgba(0,0,0,.6); border-radius: 2px; }
.sel .h.nw { left: -2px; top: -2px; cursor: nwse-resize; }
.sel .h.ne { right: -2px; top: -2px; cursor: nesw-resize; }
.sel .h.sw { left: -2px; bottom: -2px; cursor: nesw-resize; }
.sel .h.se { right: -2px; bottom: -2px; cursor: nwse-resize; }
.gridlines { position: absolute; inset: 0; pointer-events: none; }

.swatches { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0; }
.swatch { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; width: 124px; background: var(--card); font-size: .85rem; cursor: pointer; text-align: left; padding: 0; font-family: inherit; color: var(--ink); }
.swatch i { display: block; height: 64px; }
.swatch span { display: block; padding: 6px 8px; font-family: var(--mono); }
.swatch small { display: block; padding: 0 8px 7px; color: var(--ink-3); font-family: var(--mono); }

.readout { display: flex; gap: 16px; align-items: center; margin: 14px 0 0; flex-wrap: wrap; }
.readout .chip { width: 56px; height: 56px; border-radius: 8px; border: 1px solid var(--line-2); }
.readout code { font-family: var(--mono); font-size: .95rem; background: var(--paper-2); padding: 3px 7px; border-radius: 5px; cursor: pointer; }

.kv { width: 100%; border-collapse: collapse; margin: 14px 0 0; font-size: .92rem; }
.kv th, .kv td { text-align: left; padding: 7px 10px; border-top: 1px solid var(--line); vertical-align: top; }
.kv th { color: var(--ink-2); font-weight: 600; width: 38%; }
.kv td { word-break: break-word; }
.kv tr.group th { color: var(--accent); font-family: var(--serif); font-size: 1.05rem; padding-top: 16px; border-top: 0; }
.flag { background: var(--accent-soft); border-left: 3px solid var(--accent); padding: 10px 14px; border-radius: 0 6px 6px 0; margin: 14px 0 0; font-size: .95rem; }

.thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 0; }
.thumbs figure { margin: 0; position: relative; width: 104px; }
.thumbs img { width: 104px; height: 104px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); display: block; background: var(--paper-2); }
.thumbs figcaption { font-size: .78rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thumbs .ctl { position: absolute; top: 4px; right: 4px; display: flex; gap: 3px; }
.thumbs .ctl button { width: 24px; height: 24px; border-radius: 5px; border: 0; background: rgba(30,24,20,.72); color: #fff; font-size: 13px; line-height: 24px; padding: 0; cursor: pointer; }

.preview { margin: 16px 0 0; }
.preview img, .preview canvas { max-width: 100%; max-height: 520px; border-radius: 6px; border: 1px solid var(--line); background: repeating-conic-gradient(var(--line) 0 25%, var(--paper) 0 50%) 0 0/16px 16px; }

/* Article */
.article { max-width: 720px; }
.article h2 { font-size: 1.55rem; }
.article ul, .article ol { padding-left: 1.3em; margin: 0 0 1.1em; }
.article li { margin: 0 0 .45em; }
.article blockquote { margin: 1.4em 0; padding: 4px 0 4px 18px; border-left: 3px solid var(--line-2); color: var(--ink-2); font-family: var(--serif); font-size: 1.15rem; }
.article code { font-family: var(--mono); font-size: .88em; background: var(--paper-2); padding: 1px 5px; border-radius: 4px; }
.article table { border-collapse: collapse; width: 100%; margin: 1em 0 1.4em; font-size: .94rem; display: block; overflow-x: auto; }
.article th, .article td { border-bottom: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
.article th { font-weight: 600; background: var(--paper-2); }
.article figure { margin: 1.6em 0; }
.article figcaption { font-size: .88rem; color: var(--ink-3); margin-top: 6px; }
.aside { background: var(--paper-2); border-radius: var(--radius); padding: 14px 18px; margin: 1.4em 0; font-size: .96rem; }
.aside p:last-child { margin: 0; }

.steps { counter-reset: s; list-style: none; padding: 0 !important; }
.steps li { counter-increment: s; position: relative; padding-left: 40px; margin-bottom: .8em; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 1px; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-2); font-weight: 700; font-size: .85rem; display: grid; place-items: center; }

.faq details { border-top: 1px solid var(--line); padding: 12px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; position: relative; padding-right: 28px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: -2px; font-size: 1.3rem; color: var(--ink-3); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: .6em 0 0; color: var(--ink-2); }

.related { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.related h2 { margin-top: 0; font-size: 1.25rem; }
.related .linklist { columns: 3; }

.byline { color: var(--ink-3); font-size: .92rem; margin: 0 0 2em; }

.postlist { list-style: none; padding: 0; margin: 24px 0 0; max-width: 760px; }
.postlist li { padding: 22px 0; border-top: 1px solid var(--line); }
.postlist li:first-child { border-top: 0; padding-top: 4px; }
.postlist h2 { margin: 0 0 .3em; font-size: 1.4rem; }
.postlist h2 a { color: var(--ink); text-decoration: none; }
.postlist h2 a:hover { color: var(--accent); }
.postlist p { color: var(--ink-2); margin: 0 0 .3em; }
.postlist time { color: var(--ink-3); font-size: .88rem; }

.hublist { max-width: none; columns: 2; column-gap: 40px; }

/* Category pages: chips, annotated tool lists, index cards */
.chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 12px; }
.chips span { color: var(--ink-3); font-size: .9rem; margin-right: 2px; }
.chips a { font-size: .9rem; text-decoration: none; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; }
.chips a:hover { border-color: var(--accent); color: var(--accent); }
.related .chips { margin-top: 18px; }
.browse { margin-top: 36px; }

.toollist { list-style: none; padding: 0; margin: 0; }
.toollist li { padding: 10px 0; border-top: 1px solid var(--line); }
.toollist li:first-child { border-top: 0; }
.toollist a { font-weight: 600; text-decoration: none; }
.toollist a:hover { text-decoration: underline; }
.toollist span { display: block; color: var(--ink-2); font-size: .95rem; }

.catgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 28px 0 8px; }
.catgrid section, .usesections section { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px 10px; }
.catgrid h2, .usesections h2 { font-size: 1.2rem; margin: 0 0 .5em; }
.usesections { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 8px 0 12px; }
.usesections section > p { color: var(--ink-2); font-size: .96rem; margin-bottom: .6em; }

.cards { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.cards a { display: flex; flex-direction: column; gap: 4px; height: 100%; padding: 18px 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--ink); }
.cards a:hover { border-color: var(--accent); }
.cards strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.cards span { color: var(--ink-2); font-size: .95rem; }
.cards small { color: var(--ink-3); margin-top: auto; padding-top: 6px; }

.readnext { margin-top: 44px; padding: 18px 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.readnext h2 { font-size: 1.1rem; margin: 0 0 .5em; }
.readnext ul { margin: 0; padding-left: 1.1em; }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.noscript { background: var(--accent-soft); padding: 10px 14px; border-radius: 6px; margin-top: 12px; }

@media (max-width: 860px) {
  .dir, .usesections { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .notes { grid-template-columns: 1fr; gap: 8px; }
  .related .linklist { columns: 2; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .site-head .wrap { gap: 6px; padding-top: 10px; padding-bottom: 8px; }
  .site-nav { margin-left: -10px; width: calc(100% + 10px); }
  .linklist, .related .linklist, .hublist { columns: 1; }
  .tool { padding: 14px; }
  .intro { padding-top: 32px; }
  .item { grid-template-columns: 44px 1fr; }
  .item .thumb { width: 44px; height: 44px; }
  .item .act { grid-column: 1 / -1; }
  .opt input[type=range] { width: 140px; }
  .foot-grid { grid-template-columns: 1fr; }
}
