* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin: 0 auto;
  padding: 64px 32px;
  line-height: 24px;
  max-width: 656px;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
}

img {
  height: auto;
  margin: 16px 0;
  max-width: 100%;
}

a {
  color: blue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Navigation styles */
nav {
  border-bottom: 1px solid #eee;
  margin-bottom: 32px;
  padding-bottom: 16px;
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

nav a.active {
  color: blue;
}

/* Blog styles */
.blog-post {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

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

.blog-post h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 8px;
}

.blog-post .date {
  color: #666;
  font-size: 12px;
  margin-bottom: 16px;
}

.blog-post .excerpt {
  margin-bottom: 16px;
}

.blog-post .read-more {
  font-weight: 500;
}

.blog-post .read-more:hover {
  text-decoration: underline;
}

.blog-article .article-meta {
  color: #666;
  font-size: 12px;
  padding-bottom: 16px;
}

.blog-article h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 32px 0 16px;
}

.blog-article h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 24px 0 16px;
}
