#site_content > main {
  display: contents;
}

/* Inline code in rich text; block-level code is <pre><code> handled by Prism. */
:not(pre) > code {
  font-family: ui-monospace, 'Cascadia Code', Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: #F0EFE2;
  color: #47433F;
  border: 1px solid #E5E5DB;
  border-radius: 3px;
  padding: 0.1em 0.35em;
  /* long unbroken tokens must not widen the column on narrow screens */
  overflow-wrap: break-word;
}

.blog-post {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.blog-post:last-child {
  border-bottom: none;
}

.blog-post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-post-header h2 {
  margin: 0;
  flex: 1;
}

.blog-date {
  font-size: 0.8em;
  color: #666;
  margin-left: 10px;
}
