:root {
  --background: #f6f1e7;
  --text: #2f281f;
  --link: #3d3122;
  --link-hover: #241b12;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 48px 24px;
  background: var(--background);
  color: var(--text);
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.5;
}

.page-shell {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 36rem;
}

.essay-heading,
.section-heading,
.essay-title,
.essay-link,
.contact-line {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.45;
}

.section-heading-spaced {
  margin-top: 0.6rem;
}

.essay-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1rem;
}

.essay-link {
  display: inline-block;
  width: fit-content;
  color: var(--link);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
}

.essay-link:hover,
.essay-link:focus-visible {
  color: var(--link-hover);
}

.contact-line {
  margin-top: 0.6rem;
}

@media (min-width: 720px) {
  body {
    padding: 64px 40px;
  }
}
