/* Minimal, clean, responsive blog styles */
* {
  box-sizing: border-box
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  line-height: 1.6
}
a {
  color: inherit;
  text-decoration: none
}
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem
}
.site-header {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  position: sticky;
  top: 0
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}
.site-title {
  font-weight: 700
}
.site-nav a {
  margin-left: 1rem;
  opacity: .8
}
.site-nav a:hover {
  opacity: 1
}
.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #fafafa;
  margin-top: 3rem
}
.post h1 {
  font-size: 2rem;
  margin: .5rem 0
}
.post-meta {
  color: #6b7280;
  font-size: .9rem;
  margin-top: -.5rem
}
.post img {
  max-width: 100%;
  height: auto;
  border-radius: .5rem
}
.index-list {
  list-style: none;
  padding: 0;
  margin: 0
}
.index-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #eee
}
.btn {
  display: inline-block;
  padding: .5rem .9rem;
  border: 1px solid #e5e7eb;
  border-radius: .5rem
}
.hero {
  padding: 2rem 0
}