/* Typography and spacing for blog posts */

.post h1{
  font-family: var(--font-serif);
  font-size: 29px;
  font-weight: 400;
  margin: 12px 0 8px;
}

.post h2{
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin: 24px 0 16px;
}

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

.post h3{
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  margin: 32px 0 12px;
}

.post strong, .post b{
  font-weight: 600;
}

.post th{
  font-weight: 600;
}

/* List items with bold labels: slightly smaller so they don't compete with h3 */
.post .list-tight li{
  font-size: 20px;
  line-height: 1.55;
}

.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 ornamental fleuron divider */
.post section + section{
  margin-top: 64px;
}

.post section + section::before{
  content: "\2767";
  display: block;
  text-align: center;
  font-size: 20px;
  color: var(--muted);
  margin: 56px 0;
  height: auto;
  background:
    linear-gradient(var(--border), var(--border)) left center / calc(50% - 24px) 1px no-repeat,
    linear-gradient(var(--border), var(--border)) right center / calc(50% - 24px) 1px no-repeat;
  box-shadow: none;
  clip-path: none;
}

/* Drop cap: first letter of opening paragraph, manuscript style */
.post > section:first-child > p:first-of-type::first-letter {
  font-family: var(--font-drop-cap);
  font-weight: normal;
  float: left;
  font-size: 4.2em;
  line-height: 0.6;
  padding-right: 10px;
  margin-top: 0.12em;
  color: var(--manuscript-blue);
}


