/*
  ============================================================
  ESSAY PAGE STYLES
  ============================================================
  Long-form reading environment:
  - EB Garamond title, black
  - Charter body serif
  - Single column, no sidebar
  - Cream background inherited from site.css
*/

.essay-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 90px 40px 120px;
}

.essay-back {
  display: inline-block;
  font-family: 'Charter', Georgia, serif;
  font-size: 15px;
  color: var(--essay-muted);
  text-decoration: none;
  margin-bottom: 56px;
}
.essay-back:hover {
  opacity: 1;
  color: var(--essay-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.essay-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--essay-ink);
  margin: 0 0 12px;
}

.essay-date {
  font-family: 'Charter', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: var(--essay-muted);
  margin: 0 0 48px;
}

.essay-body {
  font-family: 'Charter', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.65;
  color: var(--essay-ink);
}

.essay-body p { margin: 0 0 26px; }
.essay-body p:last-child { margin-bottom: 0; }

.essay-body h2 {
  font-family: 'Charter', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--essay-ink);
  margin: 56px 0 32px;
  padding: 0;
  line-height: 1;
}
.essay-body h2:first-child { margin-top: 0; }

.essay-body em { font-style: italic; }
.essay-body strong { font-weight: 700; }

.essay-body a {
  color: var(--essay-ink);
  border-bottom: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.essay-body blockquote {
  border-left: 3px solid #d1c9bb;
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--essay-ink);
}

.essay-end {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid #d1c9bb;
  font-family: 'Charter', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--essay-muted);
}
.essay-end p { margin: 0; }

/* Colours — light only */
:root {
  --essay-ink: #191919;
  --essay-muted: #737373;
}

/* Responsive */
@media (max-width: 900px) {
  .essay-page {
    padding: 88px 24px 80px;
  }
  .essay-title {
    font-size: 34px;
    margin-bottom: 10px;
  }
  .essay-date { margin-bottom: 36px; }
  .essay-body { font-size: 18px; }
  .essay-body p { margin-bottom: 22px; }
  .essay-body h2 {
    margin: 40px 0 24px;
    font-size: 14px;
  }
  .essay-back { margin-bottom: 40px; }
}
