/* bbs-abi09 — Document/Zeitungs-Look */

:root {
  --paper: #f4ecda;
  --paper-warm: #efe5cf;
  --paper-deep: #e7dcc1;
  --ink: #1a1410;
  --ink-soft: #3a2f25;
  --ink-mute: #6b5a48;
  --stamp: #a83232;
  --stamp-deep: #8a2828;
  --gold: #8b6f3e;
  --gold-light: #b39562;
  --desk: #2a1f17;
  --desk-deep: #1a120c;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body:  "Lora", Georgia, serif;
  --mono:  "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --column: 760px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--desk);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Wood-grain-ish dark desk backdrop */
body {
  background:
    radial-gradient(ellipse at top, #34281d 0%, #1d140c 60%, #14100a 100%) fixed,
    #1d140c;
  min-height: 100vh;
}

a { color: var(--stamp); text-decoration: none; border-bottom: 1px solid rgba(168, 50, 50, 0.3); transition: border-color .15s, color .15s; }
a:hover { color: var(--stamp-deep); border-bottom-color: var(--stamp); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); letter-spacing: -0.005em; }
h1 { font-variation-settings: "opsz" 144, "SOFT" 30; }
h2 { font-variation-settings: "opsz" 72; }
h3 { font-variation-settings: "opsz" 36; }

/* ── Page shell ───────────────────────────────────────────────────────── */

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px 80px;
  gap: 0;
}

.sheet {
  width: 100%;
  max-width: var(--column);
  background: var(--paper);
  color: var(--ink);
  position: relative;
  padding: 56px 64px 48px;
  /* paper on dark desk */
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.04),
    0 2px 0 rgba(0,0,0,0.08),
    0 18px 30px -10px rgba(0,0,0,0.55),
    0 50px 80px -20px rgba(0,0,0,0.7);
  background-image:
    /* paper grain */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>"),
    /* subtle vignette */
    radial-gradient(ellipse at 50% 0%, rgba(139, 111, 62, 0.07), transparent 60%);
}

/* slightly torn / aged top edge */
.sheet::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; height: 6px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), transparent),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='6'><path d='M0 4 Q 10 1 20 3 T 40 3 T 60 4 T 80 2 T 100 4 T 120 3 T 140 2 T 160 4 T 180 3 T 200 4 L 200 0 L 0 0 Z' fill='%23f4ecda'/></svg>");
  background-size: 200px 6px;
}

/* ── Masthead ─────────────────────────────────────────────────────────── */

.masthead {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 28px;
  position: relative;
}

.masthead .eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 18px;
}

.masthead h1 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 20;
  font-size: clamp(46px, 7.5vw, 78px);
  line-height: 0.95;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.masthead .sub {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24;
  font-size: 17px;
  color: var(--ink-soft);
  margin: 6px 0 14px;
}

/* double rule */
.dbl-rule {
  border: 0;
  height: 4px;
  margin: 12px 0;
  background: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.dbl-rule::after {
  content: "";
  position: absolute;
  inset: 1px 0;
  background: transparent;
}

/* ── Nav (when logged in) ─────────────────────────────────────────────── */

.tabbar {
  display: flex;
  gap: 0;
  justify-content: center;
  padding: 4px 0 0;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tabbar a {
  color: var(--ink-soft);
  border: 0;
  padding: 6px 18px;
  position: relative;
}
.tabbar a + a::before {
  content: "·";
  position: absolute;
  left: -3px;
  color: var(--ink-mute);
}
.tabbar a:hover { color: var(--stamp); }
.tabbar a.is-active {
  color: var(--ink);
  font-weight: 500;
}
.tabbar a.is-active::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: -1px;
  height: 2px;
  background: var(--stamp);
}

/* ── Typography helpers ───────────────────────────────────────────────── */

.dropcap > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "wght" 600;
  font-size: 4.2em;
  line-height: 0.85;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--stamp);
}

p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 36;
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 4px 0 22px;
  text-wrap: pretty;
}

.kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stamp);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "wght" 500;
  font-size: 32px;
  line-height: 1.1;
  margin: 36px 0 6px;
  text-wrap: balance;
}

.section-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
}

/* article columns helper */
.cols2 {
  column-count: 2;
  column-gap: 32px;
  column-rule: 1px solid rgba(26, 20, 16, 0.15);
}
.cols2 p { break-inside: avoid; }

/* ── Stamp ────────────────────────────────────────────────────────────── */

.stamp {
  --ring: 4px;
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: var(--ring) double var(--stamp);
  color: var(--stamp);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.35;
  transform: rotate(-9deg);
  opacity: 0.86;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 30%, transparent 40%, rgba(168, 50, 50, 0.08) 100%);
  /* ink-bleed mask: speckled */
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='r'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 3 -1'/></filter><rect width='100%25' height='100%25' fill='white' filter='url(%23r)'/><rect width='100%25' height='100%25' fill='white' opacity='0.85'/></svg>");
  mask-mode: luminance;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='r'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 3 -1'/></filter><rect width='100%25' height='100%25' fill='white' filter='url(%23r)'/><rect width='100%25' height='100%25' fill='white' opacity='0.85'/></svg>");
}

.stamp .inner {
  border: 1.5px solid var(--stamp);
  border-radius: 50%;
  width: 86%;
  height: 86%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
}
.stamp .inner b { display: block; font-size: 18px; font-family: var(--serif); font-variation-settings: "opsz" 60, "wght" 600; letter-spacing: 0.04em; margin: 4px 0; }

/* ── Forms ────────────────────────────────────────────────────────────── */

.form-grid {
  display: grid;
  gap: 14px;
  margin: 18px 0 8px;
}

label.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

input[type=text], input[type=email], textarea, select {
  font-family: var(--body);
  font-size: 16px;
  padding: 10px 12px;
  background: rgba(255, 252, 240, 0.5);
  border: 1px solid rgba(26, 20, 16, 0.35);
  color: var(--ink);
  border-radius: 0;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color .15s, background .15s;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus, select:focus {
  border-color: var(--stamp);
  background: rgba(255, 253, 244, 0.9);
}

textarea { resize: vertical; min-height: 110px; line-height: 1.55; font-family: var(--body); }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.check input { margin-top: 4px; accent-color: var(--stamp); }
.check.disabled { opacity: 0.45; cursor: not-allowed; }

/* Buttons */
.btn {
  appearance: none;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.btn:hover { background: var(--stamp); border-color: var(--stamp); color: var(--paper); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.accent { background: var(--stamp); border-color: var(--stamp); }
.btn.accent:hover { background: var(--stamp-deep); border-color: var(--stamp-deep); }

.text-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(26, 20, 16, 0.25);
  padding: 2px 0;
  cursor: pointer;
}
.text-link:hover { color: var(--stamp); border-bottom-color: var(--stamp); }

.btn-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ── Login specifics ──────────────────────────────────────────────────── */

.login-card {
  position: relative;
  padding: 8px 0;
}
.challenge {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "wght" 400;
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  text-wrap: balance;
  color: var(--ink);
  margin: 20px 0 6px;
}
.hint {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.error {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stamp);
  padding: 8px 10px;
  border: 1px dashed var(--stamp);
  background: rgba(168, 50, 50, 0.06);
  margin: 14px 0 0;
}
.note-strip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  padding: 14px 0 0;
  border-top: 1px solid rgba(26, 20, 16, 0.2);
  margin-top: 22px;
}

/* ── Archiv ───────────────────────────────────────────────────────────── */

.file-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  border-top: 1px solid rgba(26, 20, 16, 0.25);
}
.file-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 20, 16, 0.15);
}
.file-list li:hover { background: rgba(139, 111, 62, 0.06); }
.file-name {
  font-family: var(--serif);
  font-variation-settings: "opsz" 24;
  font-size: 18px;
  color: var(--ink);
  border: 0;
}
.file-name:hover { color: var(--stamp); border: 0; }
.file-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.file-size {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}

.archiv-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 22px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  margin: 18px 0 0;
  padding: 8px 0 10px;
  border-top: 1px solid rgba(26, 20, 16, 0.18);
  border-bottom: 1px solid rgba(26, 20, 16, 0.18);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  animation: pf 0.25s ease;
}
.crumb {
  color: var(--ink-mute);
  border-bottom: 0;
  padding: 2px 0;
}
.crumb:hover { color: var(--stamp); }
.crumb.is-current {
  color: var(--ink);
  font-weight: 500;
}
.crumb-sep { color: var(--ink-mute); opacity: 0.5; }

/* file/folder list rows */
.file-list { padding-top: 0; }
.file-list li {
  grid-template-columns: 28px 1fr auto auto;
  gap: 14px 18px;
  align-items: center;
  cursor: default;
}
.file-list li.row-folder { cursor: pointer; }
.file-list li.row-folder:hover .file-name.as-folder { color: var(--stamp); }
.file-list li.row-folder:hover .chevron { color: var(--stamp); transform: translateX(2px); }
.file-list li .row-icon {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
}
.file-list li.row-file .row-icon { color: var(--ink-mute); }
.file-list li.row-folder .row-icon { color: var(--gold); }
.file-name.as-folder {
  font-family: var(--serif);
  font-variation-settings: "opsz" 36, "wght" 500;
  font-size: 19px;
  color: var(--ink);
  border-bottom: 0;
  letter-spacing: -0.005em;
}
.file-size.chevron {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink-mute);
  transition: transform .15s, color .15s;
}
.folders-first li.row-folder + li.row-file {
  border-top: 1px solid rgba(26, 20, 16, 0.25);
  padding-top: 18px;
  margin-top: 6px;
}

/* ── Guestbook ────────────────────────────────────────────────────────── */

.thread {
  padding: 26px 0;
  border-bottom: 1px solid rgba(26, 20, 16, 0.18);
}
.thread:first-of-type { padding-top: 4px; }
.thread:last-of-type { border-bottom: 0; }

.entry-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.entry-author {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 36, "wght" 500;
  font-size: 19px;
  text-transform: none;
  letter-spacing: 0;
}
.entry-author .school {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-style: normal;
  color: var(--gold);
  margin-left: 8px;
  padding: 2px 6px;
  border: 1px solid var(--gold);
  vertical-align: 0.18em;
}
.entry-date { color: var(--ink-mute); white-space: nowrap; font-variant-numeric: tabular-nums; }

.entry-body {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
  margin: 8px 0 12px;
}

.entry-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.entry-actions .meta {
  color: var(--ink-mute);
}

/* replies */
.replies {
  margin: 14px 0 0 4px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reply {
  font-size: 15.5px;
}
.reply .entry-author { font-size: 16px; }
.reply .entry-body { font-size: 15px; margin: 4px 0 6px; }

/* reply form */
.reply-form {
  margin-top: 14px;
  padding: 18px 18px 16px;
  background: rgba(139, 111, 62, 0.08);
  border-left: 2px solid var(--gold);
}
.reply-form .form-grid { margin: 0; gap: 12px; }
.reply-form .btn-row { margin-top: 6px; }

/* posting */
.post-block {
  margin: 18px 0 28px;
  padding: 22px 24px 20px;
  background: rgba(0, 0, 0, 0.025);
  border-top: 4px double var(--ink);
  border-bottom: 1px solid rgba(26, 20, 16, 0.25);
}
.post-block h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-variation-settings: "opsz" 36, "wght" 500;
  font-size: 22px;
}

.posted-flash {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px dashed var(--gold);
  background: rgba(139, 111, 62, 0.08);
  padding: 8px 12px;
  margin: 0 0 14px;
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.sheet-footer {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 4px double var(--ink);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.sheet-footer .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 14px;
}
.sheet-footer h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
}
.sheet-footer a {
  color: var(--ink-soft);
  border-bottom-color: rgba(26, 20, 16, 0.25);
}
.sheet-footer a:hover { color: var(--stamp); border-bottom-color: var(--stamp); }
.sheet-footer .disclaimer {
  padding-top: 10px;
  border-top: 1px solid rgba(26, 20, 16, 0.18);
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  letter-spacing: 0;
  font-size: 12.5px;
  line-height: 1.55;
}

/* ── Unsubscribe ──────────────────────────────────────────────────────── */

.confirm-card {
  text-align: center;
  padding: 30px 0;
}
.confirm-card .check-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
  font-family: var(--serif);
}

/* ── Public landing accents ───────────────────────────────────────────── */

.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 18px 0 12px;
}
.three-up .card {
  padding: 16px 18px 18px;
  background: rgba(139, 111, 62, 0.06);
  border-top: 2px solid var(--ink);
}
.three-up .card .abbr {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "wght" 600;
  font-size: 38px;
  line-height: 1;
  color: var(--stamp);
  margin-bottom: 4px;
}
.three-up .card .name {
  font-family: var(--serif);
  font-variation-settings: "opsz" 18, "wght" 500;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 6px;
}
.three-up .card .note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  line-height: 1.5;
}

.callout {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid var(--ink);
  background: rgba(0,0,0,0.025);
  font-family: var(--serif);
  font-variation-settings: "opsz" 24;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.callout .label {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stamp);
  margin-bottom: 6px;
}

.kv {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  margin: 6px 0 4px;
}
.kv dt { color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.18em; font-size: 10.5px; padding-top: 2px; }
.kv dd { margin: 0; color: var(--ink); }

/* small util */
.muted { color: var(--ink-mute); }
.mono { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; }
.smallcaps {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* page transition */
.page-fade {
  animation: pf 0.35s ease;
}
@keyframes pf {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}

/* responsive */
@media (max-width: 720px) {
  .sheet { padding: 36px 26px 32px; }
  .masthead h1 { font-size: 44px; }
  .stamp { width: 130px; height: 130px; font-size: 9px; }
  .cols2 { column-count: 1; }
  .three-up { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .sheet-footer .row { grid-template-columns: 1fr; }
  .file-list li { grid-template-columns: 28px 1fr; gap: 4px 12px; }
  .file-list li .file-meta, .file-list li .file-size { grid-column: 2; }
}
