/* ---- 16b. Feed (inbox) -------------------------------------------------- */

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

.feed-heading,
.related-heading,
.tasks-heading,
.collection-heading,
.donation-heading,
.calendar-heading,
.record-photo-heading,
.doc-title,
.stepper-heading,
.page-nav-heading {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
}

.feed-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--ta-border);
  border-radius: var(--ta-r);
  background: var(--ta-surface);
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 0.9rem;
}

.feed-item+.feed-item {
  border-top: 1px solid var(--ta-border);
}

.feed-body {
  min-width: 0;
  flex: 1;
}

.feed-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-sub {
  margin-top: 0.15rem;
  color: var(--ta-muted);
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feed-time {
  flex: none;
  color: var(--ta-muted);
  font-family: var(--ta-mono);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}

