.note {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  background: var(--note-bg);
}

.note > :nth-child(1) {
  color: var(--subtle);
  font-size: 0.78rem;
  line-height: 1.2;
}

.note > :nth-child(2) {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-all;
}

.note > :nth-child(3) > * {
  display: block;
}

.attachments {
  display: grid;
  gap: 0.75rem;
}

.note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}

.fake-verify {
  margin-top: 0.25rem;
}
