.cptui-post-list{
  display: flex;
  justify-content: space-between;
  li{
    width: 48%;
  }
}

@media screen and (max-width: 768px){
  .cptui-post-list{
    flex-direction: column;
    gap: 15px;
    li{
      width: 100%;
    }
  }
}