/* Blog Post Styling */

.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.blog-post h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-top: 0rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.blog-post-meta {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.blog-post-meta p {
  margin: 0.3rem 0;
}

.blog-post-content {
  margin-bottom: 2rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-post-content blockquote {
  border-left: 4px solid #3498db;
  padding-left: 1rem;
  margin-left: 0;
  color: #555;
  font-style: italic;
}

.blog-post-content h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 2rem 0 1rem;
}

.blog-post-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 1.8rem 0 0.8rem;
}

.blog-post-content code {
  background-color: #f8f8f8;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.blog-post-content pre {
  background-color: #f8f8f8;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-post-divider {
  border: none;
  height: 1px;
  background-color: #ecf0f1;
  margin: 2rem 0;
}

.blog-post-nav {
  margin-top: 3rem;
}

.blog-post-nav a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #28c76f;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.blog-post-nav a:hover {
  background-color: #2980b9;
}

@media (max-width: 768px) {
  .blog-post {
    padding: 1rem;
  }
  
  .blog-post h1 {
    font-size: 2rem;
  }
}