/* Blog Post Container */


.blog-post {
   
    margin: 4rem auto;
    padding: 0 1.5rem;
    padding-left: 5%;
    padding-right: 5%;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #eaeaea;
  }
  
  /* Blog Title */
  .blog-post h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00ffcc;
    text-align: center;
  }
  
  .post-date {
    text-align: center;
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 2rem;
  }
  
  /* Blog Image */
  .blog-header-image {
    width: 100%;
   
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.15);
    margin-bottom: 2rem;
  }
  
  /* Content Styling */
  .post-content {
    font-size: 1.05rem;
    color: #ddd;
  }
  
  /* Style headings inside content */
  .post-content h2,
  .post-content h3 {
    color: #00ffcc;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .post-content p {
    margin: 1.2rem 0;
  }
  
  .post-content a {
    color: #00ffcc;
    text-decoration: underline;
    transition: color 0.2s ease;
  }
  .post-content a:hover {
    color: #00ffaa;
  }
  
  /* Code blocks */
  .post-content pre {
    background-color: #1e1e1e;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 0.9rem;
    color: #fff;
  }
  
  /* Inline code */
  .post-content code {
    background: #222;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.95rem;
    color: #00ffaa;
  }
  
  /* Lists */
  .post-content ul,
  .post-content ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
  }
  
  /* Blockquote */
  .post-content blockquote {
    border-left: 4px solid #00ffcc;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #aaa;
    font-style: italic;
  }
  
  /* Light Theme */
  body.light .blog-post {
    color: #222;
  }
  
  body.light .blog-post h1 {
    color: #007acc;
  }
  
  body.light .post-date {
    color: #666;
  }
  
  body.light .blog-header-image {
    box-shadow: 0 0 15px rgba(0, 122, 204, 0.15);
  }
  
  body.light .post-content {
    color: #222;
  }
  
  body.light .post-content h2,
  body.light .post-content h3 {
    color: #007acc;
  }
  
  body.light .post-content a {
    color: #007acc;
  }
  body.light .post-content a:hover {
    color: #005fa3;
  }
  
  body.light .post-content pre {
    background-color: #f4f4f4;
    color: #333;
  }
  
  body.light .post-content code {
    background: #eee;
    color: #007acc;
  }
  
  /* Responsive Fixes */
  @media (max-width: 768px) {
    .blog-post h1 {
      font-size: 2rem;
    }
  
    .blog-header-image {
      max-height: 260px;
    }
  }
  