
  .pgf-post-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  .pgf-post {
    width: calc(50% - 20px);
    background: #f5f5f5;
    padding: 24px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    overflow: hidden;

  }
  .pgf-thumb {
    width: 100%;
    height: auto !important;
    border-radius: 16px;
    overflow: hidden;
  }
  .pgf-thumb img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .pgf-meta {
    font-size: 14px;
    color: #262626;
  }
  .pgf-cat{
    background: #173D3D;
    color: #fff;
    padding:7px 10px;
  }
  .pgf-read-time {padding-left: 5px;}
  .pgf-title {
    color:#000000 !important;
    font-size: 32px;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 8px;
  }
  .pgf-excerpt {
  font-size: 20px;
  color: #262626;
  line-height: 160%;
  margin-bottom: 16px;
  }

  .pg-read-more {
    display: flex;
    color: #0E86AC;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 500;
    gap: 8px;
    align-items: center;
  }

    .pg-read-more:hover {
    color: #0E86AC;
    text-decoration: none;
  }
  


  .pgf-excerpt-box{
    padding: 24px 0 0 0 !important;
  }

  .pgf-pagination {
    margin-top: 40px;
    display: flex;
  gap: 16px;
  justify-content: center;
  }
  
  .pgf-page-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #525252 !important;
    border: 1px solid #e5e5e5 !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    cursor: pointer;
    font-size: 12px !important;
    font-weight: 500 !important;
    transition: background 0.3s;
  }
  
  .pgf-page-button:hover {
    background: #0E86AC !important;
    color: #fff !important;
    border: 1px solid #0E86AC !important;
  }
  
  .pgf-page-button.active {
    background: #0E86AC;
    color: #fff !important;
    border: 1px solid #0E86AC !important;
  }
  @media screen and (max-width: 768px) {
     .pgf-post {
    width: calc(100% - 20px) !important;
  } 
  }
  
