

/* Blog List Styles */
.blog-list {
    padding: 2rem 0;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .blog-list h1 {
    margin-bottom: 2rem;
    width: 100%;
    padding: 20px 0;
  }
  
  .blog-posts {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  
  .blog-post-card {
    width: 100%;
    display: flex;
    flex-direction: row;
    /* border-bottom: 1px solid #ddd; */
    /* background-color: red; */
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 1rem;
  }
  
  .blog-post-card:last-child {
    border-bottom: none;
  }
  
  .blog-post-content {
    flex: 3;
    min-width: 0;
    order: 2;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .blog-post-image {
    flex: 1;
    min-width: 200px;
    max-width: 200px;
    order: 1;
  }
  
  .blog-post-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }
  
  .blog-post-card h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
  }
  
  .blog-post-card h2 a {
    color: #333;
    text-decoration: none;
  }
  
  .blog-post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  
  .blog-post-meta span {
    margin-right: 0.3rem;
  }
  
  .blog-post-summary {
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .read-more {
    display: inline-block;
    color: #3cf;
    font-weight: 500;
    text-decoration: none;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
  
  @media screen and (max-width: 768px) {
    .blog-post-card {
      flex-direction: column;
      margin-bottom: 2rem;
    }
  
    .blog-post-image {
      min-width: 100%;
      max-width: 100%;
      order: 1;
      margin-bottom: 1rem;
    }

    .blog-post-image img {
      height: 200px;
    }
  
    .blog-post-content {
      order: 2;
      padding: 0;
      width: 100%;
    }
  
    .blog-post-link {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  .blog-post-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
    align-items: center;
    /* padding: 2rem 0; */
  }
  
  
  