/*
 * Timestamps.
 *
 * A `<time>` element with a relative string in it — "3 hours ago" — and the exact instant in its `datetime`
 * and `title` attributes, so hovering or inspecting gives the precise answer while reading gives the useful
 * one.
 *
 * Quiet and small on purpose. On a feed the time is context, not content: a column of dozens of dates at body
 * size pulls the eye down the timestamps instead of along the posts. It sets no margin, because every caller
 * adds its own class and decides where the time sits in its row.
 */

.timestamp {
    color: var(--colour-ink-faint);
    font-size: var(--text-xs);
    white-space: nowrap;
}
