.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .blog-card {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    align-items: flex-start;
    background-color: #fff;
  }
  
  .blog-image {
    width: 120px;
    height: 120px;
    background-color: #f7f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    margin-right: 16px;
  }
  
  .blog-image img {
    max-width: 80px;
    max-height: 80px;
  }
  
  .blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .blog-title {
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .blog-text {
    margin-bottom: auto;
  }
  
  .read-more {
    align-self: flex-end;
    text-decoration: none;
    color: #007bff;
  }
  