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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #004499;
}

.site-header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}

.post .site-header {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.profile {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.post .profile {
  margin-bottom: 10px;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}

.profile-info {
  flex: 1;
}

.site-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.site-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.site-title a:hover {
  color: #0066cc;
}

.bio {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.subscribe {
  font-size: 15px;
  color: #666;
}
.subscribe .separator {
  margin: 0 8px;
}

.subscribe-link {
  color: #666;
}
.subscribe-link:hover {
  color: #0066cc;
}

.post-list {
  list-style: none;
}

.post-item {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}
.post-item:last-child {
  border-bottom: none;
}

.post-date {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.post-title a {
  color: #1a1a1a;
}
.post-title a:hover {
  color: #0066cc;
}

.post-excerpt {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  font-size: 15px;
  font-weight: 500;
}

.post, .page {
  margin-bottom: 60px;
}

.post-header, .page-header {
  margin-bottom: 40px;
}

.post .post-title, .page-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6, .page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 20px;
}
.post-content h1, .page-content h1 {
  font-size: 28px;
}
.post-content h2, .page-content h2 {
  font-size: 24px;
}
.post-content h3, .page-content h3 {
  font-size: 20px;
}
.post-content h4, .page-content h4 {
  font-size: 18px;
}
.post-content p, .page-content p {
  margin-bottom: 20px;
}
.post-content ul, .post-content ol, .page-content ul, .page-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}
.post-content li, .page-content li {
  margin-bottom: 10px;
}
.post-content blockquote, .page-content blockquote {
  margin: 30px 0;
  padding-left: 20px;
  border-left: 3px solid #e5e5e5;
  color: #666;
  font-style: italic;
}
.post-content code, .page-content code {
  font-family: "SF Mono", Monaco, "Courier New", monospace;
  font-size: 15px;
  background-color: #f5f5f5;
  padding: 2px 6px;
  border-radius: 3px;
}
.post-content pre, .page-content pre {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  overflow-x: auto;
}
.post-content pre code, .page-content pre code {
  background-color: transparent;
  padding: 0;
}
.post-content img, .page-content img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}
.post-content hr, .page-content hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 40px 0;
}

.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.back-link {
  font-size: 15px;
  color: #666;
}
.back-link:hover {
  color: #0066cc;
}

.site-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  color: #999;
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
  .avatar {
    width: 60px;
    height: 60px;
  }
  .site-title {
    font-size: 24px;
  }
  .post-title {
    font-size: 20px;
  }
  .post .post-title, .page-title {
    font-size: 26px;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    color: #e8e8e8;
    background-color: #0f0f0f;
  }
  a {
    color: #6ba3ff;
  }
  a:hover {
    color: #8fb8ff;
  }
  .site-header {
    border-bottom: 1px solid #2a2a2a;
  }
  .site-title a {
    color: #e8e8e8;
  }
  .site-title a:hover {
    color: #6ba3ff;
  }
  .bio {
    color: #a0a0a0;
  }
  .subscribe {
    color: #a0a0a0;
  }
  .subscribe-link {
    color: #a0a0a0;
  }
  .subscribe-link:hover {
    color: #6ba3ff;
  }
  .post-item {
    border-bottom: 1px solid #2a2a2a;
  }
  .post-date {
    color: #707070;
  }
  .post-title a {
    color: #e8e8e8;
  }
  .post-title a:hover {
    color: #6ba3ff;
  }
  .post-excerpt {
    color: #a0a0a0;
  }
  .post-content blockquote, .page-content blockquote {
    border-left: 3px solid #2a2a2a;
    color: #a0a0a0;
  }
  .post-content code, .page-content code {
    background-color: #1a1a1a;
  }
  .post-content pre, .page-content pre {
    background-color: #1a1a1a;
  }
  .post-content hr, .page-content hr {
    border-top: 1px solid #2a2a2a;
  }
  .post-footer {
    border-top: 1px solid #2a2a2a;
  }
  .back-link {
    color: #a0a0a0;
  }
  .back-link:hover {
    color: #6ba3ff;
  }
  .site-footer {
    border-top: 1px solid #2a2a2a;
    color: #707070;
  }
}

/*# sourceMappingURL=style.css.map */