/* =====================================================
   JTISI Modern UI for OJS 3.5
   Safe CSS - DOES NOT MODIFY HEADER
   Compatible with Default Theme
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  --primary:#0B5ED7;
  --primary-dark:#084298;
  --bg:#f5f7fb;
  --border:#e9eef5;
  --text:#1f2937;
  --muted:#6b7280;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

/* ===== CONTENT ===== */

.page{
  padding-top:24px;
}

.page_index_journal .homepage_about,
.page_index_journal .current_issue,
.page_index_journal .cmp_announcements{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  margin-bottom:24px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}

.page h2{
  color:var(--text);
  font-size:22px;
  font-weight:700;
  margin-bottom:18px;
}

/* ===== CURRENT ISSUE ===== */

.current_issue .cover img,
.current_issue img{
  border-radius:12px;
  box-shadow:0 12px 28px rgba(0,0,0,.15);
}

/* ===== ARTICLES ===== */

.obj_article_summary{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:22px;
  margin-bottom:22px;
  transition:.25s;
  box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.obj_article_summary:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.10);
}

.obj_article_summary .title a{
  color:var(--primary);
  font-size:18px;
  font-weight:500;
  text-decoration:none;
}

.obj_article_summary .title a:hover{
  color:var(--primary-dark);
}

.obj_article_summary .authors,
.obj_article_summary .meta{
  color:var(--muted);
}

/* ===== BUTTON ===== */

.obj_galley_link{
  background:var(--primary)!important;
  color:#fff!important;
  border:none!important;
  border-radius:8px!important;
  padding:10px 18px!important;
  font-weight:600;
}

.obj_galley_link:hover{
  background:var(--primary-dark)!important;
}

/* ===== SIDEBAR ===== */

.pkp_block{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  margin-bottom:24px;
  box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.pkp_block h2{
  margin:0;
  padding:15px 18px;
  background:#4b4e97;
  color:#fff;
  font-size:16px;
}

.pkp_block .content{
  padding:18px;
}

.pkp_block ul{
  list-style:none;
  margin:0;
  padding:0;
}

.pkp_block li{
  border-bottom:1px solid #eef3f7;
}

.pkp_block li:last-child{
  border-bottom:none;
}

.pkp_block a{
  color:#374151;
  text-decoration:none;
  transition:.2s;
}

.pkp_block a:hover{
  color:var(--primary);
  padding-left:6px;
}

/* ===== TABLE ===== */

table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

table th{
  background:#f1f5fb;
}

table th,
table td{
  border:1px solid var(--border);
  padding:12px;
}

/* ===== FOOTER ===== */

.pkp_structure_footer_wrapper{
  background:#1f2937;
  margin-top:60px;
  padding:40px 0;
}

.pkp_structure_footer,
.pkp_structure_footer a{
  color:#fff;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

.page h2{
  font-size:18px;
}

.obj_article_summary{
  padding:18px;
}

}

/* ===== CURRENT ISSUE TYPOGRAPHY ===== */
/* JTISI Modern UI OJS 3.5 - Updated */

.current_issue .current_issue_title,
.current_issue h2,
.current_issue .title{
    font-size:2rem !important;
    line-height:1.15 !important;
    font-weight:700 !important;
    color:#0B5ED7 !important;
    margin-bottom:6px !important;
}

.current_issue .issue_identification,
.current_issue .issue_number,
.current_issue .published,
.current_issue h3{
    font-size:1.15rem !important;
    line-height:1.3 !important;
    color:#666 !important;
    font-weight:600 !important;
    margin-top:0 !important;
    margin-bottom:18px !important;
}

@media (max-width:768px){
.current_issue .current_issue_title,
.current_issue h2,
.current_issue .title{
    font-size:1.6rem !important;
}

.current_issue .issue_identification,
.current_issue .issue_number,
.current_issue .published,
.current_issue h3{
    font-size:1rem !important;
}
}
