/* =====================================================================
   Home feed — Ledger layout (date gutter + entry), no dividers
   ===================================================================== */
.feed { margin-top: 26px; }

.entry {
  display: grid;
  grid-template-columns: var(--gutter) 1fr;
  column-gap: 30px;
  padding: 20px 0;
  align-items: start;
}
.entry .date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--faint);
  padding-top: 8px;
  white-space: nowrap;
}
.entry .body { min-width: 0; }

.essay-title {
  display: inline-block;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.006em;
  color: var(--accent);          /* titles carry the accent */
  text-decoration: none;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}
.essay-title:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.essay-desc {
  font-size: 16.5px;
  line-height: 1.56;
  color: var(--muted);
  margin: 7px 0 0;
  text-wrap: pretty;
}

/* microblog post — same styling, no title, full body */
.post-body { font-size: 16.5px; line-height: 1.62; color: var(--ink); }
.post-body p { margin: 0 0 0.65em; }
.post-body p:last-child { margin-bottom: 0; }
.post-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.feed-foot {
  display: grid;
  grid-template-columns: var(--gutter) 1fr;
  column-gap: 30px;
  margin: 24px 0 64px;
}
.showall {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.showall:hover { color: var(--accent); }
.showall .arr { transition: transform 0.18s ease; }
.showall:hover .arr { transform: translateX(3px); }

@media (max-width: 640px) {
  .entry { grid-template-columns: 1fr; row-gap: 0; padding: 16px 0; }
  .entry .date { padding-top: 0; margin-bottom: 7px; }
  .feed-foot { grid-template-columns: 1fr; }
}
