.pkp_brand_footer img {
  background: url(https://jrist.org/public/journals/1/JRIST_Logo.webp) no-repeat;
  background-size: 150px 150px; /* Resize background image */
  width: 150px;                /* Container width */
  height: 150px;               /* Container height */
  content-visibility: hidden;
  max-width: unset;
}

.blog-post{
    display:flex;
    gap:20px;
    align-items:flex-start;
    margin-bottom:30px;
}

.blog-image img{
    width:300px;
    height:200px;
    border-radius:8px;
    object-fit:cover;
}

.blog-content{
    flex:1;
    text-align:justify;
}

.pagination{
    display:flex;
    justify-content:center;
    gap:8px;
    margin:30px 0;
    flex-wrap:wrap;
}

.pagination button{
    padding:8px 15px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    border-radius:4px;
}

.pagination button:hover{
    background:#f2f2f2;
}

.pagination button.active{
    background:#0066cc;
    color:#fff;
    border-color:#0066cc;
}

.blog-post{
    margin-bottom:25px;
}