.grid-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* المسافة بين المقالات */
    justify-content: center;
  }
  
  .post-entry {
    text-align: center;
    flex: 1 1 280px; /* جعل العرض مرن */
    max-width: 300px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .post-entry:hover {
    transform: translateY(-5px);
  }
  
  .post-entry h2 {
    text-align: center;
    font-size: 1.2em;
    margin-top: 10px;
    color: #333;
  }
  
  