    .post-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
      gap: 20px;
    }
    .post-grid .post-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      margin-bottom: 5px;
    }
    .post-grid .post-item .post-thumb {
      background-size: cover;
      background-position: center;
      height: 400px;
      display: flex;
      align-items: flex-end;
      position: relative;
      transition: transform 0.3s ease;
    }
    .post-item .post-thumb:after {
        content: "";
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .2);
        opacity: 0;
        transition: all .6s ease-out;
    }
    .post-item:hover .post-thumb:after {
        opacity: 1;
    }
    .post-item .post-overlay {
        width: 100%;
        position: absolute;
        z-index: 4;
        left: 0;
        bottom: -20px;
        transition: all .4s ease-out;
        padding: 70px 30px 40px;
        background: url(https://www.mubin-ul-haider.com.au/wp-content/uploads/2025/09/blog_masonry_tile_gradient.png) top left repeat-x;
    }
    .post-item:hover .post-overlay {
        padding-bottom: 70px;
    }

    .post-item .post-meta {
      font-size: 14px;
      margin-bottom: 2px;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      color: #ffffffd9;
    }
    .post-item .post-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
        opacity: 0.9;
        color: #ffffffd9;
    }
    .post-item .post-meta span span{
        border-bottom: 1px dotted #ffffffb3;
    }

    .post-item .post-title a {
      font-size: 25px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
    }
    .post-item .post-title {
        line-height: 33px;
    }
    .post-item .post-title:after {
        content: "";
        display: block;
        height: 3px;
        margin-top: 10px;
        width: 0;
        transition: all .4s ease-out;
        background: #ffffffb3;
    }
    .post-item:hover .post-title:after {
        width: 40%;
    }

    @media only screen and (max-width: 767px){
      .post-grid {
        display: block!important; 
      }
      .post-item {
        width: 100%!important; 
        margin-bottom: 15px!important;
      }
      .post-item .post-title a {
        font-size: 20px!important;
      }
      .post-item .post-title {
        line-height: 26px!important;
      }
    }