	body {
      
    }

    .blog-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .blog-tile {
      flex: 1 1 calc(33.333% - 20px); /* 3 tiles per row */
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      min-width: 280px;
    }

    .blog-tile img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-tile-content {
      padding: 16px;
    }

    .blog-tile h2 {
      margin: 0 0 10px;
      font-size: 18px;
    }

    .blog-tile p {
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
    }

    .blog-tile a {
      text-decoration: none;
      color: #007BFF;
      font-weight: bold;
    }

    /* Responsive layout for small screens */
    @media (max-width: 768px) {
      .blog-tile {
        flex: 1 1 calc(50% - 20px);
      }
    }

    @media (max-width: 500px) {
      .blog-tile {
        flex: 1 1 100%;
      }
    }