/*
 * Pandoc/knitr often outputs list items with links as <li><p>...</p></li>.
 * Block <p> margins make the line sit below the bullet; inline first <p> fixes it.
 */
section#cv li > p,
#single article.page-content li > p {
  margin-top: 0;
  margin-bottom: 0;
}

section#cv li > p:first-child,
#single article.page-content li > p:first-child {
  display: inline;
}

/* If a list item ever has a second paragraph, show it as a normal block below */
section#cv li > p + p,
#single article.page-content li > p + p {
  display: block;
  margin-top: 0.5rem;
}

/* One line of space between the two Honour Societies entries */
section#cv #honour-societies li + li,
#single #honour-societies li + li {
  margin-top: 1em;
}
/* If knitting splits them into two <ul>s, space still appears */
section#cv #honour-societies ul + ul,
#single #honour-societies ul + ul {
  margin-top: 1em;
}

/* Archive page: readable column for long title lists */
#archive-page .archive-post-list {
  max-width: 42rem;
}
