/* Result post card */
.result {
  margin-top: 18px;
}

.result:not(.hidden) {
  animation: fadeSlideIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.result-title {
  margin: 0;
  font-size: 18px;
}

.result-actions {
  display: flex;
  gap: 10px;
}

.post-content {
  white-space: normal;
  word-break: break-word;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  min-height: 80px;
}

.post-content h1,.post-content h2,.post-content h3 {
  margin: 12px 0 8px;
}

.post-content p {
  margin: 8px 0;
}

.post-content ul {
  padding-left: 20px;
  margin: 8px 0;
}

.post-content li {
  margin: 4px 0;
}

.post-content strong {
  font-weight: 700;
}



