/* Container for each blog post entry */
.blogpost-header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;

  padding: 0.5rem 0;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Date styling */
.blogpost-date {
  flex-shrink: 0;

  font-size: 0.85rem;
  color: #9ca3af; /* light gray */
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}

/* Blog title link */
.blogpost-link {
  font-size: 1.1rem;
  font-weight: 500;

  color: white;
  text-decoration: none;
  line-height: 1.5;
}
