/* ====================================================
   Arms — Page Mur social
   ==================================================== */

.feed { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.post-card { padding: 20px 22px; }
.post-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.post-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid var(--c-border-strong);
}
.post-meta { flex-grow: 1; }
.post-username { font-size: 14.5px; font-weight: 600; }
.post-sub { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--c-text-dim); }
.post-platform-icon { width: 14px; height: 14px; }

.post-content { font-size: 14.5px; line-height: 1.65; color: var(--c-text-muted); margin-bottom: 14px; }
.post-content a { color: var(--c-red-glow); }

.post-stats {
  display: flex;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--c-text-dim);
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
}
.post-stats span { display: flex; align-items: center; gap: 6px; }
.post-stats svg { width: 14px; height: 14px; }

.feed-filter-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
