/**
 * freshness.css — Last Updated timestamp styling
 * Link this from pages that need visible freshness indicators.
 * Class: .last-updated
 */

.last-updated {
  display: inline-block;
  font-family: var(--sans, system-ui, -apple-system, sans-serif);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px 0;
  letter-spacing: 0.01em;
}

/* On light-background sections, use dark text */
.article .last-updated,
.content .last-updated,
section:not(.hero) .last-updated {
  color: rgba(10, 21, 48, 0.4);
}

/* Inline version (no block margin) */
.last-updated.inline {
  display: inline;
  margin: 0;
}
