/* echo — short notes & memos stream (/echo/) and permalink pages */

/* ── Stream (/echo/) ── */
.echo-stream { display: flex; flex-direction: column; }
.echo {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
}
.echo:first-child { padding-top: 8px; }
.echo:last-child { border-bottom: none; }

.echo-meta { font-size: 12px; color: var(--dim); }
.echo-date { color: var(--dim); }
@media (hover: hover) { .echo-date.underline:hover { color: var(--accent); } }

.echo-title { font-size: 16px; margin: 6px 0 2px; line-height: 1.35; }
.echo-title a { color: var(--fg); transition: color .15s; }
@media (hover: hover) { .echo-title a:hover { color: var(--accent); } }

/* Echo bodies are short prose; nudge the type down a touch from full posts. */
.echo-body { margin-top: 8px; font-size: 14px; }
.echo-body > :first-child { margin-top: 0; }
.echo-body > :last-child { margin-bottom: 0; }

/* ── Permalink page (/echo/<slug>/) ── */
.echo-back { font-size: 12px; margin-top: 8px; }
.echo-header { margin: 10px 0 4px; }
.echo-header .echo-meta { margin-bottom: 6px; }
.echo-title-lg { font-size: 24px; line-height: 1.25; }
