/* ──────────────────────────────────────────────────────────────────────
   Vault — the recipe index for the app.

   Design language:
   - DM Sans throughout; Playfair italic only on list chapter dividers
   - Single accent color (the app's sage primary), used only on
     interaction states (focus rings, hover, active chip)
   - Borders-only depth, gentle 1px hover lift
   - 4px spacing grid: 4 / 8 / 12 / 16 / 20 / 24 / 32
   - Tabular nums on numeric meta
   ────────────────────────────────────────────────────────────────────── */

.vault-shell {
  --vault-ink:        #00473e;
  --vault-ink-soft:   #1f4a41;
  --vault-ink-mute:   #6e7f71;
  --vault-cream:      #ffffff;
  --vault-paper:      #e6efe0;
  --vault-hair:       rgba(33, 48, 42, 0.09);
  --vault-hair-strong:rgba(33, 48, 42, 0.15);
  --vault-accent:     #00473e;
  --vault-accent-dark:#00362f;
  --vault-accent-tint:#cfe4cc;
  --vault-sans:       'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vault-serif:      'Fraunces', 'Playfair Display', Georgia, serif;
  --vault-column:     1012px;

  max-width: 1240px;
  margin: 0 auto;
  /* No side padding: keeps vault content flush with the standard .shell-main
     column so it lines up with the kitchen header (which sits outside the
     vault shell). */
  padding: 0 0 96px;
  font-family: var(--vault-sans);
  color: var(--vault-ink);
  letter-spacing: -0.003em;
}

/* First-run onboarding nudge on the owner's Kitchen view (add photo + bio).
   Renders outside the .vault-shell scope, so it uses the global --or-* tokens
   (shell.css :root) rather than the .vault-shell-scoped --vault-* vars. */
.kx-onboard {
  max-width: 1012px;          /* match the vault content column */
  margin: 0 auto 22px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 18px 20px; border-radius: 16px;
  background: linear-gradient(135deg, var(--or-soft) 0%, var(--or-surface) 62%);
  border: 1px solid var(--or-celadon-soft);
  box-shadow: 0 10px 28px -22px rgba(40,55,45,.4);
}
.kx-onboard-ic {
  flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center;
  font-size: 1.35rem; background: var(--or-surface);
  border: 1px solid var(--or-celadon-soft); border-radius: 12px;
}
.kx-onboard-text { flex: 1; min-width: 200px; }
.kx-onboard-text h3 { margin: 0 0 3px; font-family: var(--or-serif); font-size: 1.1rem; font-weight: 600; color: var(--or-ink); }
.kx-onboard-text p { margin: 0; font-size: .9rem; line-height: 1.45; color: var(--or-muted); }
.kx-onboard-btn {
  flex-shrink: 0; background: var(--or-accent); color: #fff;
  border-radius: 10px; padding: 10px 18px; font-weight: 700; font-size: .9rem;
  text-decoration: none; box-shadow: 0 8px 18px -10px rgba(0,40,32,.6);
}
.kx-onboard-btn:hover { background: var(--or-accent-dark); }
.kx-onboard-x {
  flex-shrink: 0; background: none; border: 0; cursor: pointer;
  font-size: 1.3rem; line-height: 1; color: var(--or-muted); padding: 4px 8px; border-radius: 8px;
}
.kx-onboard-x:hover { color: var(--or-ink); background: var(--or-surface); }

/* Force sans on every heading inside the vault; serif is opt-in below. */
.vault-shell h1,
.vault-shell h2,
.vault-shell h3,
.vault-shell h4,
.vault-shell h5,
.vault-shell h6 {
  font-family: var(--vault-sans);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.014em;
}

/* ── Sticky toolbar ──────────────────────────────────────────────────── */

.vault-bar {
  position: sticky;
  top: 0; /* sticks to the top of the shell content area */
  z-index: 18;
  background: color-mix(in oklab, var(--vault-cream) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border: 1px solid var(--vault-hair);
  border-radius: 14px;
  margin: 0 0 24px;
  padding: 12px 14px;
}
.vault-bar-inner {
  max-width: var(--vault-column);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.vault-kitchen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 4px 12px 4px 6px;
  background: #fff;
  border: 1px solid var(--vault-hair);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vault-ink);
  cursor: default;
  text-decoration: none;
  transition: border-color 0.15s;
}
.vault-kitchen .avi {
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--vault-accent);
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}
.vault-kitchen .car {
  font-size: 9px;
  color: var(--vault-ink-mute);
  margin-left: 2px;
}

.vault-search {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--vault-hair);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vault-search:focus-within {
  border-color: var(--vault-accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--vault-accent) 18%, transparent);
}
.vault-search .magn {
  width: 13px; height: 13px;
  border: 1.5px solid var(--vault-ink-mute);
  border-radius: 50%;
  position: relative;
  margin-right: 10px;
  flex-shrink: 0;
}
.vault-search .magn::after {
  content: '';
  position: absolute;
  bottom: -3.5px; right: -2.5px;
  width: 6px; height: 1.5px;
  background: var(--vault-ink-mute);
  transform: rotate(45deg);
  border-radius: 1px;
}
.vault-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--vault-ink);
  height: 100%;
  letter-spacing: -0.005em;
  width: 100%;
}
.vault-search input::placeholder { color: var(--vault-ink-mute); }
.vault-search kbd {
  font-family: var(--vault-sans);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--vault-ink-mute);
  background: var(--vault-paper);
  border: 1px solid var(--vault-hair);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 8px;
  flex-shrink: 0;
}

.vault-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vault-actions .seg {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 2px;
  background: var(--vault-paper);
  border: 1px solid var(--vault-hair);
  border-radius: 8px;
  gap: 1px;
}
.vault-actions .seg a {
  height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--vault-ink-mute);
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.12s, background 0.12s;
}
.vault-actions .seg a:hover { color: var(--vault-ink); }
.vault-actions .seg a.on {
  background: #fff;
  color: var(--vault-ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 0 0 1px var(--vault-hair);
}
.vault-actions .ico-btn {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--vault-hair);
  border-radius: 8px;
  color: var(--vault-ink-mute);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.12s, border-color 0.12s;
}
.vault-actions .ico-btn:hover {
  color: var(--vault-ink);
  border-color: var(--vault-hair-strong);
}
.vault-actions .vault-new {
  height: 36px;
  padding: 0 14px;
  background: var(--vault-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border: 1px solid var(--vault-accent);
  transition: background 0.15s, border-color 0.15s;
}
.vault-actions .vault-new:hover {
  background: var(--vault-accent-dark);
  border-color: var(--vault-accent-dark);
  color: #fff;
}

/* ── Filter chips ────────────────────────────────────────────────────── */

.vault-chips {
  display: flex;
  gap: 4px;
  align-items: center;
  overflow-x: auto;
  max-width: var(--vault-column);
  margin: 0 auto 28px;
  padding: 0 0 4px;
  scrollbar-width: none;
}
.vault-chips::-webkit-scrollbar { display: none; }
.vault-chips .chip {
  flex-shrink: 0;
  height: 30px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  background: var(--vault-paper);                                    /* branded light-green pill */
  border: 1px solid color-mix(in oklab, var(--vault-accent) 22%, transparent);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--vault-ink);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.12s, background 0.12s, border-color 0.12s;
}
.vault-chips .chip:hover {
  background: var(--vault-accent-tint);
  border-color: color-mix(in oklab, var(--vault-accent) 32%, transparent);
  color: var(--vault-ink);
}
.vault-chips .chip.on,
.vault-chips .chip.on:hover {
  background: var(--vault-accent);                                   /* branded dark green when selected */
  color: #fff;
  border-color: var(--vault-accent);
  box-shadow: none;
}
.vault-chips .sep {
  width: 1px;
  align-self: stretch;
  background: var(--vault-hair);
  margin: 6px 8px;
  flex-shrink: 0;
}

/* ── Recipe-book divider tabs (visitor category filter) ──────────────────
   Folder/divider tab shapes (rounded top, sitting on a shelf line) in the
   brand palette — one row, scrolls horizontally if it overflows. The active
   tab lifts to the front. */
.vault-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 5px;
  max-width: var(--vault-column);
  margin: 0 auto 24px;
  padding-left: 2px;
  border-bottom: 1px solid #dccdb2;       /* clean shelf line the tabs sit on */
}
.vault-tab {
  flex-shrink: 0;
  position: relative;
  margin-bottom: 0;                       /* inactive tabs sit on the line (it shows behind them) */
  padding: 9px 18px;
  background: #f3eddf;                    /* warm cream, a touch lighter than the linen page */
  color: var(--vault-ink-mute);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid #dde2de;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  transition: background 0.12s, color 0.12s;
}
.vault-tab:hover { background: #fbf8f1; color: var(--vault-ink); }
.vault-tab.on {
  background: #fff;                        /* white, matching the recipe cards below */
  color: var(--vault-ink);
  font-weight: 700;
  border-color: #dccdb2;
  margin-bottom: -1px;                    /* pulled forward: covers/breaks the line behind it */
  border-bottom: 1px solid #fff;          /* the break -> tab connects to the content in front */
  box-shadow: 0 -2px 10px rgba(33, 48, 42, 0.06);   /* faint lift, no hard edges */
  z-index: 1;
}

/* ── Editorial list ──────────────────────────────────────────────────── */

.vault-list {
  max-width: var(--vault-column);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  align-items: start;
  background: #fff;
  border: 1px solid var(--vault-hair);
  border-radius: 14px;
  padding: 4px 20px 14px;
}
.vault-list .vault-chapter,
.vault-list .vault-empty { grid-column: 1 / -1; }
.vault-chapter {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 30px 0 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--vault-hair);
}
.vault-chapter:first-of-type { margin-top: 12px; }
.vault-shell .vault-chapter h2 {
  font-family: var(--vault-serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--vault-ink);
  margin: 0;
  line-height: 1;
}
.vault-chapter .count {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vault-ink-mute);
  margin-left: auto;
}

.vault-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 12px;
  border-radius: 8px;
  border-bottom: 1px solid var(--vault-hair);
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}
.vault-row-thumb {
  width: 44px; height: 44px; flex: none; border-radius: 9px; overflow: hidden;
  display: grid; place-items: center;
  background: color-mix(in oklab, var(--cat, #00473e) 12%, #fff);
  border: 1px solid color-mix(in oklab, var(--cat, #00473e) 18%, var(--vault-hair));
}
.vault-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vault-row-thumb .cat-glyph { width: 24px; height: 24px; opacity: 0.9; }
.vault-row:last-child { border-bottom-color: transparent; }
.vault-row:hover {
  background: color-mix(in oklab, var(--vault-paper) 70%, transparent);
}
.vault-row:hover .vault-row-title { color: var(--vault-accent-dark); }

.vault-row-main { min-width: 0; }
.vault-row-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.011em;
  color: var(--vault-ink);
  margin: 0 0 4px;
  transition: color 0.15s;
}
.vault-row-tags {
  font-size: 12.5px;
  color: var(--vault-ink-mute);
  line-height: 1.4;
  letter-spacing: -0.003em;
}
.vault-row-tags .t + .t::before {
  content: '·';
  margin: 0 6px;
  color: var(--vault-hair-strong);
}
.vault-row-meta {
  font-size: 13px;
  color: var(--vault-ink-soft);
  letter-spacing: -0.003em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
  white-space: nowrap;
  text-align: right;
}

/* Quiet creator hint under the vault (the pitch lives on /creators). */
.vault-creator-hint { margin: 26px 0 0; text-align: center; font-size: .9rem; color: var(--or-muted, #6e7f71); }
.vault-creator-hint a { color: var(--or-accent, #00473e); font-weight: 600; }
.vault-creator-hint a:hover { color: var(--or-accent-dark, #00362f); }

/* ── Card grid ───────────────────────────────────────────────────────── */

.vault-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: var(--vault-column);
  margin: 0 auto;
}
.vault-card {
  background: var(--or-paper, #faf7f0);
  border: 1px solid var(--vault-hair);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 176px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, transform 0.18s ease, box-shadow 0.18s;
}
.vault-card .vault-art {
  position: relative;
  height: 104px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--cat) 16%, #fff),
    color-mix(in oklab, var(--cat) 8%, #fff));
  border-bottom: 1px solid color-mix(in oklab, var(--cat) 20%, var(--vault-hair));
}
.vault-card .vault-art .cat-glyph { width: 38px; height: 38px; opacity: 0.92; }
/* Real recipe image fills the art band as a cover; glyph stays the fallback. */
.vault-card .vault-art .vault-art-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vault-card .vault-body {
  flex: 1;
  display: grid;
  /* fixed rows so every card is the same height regardless of title length or
     whether a cuisine/tag row is present: cat · title(2 lines) · meta · tags */
  grid-template-rows: auto auto auto auto;
  gap: 6px;
  padding: 14px 18px 16px;
}
.vault-card:hover {
  border-color: var(--vault-hair-strong);
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(42, 37, 34, 0.05);
}
.vault-card:hover .title { color: var(--vault-accent-dark); }
.vault-card .cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vault-ink-mute);
}
/* owner-only visibility status pills (Draft / Subscribers) */
.vault-status {
  display: inline-block; font-size: 9.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 1px 6px; border-radius: 999px; vertical-align: middle;
  margin-left: 4px;
}
.vault-status.is-draft { color: #8f7a35; background: #ece2cc; }
.vault-status.is-sub { color: #8a3341; background: color-mix(in oklab, #8a3341 12%, #fff); }
/* Pro (subscriber-only) recipes: maroon border on all edges + faint tint so
   premium recipes stand out in the grid/list. */
.vault-card.is-pro { border: 2px solid #8a3341; background: color-mix(in oklab, #8a3341 4%, #fff); }
.vault-row.is-pro { border: 2px solid #8a3341; border-radius: 9px; background: color-mix(in oklab, #8a3341 4%, #fff); }
.vault-row-title .vault-status { font-size: 9px; }
.vault-shell .vault-card .title {
  font-family: var(--vault-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.014em;
  color: var(--vault-ink);
  margin: 0;
  align-self: start;
  transition: color 0.18s;
  /* always reserve two lines; clamp longer titles so height stays uniform */
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vault-card .meta {
  font-size: 13px;
  line-height: 1.4;
  color: var(--vault-ink-soft);
  letter-spacing: -0.003em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.vault-card .tags {
  font-size: 12px;
  color: var(--vault-ink-mute);
  line-height: 1.5;
  letter-spacing: -0.003em;
  min-height: 18px;  /* reserve the row even when a recipe has no cuisine/tags */
}
.vault-card .tags .t + .t::before {
  content: '·';
  margin: 0 6px;
  color: var(--vault-hair-strong);
}

/* ── Add to my kitchen (visible when browsing another kitchen) ───────── */

.vault-card-wrap { position: relative; }
.vault-row-wrap { position: relative; }

.vault-add {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--vault-accent-dark);
  background: #fff;
  border: 1px solid var(--vault-hair-strong);
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
}
.vault-card-wrap:hover .vault-add,
.vault-row-wrap:hover .vault-add,
.vault-add:focus-visible { opacity: 1; }
.vault-add:hover {
  background: var(--vault-accent);
  color: #fff;
  border-color: var(--vault-accent);
}
.vault-add-row {
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
.vault-add.added {
  opacity: 1;
  cursor: default;
  color: #00473e;
  background: color-mix(in oklab, #00473e 8%, #fff);
  border-color: color-mix(in oklab, #00473e 35%, var(--vault-hair-strong));
}
.vault-add.added:hover {
  background: color-mix(in oklab, #00473e 8%, #fff);
  color: #00473e;
}
@media (hover: none) {
  .vault-add { opacity: 1; }
}

/* ── Empty state ─────────────────────────────────────────────────────── */

.vault-empty {
  max-width: 480px;
  margin: 80px auto;
  text-align: center;
}
.vault-shell .vault-empty h3 {
  font-family: var(--vault-serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--vault-ink);
  margin: 0 0 12px;
}
.vault-empty p {
  font-size: 15px;
  color: var(--vault-ink-soft);
  margin: 0 0 24px;
  line-height: 1.55;
}
.vault-empty .vault-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  background: var(--vault-accent);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--vault-accent);
  transition: background 0.15s;
}
.vault-empty .vault-new:hover { background: var(--vault-accent-dark); }

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

.vault-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--vault-column);
  margin: 48px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--vault-hair);
  font-size: 12.5px;
  color: var(--vault-ink-mute);
  letter-spacing: -0.003em;
}
.vault-foot strong { color: var(--vault-ink-soft); font-weight: 600; }

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .vault-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .vault-grid { grid-template-columns: repeat(2, 1fr); }
  .vault-actions .seg { display: none; }
  .vault-bar { top: 0; }
  .vault-bar-inner { gap: 8px; }
}
@media (max-width: 560px) {
  .vault-grid { grid-template-columns: 1fr; gap: 10px; }
  .vault-card { min-height: 0; }
  .vault-chapter { margin: 36px 0 8px; }
  .vault-chapter h2 { font-size: 22px; }
  .vault-row {
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
    padding: 14px 8px;
  }
  .vault-row-thumb { grid-row: 1 / span 2; align-self: start; }
  .vault-row-meta {
    grid-column: 2;
    text-align: left;
  }
  .vault-actions .vault-new {
    padding: 0 12px;
    font-size: 12.5px;
  }
  /* No physical keyboard shortcut on a phone, so drop the ⌘K hint. */
  .vault-search kbd { display: none; }
  /* Fade the right edge of the category strip to signal it scrolls horizontally. */
  .vault-chips {
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 22px), transparent);
    mask-image: linear-gradient(90deg, #000 calc(100% - 22px), transparent);
  }
  /* Touch targets: 44px minimum for the filter chips and the search field. */
  .vault-chips .chip { height: 44px; }
  .vault-search { min-height: 44px; }
}

/* ── Category color + glyph system (cards, list, public, newsletter) ───────── */
.cat-beef    { --cat: #a8472b; }
.cat-chicken { --cat: #c5893a; }
.cat-pork    { --cat: #c2787e; }
.cat-goatlamb{ --cat: #9c6b4a; }
.cat-seafood { --cat: #5f8295; }
.cat-veg     { --cat: #6f9163; }
.cat-salad   { --cat: #7ba35c; }
.cat-pasta   { --cat: #c2913f; }
.cat-soup    { --cat: #bd7b3e; }
.cat-dessert { --cat: #a8688f; }
.cat-other   { --cat: #8c8278; }

.cat-glyph {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--cat, var(--vault-ink-mute));
}
.cat-sprite { position: absolute; }

/* List collapses to one column before the cards do */
@media (max-width: 760px) {
  .vault-list { grid-template-columns: 1fr; column-gap: 0; }
}
