/* Typography and spacing for blog posts */

.post h1{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 29px;
  margin: 12px 0 8px;
}

.post h2{
  font-size: 36px;
  margin: 24px 0 16px;
  font-weight: 600;
}

.post section:first-child h2{
  margin-top: 32px;
}

.post h3{
  font-size: 19px;
  margin: 20px 0 6px;
}

.post p{
  margin: 16px 0;
}

.post img{
  max-width:100%;
  border-radius:8px;
}

.post blockquote{
  margin: 16px 0;
  padding-left: 16px;
  border-left: 3px solid var(--border);
  color: var(--muted);
}

.post table{
  border-collapse: collapse;
  width:100%;
  margin:16px 0;
}

.post th,.post td{
  border:1px solid var(--border);
  padding:8px 10px;
}

.post .callout{
  border:1px solid var(--border);
  border-radius:8px;
  padding:12px 14px;
  background: transparent;
}

.post .meta{
  margin-top:-6px;
}

/* Larger spacing between sections with a full-bleed divider */
.post section + section{
  margin-top: 64px;
}

.post section + section::before{
  content: "";
  display: block;
  height: 1px;
  background: var(--border);
  /* Robust full-bleed line without horizontal scrollbars */
  box-shadow: 0 0 0 100vmax var(--border);
  clip-path: inset(0 -100vmax);
  margin: 64px 0; /* equal space above and below */
}


