/*
  Card preview styles, mirrored from the public site's brand.css so the
  preview-before-approve is faithful to what a reader actually sees. Keep this
  in sync with paddock-site/src/styles/brand.css. The .wall surface reproduces
  the public page background.
*/
.wall {
  --bg: #0a0c10;
  --bg-elev: #12161d;
  --line: #232a35;
  --text: #e8edf4;
  --text-dim: #9aa6b6;
  --accent: #e10600;
  --ok: #34d399;
  background: var(--bg);
  color: var(--text);
  border-radius: 14px;
  padding: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wall .card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 340px;
}

.wall .card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wall .card__role { font-weight: 700; font-size: 16px; }

.wall .card__flag {
  font-size: 11px;
  color: var(--ok);
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.wall .card__caliber {
  margin: 0;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wall .card__signals {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.wall .card__copy {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.wall .card__foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-dim);
}
