/* =======================================================
*
*	Chapter text rendered from the Markdown in /md-files.
*	Long-form reading, so this is mostly about measure,
*	rhythm and the elements style.css never covered.
*
* ======================================================= */

.chapter {
  max-width: 44em;
}

.chapter h2 {
  margin-bottom: 20px;
}

/* the "Volume One---Chapter One" line above the title */
.chapter-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a5a5a5;
  margin: 0 0 6px 0;
}

.chapter h3 {
  font-size: 21px;
  color: #5a5a5a;
  margin: 2.2em 0 0.7em 0;
}

/* the first heading follows the title rule, so it needs no run-up */
.chapter hr + h3 {
  margin-top: 1em;
}

.chapter p {
  line-height: 1.75;
  margin-bottom: 1.35em;
}

/* run-in headings: "Secular and spiritual truths." opening a paragraph */
.chapter p > strong:first-child {
  color: #5a5a5a;
}

.chapter em {
  font-style: italic;
}

/* block quotations, which style.css never had a rule for */
.chapter blockquote {
  position: relative;
  margin: 1.8em 0 1.8em 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid #ef6249;
  font-size: 15.5px;
  line-height: 1.7;
  color: #5f5f5f;
}

.chapter blockquote em {
  color: #4f4f4f;
}

.chapter-nav {
  font-size: 14px;
  color: #9a9a9a;
}

.chapter-nav a {
  border-bottom: 1px solid rgba(239, 98, 73, 0.35);
}

.chapter-nav a:hover {
  border-bottom-color: #ef6249;
}

@media screen and (max-width: 768px) {
  .chapter p {
    line-height: 1.7;
  }

  .chapter h3 {
    font-size: 19px;
    margin-top: 1.8em;
  }

  .chapter blockquote {
    padding-left: 18px;
    margin-left: 0;
  }
}
