
/* === Improved Blog Content Styling === */
.blog-content {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #333;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
  margin-top: 1.4em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}

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

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 16px 0;
}

.blog-content ul,
.blog-content ol {
  margin: 1em 0 1em 2em;
}

.blog-content li {
  margin-bottom: 0.5em;
}

.blog-content a {
  color: #007bff;
  text-decoration: none;
}

.blog-content a:hover {
  text-decoration: underline;
}

.dark-mode .blog-content {
  background: #1a1a1a;
  color: #eee;
}

.dark-mode .blog-content a {
  color: #8ab4f8;
}
