* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #222;
  line-height: 1.6;
}

.site-header {
  border-bottom: 1px solid #eee;
  padding: 1rem;
}

.site-header nav {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
}

.site-header a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.site-header a:hover {
  text-decoration: underline;
}

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.home {
  text-align: center;
  padding-top: 3rem;
}

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

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

.post-list li {
  margin-bottom: 1.25rem;
}

.post-list a {
  color: #1a5fb4;
  text-decoration: none;
  font-weight: 600;
}

.post-list a:hover {
  text-decoration: underline;
}

.post-list time,
.post-meta time {
  display: inline-block;
  color: #777;
  font-size: 0.9rem;
}

.categories a,
.post-tags a {
  color: #777;
  font-size: 0.9rem;
  text-decoration: none;
}

.categories a:hover,
.post-tags a:hover {
  text-decoration: underline;
}

.post-meta {
  color: #777;
  margin-top: -0.5rem;
}

.post-tags {
  margin-top: 2rem;
}

.taxonomy-list {
  list-style: none;
  padding: 0;
}

.pager {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.pager a {
  color: #1a5fb4;
}

article.post h1 {
  margin-bottom: 0.25rem;
}
