/* Minimal design inspired by patrickcollison.com */
/* Color scheme: pale grey and white */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background: #ffffff;
  padding: 40px 20px;
}

.container {
  max-width: 650px;
  margin: 0 auto;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1a1a1a;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

p {
  margin-bottom: 16px;
  color: #333333;
}

/* Links with pale grey/blue colors */
a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

a:visited {
  color: #9ca3af;
}

/* Navigation list - left aligned like Patrick's site */
ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

/* Content list styling */
.content ul {
  margin-left: 20px;
}

.content li {
  margin-bottom: 10px;
}

/* Back link */
.back {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 14px;
  color: #6b7280;
}

.back:hover {
  color: #1a1a1a;
}

/* Strong/bold text */
strong {
  font-weight: 600;
  color: #1a1a1a;
}

em {
  font-style: italic;
  color: #6b7280;
}

/* Horizontal rule */
hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 40px 0;
}

/* Responsive design */
@media (max-width: 600px) {
  body {
    padding: 30px 15px;
  }
  
  h1 {
    font-size: 22px;
  }
  
  h2 {
    font-size: 18px;
  }
}

/* Print styles */
@media print {
  body {
    font-size: 12pt;
    padding: 0;
  }
  
  a {
    color: #333333;
  }
}
.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}

.post-date {
  font-size: 0.85rem;
  color: #999;
}