  body {
      /* font-family: 'Segoe UI', sans-serif; */
      margin: 0;
      padding: 0;
      background: #f4f4f4;
    }
.button-wrapper {
  text-align: center; /* centers inline or inline-block elements */
  margin-top: 20px;   /* optional spacing */
}
    .blog-section {
      max-width: 1000px;
      margin: 50px auto;
      padding: 20px;
      background: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .blog-section h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2em;
      color: #333;
    }

    .blog-posts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      direction: rtl;
      text-align: justify;    
      font-family: myFont2;
    }

    .post {
      background: #fafafa;
      border: 1px solid #ddd;
      padding: 15px;
      border-radius: 8px;
      transition: box-shadow 0.3s ease;
	  cursor: pointer;
    }

    .post:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .post h3 {
      margin-top: 0;
      color: #0077cc;
      /* font-size: 1.1em; */
      font-family: myFont2;

    }

    .post p {
      color: #555;
    }

    .load-more {
      display: block;
      margin: 30px auto 0;
      padding: 10px 20px;
      font-size: 1em;
      background: #0077cc;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .load-more:hover {
      background: #005fa3;
    }
