.feed-header {
  margin-bottom: 24px;
}

#post-creator {
  margin-bottom: 24px;
}

#post-content {
  width: 100%;
  min-height: 80px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--card-ink);
  margin-bottom: 10px;
}

.post-actions {
  display: flex;
  justify-content: flex-end;
}

.post {
  background: var(--card);
  color: var(--card-ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.post-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.post-author-name {
  font-weight: 800;
}

.post-timestamp {
  font-size: 12px;
  color: var(--muted);
}

.post-body {
  margin-bottom: 16px;
}

.post-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-reactions {
  display: flex;
  gap: 8px;
}

.reaction {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.reaction img {
  width: 24px;
  height: 24px;
}

.reaction-count {
  font-size: 14px;
  font-weight: 600;
}

.post-comment-btn, .post-support-btn, .post-boost-btn {
  margin-left: auto; /* Pushes these buttons to the right */
}

.comments-section {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.comment {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.comment-author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.comment-body {
  background: #0a0a0a;
  padding: 8px 12px;
  border-radius: 10px;
  width: 100%;
}
