.art-shell .public-archive {
  padding-bottom: 12px;
}
.hero-fly {
  padding-top: 36px;
  margin-bottom: 8px;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  display: block;
  background: #fff;
}
@media (max-width: 760px) {
  .brand-mark { width: 20px; height: 20px; }
}
@media (max-width: 420px) {
  .brand-mark { width: 18px; height: 18px; }
}

.wallet-dialog {
  grid-template-columns: 1fr;
  width: min(420px, 100%);
  gap: 0;
}
.wallet-dialog h2 { margin: 6px 0 18px; }
.wallet-list { display: grid; gap: 8px; }
.wallet-row {
  border: 1px solid var(--line);
  background: #121512;
  color: var(--white);
  border-radius: 8px;
  min-height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 700 12px/1 Silkscreen, monospace;
  text-align: left;
}
.wallet-row:hover {
  border-color: var(--green);
  background: #1a1f1a;
}
.wallet-row img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex: none;
  object-fit: cover;
  background: transparent;
}
.wallet-fallback {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--green);
  color: #071004;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex: none;
}
.wallet-row-meta {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
}
.wallet-empty {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 8px;
}
.wallet-hint {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 16px 0 0;
}
#wallet-modal[hidden] { display: none; }
.wallet-error[hidden] { display: none; }
