@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:wght@400;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  background: #fafaf8;
}

a {
  color: #6a7c52;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  border-bottom: 1px solid #e0ddd5;
}

header h1 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  color: #3a3a3a;
}

header h1 a {
  color: inherit;
  text-decoration: none;
}

header h1 a:hover {
  color: #6a7c52;
}

header .tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

/* Nav */
nav {
  text-align: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #e0ddd5;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
}

nav a {
  margin: 0 1rem;
  color: #666;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

nav a:hover {
  color: #6a7c52;
}

/* Main content */
main {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Post list (index page) */
.post-list {
  list-style: none;
}

.post-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eae8e1;
}

.post-list li:last-child {
  border-bottom: none;
}

.post-list .post-date {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.25rem;
}

.post-list .post-title {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
}

.post-list .post-title a {
  color: #3a3a3a;
}

.post-list .post-title a:hover {
  color: #6a7c52;
}

.post-list .post-excerpt {
  font-size: 0.95rem;
  color: #777;
  margin-top: 0.4rem;
  line-height: 1.6;
}

/* Individual post */
article {
  padding-top: 1rem;
}

article .post-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

article h1 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.3;
  color: #3a3a3a;
  margin-bottom: 0.5rem;
}

article h2 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #3a3a3a;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

article .book-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

article p {
  margin-bottom: 1.2rem;
}

article blockquote {
  border-left: 3px solid #c5cbb0;
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: #555;
  font-style: italic;
}

article blockquote p {
  margin-bottom: 0.8rem;
}

article blockquote p:last-child {
  margin-bottom: 0;
}

article ul, article ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

article li {
  margin-bottom: 0.6rem;
}

article .back-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #999;
}

article .back-link:hover {
  color: #6a7c52;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #e0ddd5;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: #bbb;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  article h1 {
    font-size: 1.6rem;
  }

  main {
    padding: 1.5rem 1rem 3rem;
  }
}
