/* Blog post list styles */
.posts {
    margin-top: 2rem;
  }
  
  .post {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
  }
  
  .post:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  .post-title {
    margin-bottom: 1rem;
  }
  
  .post-title-link {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .post-title-link:hover {
    color: #2779bd;
  }
  
  .post p {
    color: #4a5568;
    margin-bottom: 1rem;
  }
  
  .read-more {
    text-align: right;
  }
  
  .read-more a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .read-more a:hover {
    color: #2779bd;
  }