/*
 * The memorial.
 *
 * A wall of things that no longer exist. Every tile is a real purchase with a
 * transaction behind it, so the treatment stays plain: the claim is that this
 * happened and can be checked, and dressing it up would undercut that.
 */

.graves {
  list-style: none; padding: 0; margin: 2.6rem 0 0;
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
}
.grave {
  border: 1px solid var(--line); border-radius: 5px; overflow: hidden;
  background: var(--surface);
}
.grave img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  background: #000; filter: grayscale(1) contrast(1.05);
}
.grave-body { padding: 0.8rem 0.9rem 0.95rem; }
.grave-name { font-size: var(--step--1); font-weight: 600; }
.grave-meta {
  display: flex; justify-content: space-between; gap: 0.6rem;
  margin-top: 0.45rem; font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3);
}
.grave-tx { display: block; margin-top: 0.5rem; font-family: var(--mono); font-size: 0.7rem; }

/* ── ghost tiles ──────────────────────────────────────────────────────
 *
 * The sacrifice pickers are empty until a wallet is connected, and an empty
 * grid reads as a broken page rather than a locked one. These sit in the same
 * footprint the real tiles will occupy, so nothing jumps when they arrive.
 */
.ghost {
  border: 1px dashed var(--line); border-radius: 4px; background: transparent;
  aspect-ratio: 1; display: grid; place-items: center;
  color: var(--ink-3); font-family: var(--mono); font-size: 0.72rem;
  cursor: default;
}
.ghost:hover { border-color: var(--line); box-shadow: none; }
