/* Snapshot card — renders inside the chat message list */

.snapshot-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  max-width: 480px;
}

.snapshot-card__image {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.snapshot-card__from {
  margin: 0;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-family);
  border-top: 1px solid var(--border);
}

.snapshot-card__from strong {
  color: var(--text-secondary);
}
