
.blog-page {
  padding: 20px 0;
  text-align: center;
}

.blog-page h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.blog-page p {
  font-size: 18px;
  color: #bbb;
}

/* blog_post.css (or inside your global CSS) */
.blog-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #1e1e2f;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  color: #eee;
  line-height: 1.8;
  font-size: 1rem;
}
.blog-post h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.blog-post em {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}
.blog-post h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #ffd166;
}
.blog-post ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.blog-post ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.blog-post p {
  margin-bottom: 1.2rem;
}
.blog-post a {
  color: #4ac9ff;
  text-decoration: underline;
}
.blog-post a:hover {
  text-decoration: none;
}
