/* blog.css */
body {
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 200px;
  padding: 20px 0;
}

.site-header {
  background: #f8f8f8;
  border-bottom: 1px solid #ddd;
}

.main-nav {
  display: flex;
  align-items: center;
  padding: 15px;
}

.main-nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.main-nav .btn-primary {
  margin-left: auto;
  background: rgb(244, 50, 69);
  color: #fff;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
}

.blog-post h1 {
  font-size: 2.2em;
  margin-bottom: 0.2em;
}
.blog-post a {
  color: rgb(244, 50, 69);

}

.post-date {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 1em;
}

.post-content h2, .post-content h3 {
  margin-top: 1.4em;
  color: black;
}

.post-content p {
  margin-bottom: 1em;
}

.related-posts {
  margin-top: 40px;
}

.related-posts h2 {
  border-bottom: 2px solid rgb(244, 50, 69);
  padding-bottom: 5px;
}

.related-posts ul {
  list-style: none;
  padding: 0;
}

.related-posts li {
  margin-bottom: 0.5em;
}

.related-posts a {
  color: rgb(244, 50, 69);
  text-decoration: none;
}

.site-footer {
  background: #eee;
  text-align: center;
  margin-top: 60px;
  padding: 20px 0;
  font-size: 0.9em;
}

.site-footer a {
  color: rgb(244, 50, 69);
  text-decoration: none;
}
