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

/* Base */
body {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  background: #fafafa;
  color: #111;
  text-align: left;
}

/* Paragraphs */
p {
  margin-bottom: 1.2rem;
}

/* Headings */
h1, h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-align: left;
}
h1 { font-size: 2rem; }

/* Lists */
ul {
  list-style-type: circle;
  list-style-position: inside;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
ol {
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
ol li::marker {
  font-weight: bold;
}

/* Blog Post List */
.post-list {
  margin-top: 3rem;
}
.post-preview {
  margin-bottom: 1.5rem;
}
.post-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-title {
  font-size: 1.1rem;
}
.post-date {
  font-size: 0.8rem;
  color: #888;
  white-space: nowrap;
}

/* Post and Page content */
.post-content, .page-content {
  width: 100%;
  padding: 0;
  text-align: left;
}
.post-body, .page-body {
  margin-top: 1.2rem;
  text-align: left;
}
.post-body img, .page-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
}

/* Header and Nav */
.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #222;
  margin-bottom: 0.5rem;
}
.site-nav {
  text-align: left;
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}
.site-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}
.site-links li { margin: 0; }
.site-links a {
  font-weight: 400;
  color: #555;
  text-decoration: none;
}
.site-links a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #777;
  text-align: center;
}

/* Tag list */
.tag-list {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #888;
  text-align: left;
}
.tag-list a {
  color: #0366d6;
  text-decoration: none;
}
.tag-list a:hover {
  text-decoration: underline;
}

/* Ghost helpers */
.kg-width-wide, .kg-width-full {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
