/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  padding: 20px;
}

/* Container for content */
.container {
  max-width: 650px;
  margin: 0 auto;
}

/* Typography */
h1 {
  font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin: 40px 0 10px;
  color: #000;
}

h2 {
  font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
  color: #000;
}

p {
  margin-bottom: 20px;
}

.bio {
  color: #666;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Bullet points and lists */
ul {
  margin: 10px 0;
  padding-left: 0;
  list-style-position: outside;
}

ul li {
  margin-left: 30px;
  margin-bottom: 10px;
  padding-left: 10px;
  line-height: 1.4;
}

/* Sub-bullet points (nested lists) */
ul ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

ul ul li {
  margin-left: 25px;
  list-style-type: circle;
}

/* Third level */
ul ul ul li {
  list-style-type: square;
}

/* Ordered lists (numbered) */
ol {
  margin: 10px 0;
  padding-left: 0;
}

ol li {
  margin-left: 30px;
  margin-bottom: 10px;
  padding-left: 10px;
  line-height: 1.4;
}

/* Nested numbered lists */
ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
  list-style-type: lower-alpha;
}

ol ol ol {
  list-style-type: lower-roman;
}

/* Essay list on homepage */
.essays {
  list-style: none;
  margin: 0;
  padding: 0;
}

.essays li {
  margin-bottom: 15px;
  margin-left: 0; /* Override the general ul li styling */
  padding-left: 0;
}

.essays a {
  font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.essays a:hover {
  color: #0066cc;
}

.date {
  color: #999;
  font-size: 14px;
  margin-left: 10px;
}

/* Essay-specific styles */
.breadcrumb {
  margin: 20px 0;
  font-size: 14px;
}

article h1 {
  margin-bottom: 5px;
}

article h2 {
  font-family: 'Chakra Petch', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

article .date {
  color: #999;
  font-size: 14px;
  margin-bottom: 30px;
  display: block;
}

blockquote {
  border-left: 3px solid #ccc;
  margin: 30px 0;
  padding-left: 20px;
  color: #666;
  font-style: italic;
}

strong {
  font-weight: 550;
  color: #222;
}

/* Footer */
footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 14px;
}