/* Feed tab — post list styling. Unique to this tab. */

.feed-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feed-post {
  background: #fff;
  border: 1px solid #eadfc9;
  border-radius: 18px 18px 4px 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.feed-post .feed-author { font-weight: 700; color: var(--maroon); font-size: 14px; }
.feed-post .feed-meta { font-size: 12px; color: #776a55; margin-bottom: 6px; }
.feed-post .feed-message { font-size: 14px; color: var(--ink); white-space: pre-wrap; }
.feed-empty { color: #776a55; font-style: italic; }
