/* blog.css */

/* Make sure we reuse the same color scheme as the rest of the site */
body {
    background-color: #36393f;
    color: #ddd;
    font-family: 'Roboto Slab', serif;
    margin: 0;
    padding: 0;
  }
  
  /* blog index wrapper */
  .blog-index {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  /* Each listed article link on blog index */
  .blog-index article {
    margin-bottom: 40px;
    border-bottom: 1px solid #555;
    padding-bottom: 20px;
  }
  
  .blog-index article h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .blog-index article h2 a {
    color: #ffb300;
    text-decoration: none;
  }
  
  .blog-index article h2 a:hover {
    text-decoration: underline;
  }
  
  .blog-index article p {
    color: #ccc;
    margin-bottom: 0;
  }
  
  /* Single blog post styling */
  .blog-post {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
  }
  
  .blog-post article p {
    margin-bottom: 20px;
  }
  
  .blog-post article p a {
    color: #ffb300;
    text-decoration: none;
  }
  
  .blog-post article p a:hover {
    text-decoration: underline;
  }
  
  /* You can add more if needed, e.g. blockquotes, images, etc. */
  