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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

a:hover {
  text-decoration: underline;
}

/* Layout */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
.site-header {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.site-title:hover {
  text-decoration: none;
  color: #0066cc;
}

.site-nav {
  margin-top: 0.5rem;
}

.site-nav a {
  margin-right: 1rem;
  font-size: 0.95rem;
}

/* Posts on homepage */
.post-list {
  list-style: none;
}

.post-list .post {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

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

/* Post styling */
.post-header {
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.post-title a {
  color: #333;
}

.post-title a:hover {
  color: #0066cc;
}

.post-date {
  font-size: 0.9rem;
  color: #888;
}

.post-content {
  margin-bottom: 1rem;
}

.post-content p {
  margin-bottom: 1rem;
}

.post-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
}

.post-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
}

.post-content ul,
.post-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid #ddd;
  color: #666;
  font-style: italic;
}

.post-content code {
  font-family: "SF Mono", Monaco, "Courier New", monospace;
  font-size: 0.9em;
  background: #f5f5f5;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.post-content pre {
  background: #f5f5f5;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 4px;
  margin: 1rem 0;
}

.post-content pre code {
  padding: 0;
  background: none;
}

.post-content img {
  max-width: 100%;
  height: auto;
}

/* Page styling */
.page-header {
  margin-bottom: 1.5rem;
}

.page-title {
  font-size: 1.75rem;
}

.page-content p {
  margin-bottom: 1rem;
}

/* Archive */
.archive-list {
  list-style: none;
}

.archive-list li {
  margin-bottom: 0.75rem;
}

.archive-date {
  color: #888;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  
  .container {
    padding: 1rem;
  }
  
  .post-title {
    font-size: 1.4rem;
  }
}
