/* ===============================
   Journal Title Styling
   =============================== */

.pkp_site_name {
    font-size: 2rem;        /* ← CHANGE THIS VALUE IF NEEDED */
    font-weight: 775;
    text-align: left;
}

/* ===============================
   Subtitle Below Journal Title
   =============================== */

.pkp_site_name::after {
    content: "Multidisciplinary | Peer-Reviewed | Open Access | Research Journal";
    display: block;
    font-size: 1rem;
    font-weight: 475;
    color: #DAD919;
    margin-top: 6px;
    text-align: ;
}
/* =====================================================
   IRJIST – Text Justification (Article Page Only)
   Sections: Abstract, Keywords, Author Biography, References, License
   ===================================================== */

/* Abstract */
.obj_article_details .abstract p {
    text-align: justify;
    text-justify: inter-word;
}

/* Keywords */
.obj_article_details .keywords,
.obj_article_details .keywords p,
.obj_article_details .item.keywords {
    text-align: justify;
    text-justify: inter-word;
}

/* Author Biography */
.obj_article_details .author-bio,
.obj_article_details .author-bio p,
.obj_article_details .item.author-bio,
.obj_article_details .authors .biography,
.obj_article_details .authors .biography p {
    text-align: justify;
    text-justify: inter-word;
}

/* References */
.obj_article_details .references p,
.obj_article_details .references li {
    text-align: justify;
    text-justify: inter-word;
}

/* License (CC BY block) */
.obj_article_details .license,
.obj_article_details .license p,
.obj_article_details .item.license {
    text-align: justify;
    text-justify: inter-word;
}

/* Optional: Improve readability for justified text */
.obj_article_details .abstract p,
.obj_article_details .keywords p,
.obj_article_details .author-bio p,
.obj_article_details .authors .biography p,
.obj_article_details .references p,
.obj_article_details .references li,
.obj_article_details .license p {
    line-height: 1.6;
}
/* =====================================================
   IRJIST – FORCE Author Biography Justification (OJS 3.5)
   ===================================================== */

.obj_article_details section.item.author_bios div.value,
.obj_article_details section.item.author_bios div.value p {
    text-align: justify !important;
    text-justify: inter-word;
}
/* =====================================================
   IRJIST – Issue Description Justification
   (Archives → Issue page)
   ===================================================== */

/* Justify issue description text */
.obj_issue_toc .issue_description,
.obj_issue_toc .issue_description p,
.obj_issue_toc p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
}
/* =====================================================
   IRJIST – Archive Page Issue Description Justification
   (Archives → Vol./Issue listing page)
   ===================================================== */

/* Justify issue description text */
.obj_issue_summary .issue_description,
.obj_issue_summary .issue_description p,
.obj_issue_summary p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
}

/* =====================================================
   IRJIST – Call for Papers (Sidebar Custom Page)
   OJS 3.5 Compatible
   ===================================================== */

.pkpb_sidebar .pkp_block ul li a[href*="call-for-papers"] {
    display: block;
    background: #f7f9fc;
    border-left: 4px solid #1e6da8;
    padding: 0.8em 1em;
    font-weight: 600;
    color: #1e6da8;
}

/* Content page styling */
.page_call-for-papers .page_content p {
    text-align: justify;
    line-height: 1.6;
}

