/* Boro Color Guide — styles */
:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --ink: #1b1b1f;
  --ink-soft: #5a5a64;
  --ink-faint: #8a8a94;
  --line: #e2ddd2;
  --line-strong: #cbc5b7;
  --accent: #a35436;
  --accent-soft: #f5e6dc;
  --chip-bg: #efeae0;
  --chip-bg-active: #1b1b1f;
  --chip-ink-active: #ffffff;
  --warn: #a83a20;

  /* Outcome family accent colors — tuned toward saturated glass hues so the UI
     reads like lampwork, not muted earth tones. Whites/grays/neutrals stay
     intentionally muted because that IS what they are; metallics/iridescents
     keep a cooler restraint to suggest the finish. */
  --fam-red:       #e01f25;
  --fam-orange:    #f57a1c;
  --fam-amber:     #d4941e;
  --fam-yellow:    #f5cb18;
  --fam-tan:       #b88752;
  --fam-brown:     #7a4a2b;
  --fam-green:     #1ca055;
  --fam-blue:      #1b6ed6;
  --fam-indigo:    #3e24a3;
  --fam-violet:    #7b2eb8;
  --fam-purple:    #a01fbd;
  --fam-pink:      #ec4c92;
  --fam-white:     #ece6d8;
  --fam-gray:      #7d7d86;
  --fam-black:     #1a1a1f;
  --fam-neutral:   #b5a68a;
  --fam-metallic:  #7a8a9c;
  --fam-iridescent:#a88cd8;
  --fam-mixed:     #6b6b70;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 16px; padding-bottom: 16px;
}
.site-logo {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  line-height: 0;
}
.site-logo img {
  height: 40px; width: auto;
  /* The SVG renders with the currentColor fill by default; force black so
     it reads against the header's off-white background. */
  color: var(--ink);
}
.site-logo:hover img { opacity: 0.85; }
.site-header .brand { flex: 1; min-width: 0; }
.site-header h1 {
  font-size: 22px; font-weight: 700; margin: 0;
  letter-spacing: -0.01em;
}
.site-header .tagline {
  margin: 2px 0 0; font-size: 13px; color: var(--ink-soft);
}
.header-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Layout */
.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding-top: 24px;
  padding-bottom: 64px;
  align-items: start;
  position: relative;
}
.sidebar {
  position: sticky; top: 76px;
  max-height: calc(100vh - 96px);
  overflow: hidden;
}
.sidebar-scroll {
  overflow-y: auto;
  max-height: calc(100vh - 96px);
  padding-right: 4px;
}
.sidebar-head { display: none; }
.sidebar-backdrop { display: none; }
/* Filter groups are native <details> — collapsed by default so all six
   categories are scannable in one viewport; expand the ones you need. */
.filter-group {
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.filter-group:last-of-type { border-bottom: none; }
.filter-group > summary {
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  font-weight: 600;
  padding: 12px 2px;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.filter-group > summary:hover { color: var(--ink); }
.filter-group > summary::-webkit-details-marker { display: none; }
.filter-group > summary::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .15s ease;
  opacity: 0.6;
  margin-left: 8px;
  flex-shrink: 0;
}
.filter-group[open] > summary::after {
  transform: rotate(45deg);
}
.filter-group .chip-group {
  padding: 2px 0 14px;
}
.filter-group[data-pinned] > summary { color: var(--accent); }
.filter-group[data-pinned] > summary:hover { color: var(--accent); filter: brightness(0.8); }
/* Active-count pill next to a collapsed section's label */
.filter-count {
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 10px;
  margin-left: 8px;
  text-transform: none;
  letter-spacing: 0;
}

/* Chips */
.chip-group { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--chip-bg);
  color: var(--ink);
  border: 1px solid transparent;
  cursor: pointer; user-select: none;
  font-size: 13px;
  font-family: inherit;
  transition: background .15s, color .15s, border-color .15s;
  min-height: 32px;
}
.chip:hover { border-color: var(--line-strong); }
.chip.active { background: var(--chip-bg-active); color: var(--chip-ink-active); }
.chip .count { font-size: 11px; color: var(--ink-faint); }
.chip.active .count { color: rgba(255,255,255,0.65); }
.color-chips .chip { padding: 6px 12px 6px 10px; }
.color-chips .chip::before {
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  display: inline-block; background: var(--fam-color, var(--ink-faint));
  border: 1px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 7px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong);
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: background .15s, border-color .15s;
  font-family: inherit;
  min-height: 36px;
}
.btn:hover { background: var(--chip-bg); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-ghost { background: transparent; }
.btn-block { width: 100%; justify-content: center; margin-top: 8px; }
/* "Clear all filters" sits at the top of the sidebar, styled as a subtle
   text link so it doesn't visually outweigh the filter sections below. */
.btn.clear-top {
  margin: 0 0 18px;
  padding: 4px 0;
  background: transparent;
  border: none;
  justify-content: flex-start;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 0;
}
.btn.clear-top:hover {
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
}
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  margin-left: 4px;
}

/* Results header */
.results-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 20px;
  flex-wrap: wrap;
}
.results-top {
  display: flex; align-items: baseline; justify-content: space-between;
  width: 100%;
}
.count-hero { display: flex; align-items: baseline; gap: 6px; }
.count-hero #count-hero { font-size: 38px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.count-label { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.results-controls { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Desktop layout keeps Copy Link as a text button with the icon alongside. */
.icon.icon-chain { margin-right: 2px; }
.search input {
  padding: 9px 12px; border: 1px solid var(--line-strong); border-radius: 7px;
  background: var(--surface); color: var(--ink);
  font-size: 14px; min-width: 260px;
  font-family: inherit;
}
.search input:focus { outline: 2px solid var(--accent); outline-offset: -1px; }
.sort-wrap {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.sort-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 600;
  white-space: nowrap;
}
.sort-group { display: flex; gap: 0; border: 1px solid var(--line-strong); border-radius: 7px; overflow: hidden; flex-shrink: 0; }
.sort-btn {
  padding: 8px 12px; background: var(--surface); color: var(--ink-soft);
  border: none; border-right: 1px solid var(--line); cursor: pointer;
  font-size: 13px; font-family: inherit; white-space: nowrap;
}
.sort-btn:last-child { border-right: none; }
.sort-btn.active { background: var(--ink); color: #fff; }
.sort-btn:hover:not(.active) { background: var(--chip-bg); }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  cursor: pointer;
}
.card:hover { border-color: var(--line-strong); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.card.discontinued { opacity: 0.78; }

/* Photo region — always 1:1 so every card has the same height.
   If a photo exists, it fills the square; if not, a centered
   "suggest a photo" call-to-action sits on a soft neutral base. */
.thumb {
  aspect-ratio: 1 / 1;
  position: relative;
  background: var(--chip-bg);
  overflow: hidden;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.thumb.placeholder {
  /* Tinted by the rod's dominant family so the card isn't visually dead. */
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--slice-color, var(--chip-bg)) 18%, var(--chip-bg)) 0%,
    color-mix(in srgb, var(--slice-color, var(--chip-bg)) 8%, var(--chip-bg)) 100%
  );
  display: flex; align-items: center; justify-content: center;
}
.placeholder-cta {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  text-decoration: none;
  color: var(--ink);
  font-size: 12px; font-weight: 500;
  text-align: center;
  max-width: 80%;
}
.placeholder-cta-icon {
  font-size: 20px;
  color: var(--ink-faint);
  line-height: 1;
}
.placeholder-cta-hint {
  font-size: 10px;
  color: var(--ink-soft);
  font-weight: 400;
}
.thumb-credit {
  position: absolute; bottom: 5px; right: 6px;
  font-size: 9px; color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.75);
  background: rgba(0,0,0,0.32);
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.02em;
  font-weight: 500;
  pointer-events: none;
}
.thumb-suggest, .strip-suggest {
  position: absolute; top: 6px; right: 6px;
  font-size: 10px; color: var(--ink);
  background: rgba(255,255,255,0.9);
  border-radius: 4px; padding: 3px 8px;
  text-decoration: none; font-weight: 500;
  opacity: 0; transition: opacity .15s;
  z-index: 3;
}
.thumb:hover .thumb-suggest, .thumb:focus-within .thumb-suggest,
.outcome-strip:hover .strip-suggest, .outcome-strip:focus-within .strip-suggest {
  opacity: 1;
}

/* Outcome strip — columns, one per outcome. Always 4:1 for consistent card height. */
.outcome-strip {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.outcome-slice {
  flex: 1 1 0;
  min-width: 0;
  padding: 6px 8px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,0.3);
  background: color-mix(in srgb, var(--slice-color, var(--chip-bg)) 55%, #f7f1e3);
  overflow: hidden;
}
.outcome-slice:last-child { border-right: none; }
.outcome-slice.overflow {
  flex: 0 0 auto;
  min-width: 40px;
  align-items: center; justify-content: center;
  background: var(--chip-bg);
  color: var(--ink-soft);
  font-weight: 700; font-size: 12px;
  cursor: pointer;
  transition: background .12s, color .12s;
  position: relative;
}
.outcome-slice.overflow:hover,
.outcome-slice.overflow:focus-visible {
  background: var(--ink);
  color: #fff;
  outline: none;
}
.outcome-slice.overflow::after {
  content: "more";
  font-size: 8px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: inherit;
  opacity: 0.75;
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.slice-label {
  font-size: 10px; line-height: 1.2;
  color: var(--slice-ink, var(--ink));
  font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; text-overflow: ellipsis;
}
.slice-meta {
  font-size: 9px;
  color: var(--slice-ink-soft, var(--ink-soft));
  text-transform: uppercase; letter-spacing: 0.04em;
  font-weight: 500;
  display: flex; flex-wrap: wrap; gap: 4px;
}

.card-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-title {
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  margin: 0;
}
.card-title .name { font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.25; }
.card-title .sku { font-size: 11px; color: var(--ink-faint); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; white-space: nowrap; }
.card-meta { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; padding: 2px 8px; border-radius: 4px;
  background: var(--chip-bg); color: var(--ink-soft);
  font-weight: 500;
}
.tag.brand { background: var(--ink); color: #fff; }
.tag.family { background: color-mix(in srgb, var(--fam-color, var(--chip-bg)) 45%, #f7f1e3); color: var(--ink); }
.tag.warn { background: var(--warn); color: #fff; }
.card-summary {
  font-size: 13px; color: var(--ink); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Modal — opens when a card is clicked, instead of inline expansion */
.rod-modal {
  position: fixed; inset: 0;
  z-index: 40;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: modal-in .15s ease;
}
.rod-modal[hidden] { display: none; }
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.rod-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,15,20,0.55);
  cursor: pointer;
}
.rod-modal-dialog {
  position: relative;
  background: var(--surface);
  border-radius: 12px;
  width: 100%;
  max-width: 820px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  z-index: 1;
  animation: dialog-in .2s ease;
}
@keyframes dialog-in {
  from { transform: translateY(12px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}
.rod-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 20px; line-height: 1;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.rod-modal-close:hover { background: var(--chip-bg); }
.rod-modal-content { display: flex; flex-direction: column; }
.rod-modal-content .thumb { aspect-ratio: 16 / 7; border-radius: 12px 12px 0 0; }
.rod-modal-content .outcome-strip { aspect-ratio: auto; min-height: 80px; }
.rod-modal-body { padding: 16px 24px 24px; }
.rod-modal-body h4 { margin: 18px 0 8px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.rod-modal-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 4px;
}
.rod-modal-head .name { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.rod-modal-head .sku { font-size: 13px; color: var(--ink-faint); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
body.modal-open { overflow: hidden; }
.card-detail { display: none; }  /* legacy — no longer rendered on cards */
.outcomes-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; list-style: none; padding: 0; }
.outcome {
  border-left: 3px solid var(--fam-color, var(--line-strong));
  padding-left: 12px;
}
.outcome-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px;
}
.outcome-appearance { font-weight: 600; font-size: 14px; }
.outcome-meta { display: flex; gap: 4px; flex-wrap: wrap; }
.outcome-notes { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.working-notes { font-size: 13px; color: var(--ink-soft); }
.working-notes ul { margin: 4px 0 0 16px; padding: 0; }
.working-notes li { margin: 2px 0; }
.full-desc {
  font-size: 13px; color: var(--ink);
  background: var(--chip-bg); border-radius: 6px; padding: 10px 12px;
  white-space: pre-wrap;
  margin: 8px 0 0;
}
details.source-prose {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
details.source-prose > summary {
  cursor: pointer; font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 0;
  list-style: none;
}
details.source-prose > summary::before {
  content: "▸ "; color: var(--ink-faint); margin-right: 4px;
  display: inline-block; transition: transform .15s;
}
details.source-prose[open] > summary::before { transform: rotate(90deg); }
.shared-source-note {
  font-size: 12px; color: var(--ink-faint); font-style: italic;
  margin: 6px 0 8px;
}

.no-results {
  background: var(--surface); border: 1px dashed var(--line-strong);
  padding: 48px 24px; text-align: center; border-radius: 10px;
  color: var(--ink-soft);
}

.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 32px;
}
/* The `hidden` HTML attribute gets overridden by `display: flex` specificity —
   this rule ensures it actually hides when JS sets .hidden = true. Same
   defensive pattern for the mobile-only drawer, sidebar backdrop, and modal. */
[hidden] { display: none !important; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 13px;
}
.site-footer p { margin: 4px 0; }

/* Responsive: tablet */
.mobile-only { display: none; }
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; gap: 16px; padding-top: 16px; }
  .sidebar {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw);
    max-height: none;
    background: var(--bg);
    z-index: 30;
    padding: 0;
    transform: translateX(100%);
    transition: transform .22s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .sidebar-backdrop.open { opacity: 1; pointer-events: auto; }
  .sidebar-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    position: sticky; top: 0; z-index: 2;
  }
  .sidebar-close {
    background: transparent; border: none; font-size: 26px; color: var(--ink);
    cursor: pointer; padding: 4px 10px; line-height: 1;
    font-family: inherit;
  }
  .sidebar-scroll {
    max-height: none;
    padding: 16px 18px 40px;
    overflow-y: auto;
    height: calc(100% - 56px);
  }
  .mobile-only { display: inline-flex; }
  .search input { min-width: 200px; flex: 1; }
  body.sidebar-open { overflow: hidden; }
}

/* Responsive: phone */
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }

  /* Header: logo + title fill row 1 naturally, Copy Link tucks into the
     top-right as a compact icon-only button. */
  .site-header .wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px; padding-bottom: 12px;
  }
  .site-logo img { height: 32px; }
  .site-header h1 { font-size: 18px; }
  .site-header .tagline { font-size: 12px; }
  .header-actions { gap: 6px; }

  /* Copy Link collapses to icon only on mobile — label is visually
     hidden but still the accessible name. */
  #share-btn {
    padding: 8px 10px;
    min-width: 38px;
    min-height: 38px;
    justify-content: center;
  }
  #share-btn-label {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }

  /* Results header: count + Filters on one row, then search row, then
     sort row. Count gets padded breathing room at the top. */
  .layout { padding-top: 20px; }
  .results-header { display: block; margin-bottom: 18px; }
  .results-top { margin-bottom: 14px; align-items: center; }
  .count-hero #count-hero { font-size: 34px; }

  /* Filters: primary mobile action, filled dark so it stands out. */
  #filter-toggle {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    font-weight: 600;
    padding: 10px 20px;
  }
  #filter-toggle:hover,
  #filter-toggle:focus { background: var(--ink); border-color: var(--ink); }
  #filter-toggle .badge { background: var(--accent); }

  .results-controls { display: block; width: 100%; }
  .search { display: block; }
  .search input { min-width: 0; width: 100%; margin-bottom: 10px; }
  /* Sort row: label above the tab group so the intent is explicit. */
  .sort-wrap { display: block; }
  .sort-label { display: block; margin-bottom: 6px; }
  .sort-group { display: flex; width: 100%; }
  .sort-btn { flex: 1; padding: 10px 8px; }

  /* Grid + cards */
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-body { padding: 10px; gap: 6px; }
  .card-title .name { font-size: 14px; }
  .card-summary { font-size: 12px; -webkit-line-clamp: 3; }
  .site-footer { padding: 16px 0; font-size: 12px; }
  .slice-label { font-size: 9px; -webkit-line-clamp: 2; }
  .slice-meta { font-size: 8px; }
  .placeholder-cta { font-size: 11px; padding: 8px 12px; }
  .placeholder-cta-icon { font-size: 18px; }
}

@media (max-width: 420px) {
  .grid { grid-template-columns: 1fr; }
}
