/* blog3.css */

/* Container for the blog post section */
.blog-post-section {
  max-width: 1200px; 
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  margin: 2rem auto;
}

/* Blog post styling */
.blog-post {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--text-color);
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
  text-align: justify;
}

/* Post Title styling */
.post-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: var(--neon-color);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 5px var(--neon-color);
}

/* Section heading styling */
.blog-post h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  border-bottom: 2px solid var(--neon-color);
  padding-bottom: 0.25rem;
}

/* Paragraph styling */
.blog-post p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Unordered list styling */
.blog-post ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
  list-style-type: disc;
  text-align: justify;
}

/* List item styling */
.blog-post li {
  margin-bottom: 0.5rem;
}

/* Blockquote styling */
.blog-post blockquote {
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-left: 4px solid var(--neon-color);
  margin: 2rem 0;
  text-align: justify;
}

/* Footer note style */
.blog-post .post-footer {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2rem;
}
