/* =====================================================
   ISLAMICATE INSTITUTE JOURNAL PORTAL
   Simple 3 Column Journal Cards
   OJS 3.3.0.8
====================================================== */

/* Page Width */

.page_index_site{
    max-width:1400px;
    margin:0 auto;
    padding:0px 0px;
}

/* Section Title */

.page_index_site .journals h2{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#1E4691;
    margin-bottom:40px;
}

/* 3 Column Grid */

.page_index_site .journals > ul{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

/* Card */

.page_index_site .journals > ul > li{

    min-height:560px;

    display:flex;

    flex-direction:column;

}

.page_index_site .body{

    flex:1;

    display:flex;

    flex-direction:column;

}

.page_index_site .links{

    margin-top:auto;

}

/* Cover */

.page_index_site .thumb{

    background:#f8f9fb;

    padding:25px;

    text-align:center;

    border-bottom:1px solid #edf2f7;

}

.page_index_site .thumb img{

    width:160px;

    max-width:100%;

    height:auto;

}

/* Body */

.page_index_site .body{

    padding:20px;

    display:flex;

    flex-direction:column;

    flex:1;

}

/* Journal Title */

.page_index_site .body h3{

    font-size:18px;

    text-align:left;

    margin-bottom:15px;

    line-height:1.2;

}

.page_index_site .body h3 a{

    color:#1E4691;

    text-decoration:none;

}

/* Description */

.page_index_site .description{

    overflow:hidden;

    display:-webkit-box;

    -webkit-box-orient:vertical;

    -webkit-line-clamp:4;

    line-height:1.7;

    min-height:95px;

}

/* Buttons */

.page_index_site .links{

    display:flex;

    justify-content:center;

    gap:10px;

    list-style:none;

    padding:0;

    margin:0;

}

.page_index_site .links li{

    margin:0;

}

.page_index_site .links a{

    display:inline-block;

    background:#1E4691;

    color:#ffffff;

    padding:10px 16px;

    border-radius:6px;

    font-size:14px;

    font-weight:600;

    text-decoration:none;

}

.page_index_site .links .current a{

    background:#2F80ED;

}

/* Remove bullets */

.page_index_site ul{

    list-style:none;

}

/* additional rules */
 .pkp_page_index .journals .thumb {
    float:left;
    width:100%;
    padding-right:1.43rem
  }

/* ==========================================
   JOES Style Typography
========================================== */

.page_index_site,
.page_index_site *{
    font-family: "Noto Sans", Helvetica, Arial, sans-serif !important;
}

/* Hide Journal Description */

.page_index_site .description{
    display:none !important;
}

/* Remove empty spacing */

.page_index_site .body{
    padding-bottom:20px;
}

/* Improve Journal Title */

.page_index_site .body h3{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:20px;
}

.page_index_site .body h3 a{
    color:#1E4691;
    text-decoration:none;
}

.page_index_site .body h3 a:hover{
    color:#16356f;
}

/* White clean cards */

.page_index_site .journals > ul > li{
    background:#fff;
/*border:1px solid #e8edf5;*/
/*border-radius:8px;*/
    overflow:hidden;
    min-height:430px;
}

/* Smaller cover spacing */

.page_index_site .thumb{
    padding:20px;
    background:#fff;
}

/* Logo size */

.page_index_site .thumb img{
    width:150px;
}

/* Button */

.page_index_site .links a{
    background:#1E4691;
    border-radius:4px;
    padding:10px 18px;
    font-weight:600;
}

/* Responsive */

@media (max-width:991px){

.page_index_site .journals > ul{

grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:768px){

.page_index_site .journals > ul{

grid-template-columns:1fr;

}

.page_index_site .thumb img{

width:230px;

}

.page_index_site .body{

padding:18px;

}

}

