/* ==========================================================
   FACULTY OF LAW UNPATTI OJS CUSTOM CSS
   ========================================================== */


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

.pkp_structure_sidebar .pkp_block {
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.pkp_structure_sidebar .pkp_block .title {
    margin: 0;
    padding: 12px 16px;
    background: #012b44;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.pkp_structure_sidebar .pkp_block .content {
    margin: 0;
    padding: 0;
}

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

.pkp_structure_sidebar .pkp_block li {
    margin: 0;
    border-bottom: 1px solid #edf2f7;
}

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

.pkp_structure_sidebar .pkp_block li a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #2d3748;
    text-decoration: none;
    font-size: .95rem;
    line-height: 1.45;
    transition: all .2s ease;
}

.pkp_structure_sidebar .pkp_block li a::before {
    content: "›";
    color: #0056b3;
    font-size: 18px;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
}

.pkp_structure_sidebar .pkp_block li a:hover {
    background: #f5f9fc;
    color: #0056b3;
    padding-left: 20px;
}

.pkp_structure_sidebar .pkp_block li.current a,
.pkp_structure_sidebar .pkp_block li a[aria-current="page"] {
    background: #e8f2ff;
    color: #0056b3;
    font-weight: 600;
    border-left: 4px solid #0056b3;
    padding-left: 12px;
}

.pkp_structure_sidebar .pkp_block img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}


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

.pkp_brand_footer {
    display: none !important;
}

footer a,
.pkp_footer_content a {
    text-decoration: none;
    transition: opacity .2s ease;
}

footer a:hover,
.pkp_footer_content a:hover {
    opacity: .75;
}


/* ==========================================================
   ARTICLE META
   ========================================================== */

.article-meta-extra {
    margin-top: 6px;
    font-size: .9rem;
    color: #555;
}

.article-meta-extra a,
.doi a {
    text-decoration: none;
    word-break: break-word;
}

.doi,
.article-id {
    margin-top: 5px;
    font-size: 14px;
}


/* ==========================================================
   CROSSMARK & FUNDING
   ========================================================== */

.item.crossmark {
    margin-top: 12px;
}

.item.funding {
    margin-top: 15px;
}


/* ==========================================================
   DIMENSIONS
   ========================================================== */

.dimensions-badge {
    margin-top: 20px;
}

.dimensions-badge .label {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.dimensions-badge .value {
    display: flex;
    align-items: center;
    margin-top: 10px;
}


/* ==========================================================
   AFFILIATION
   ========================================================== */

.app_affiliation {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


/* ==========================================================
   TOP BAR
   ========================================================== */

.topbarfh {
    position: relative;
    z-index: 9999;
    padding: 8px 0;
    background: #012b44;
    font-size: 13px;
}

.topbarwrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

.topbar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.topbarfh a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity .2s ease;
}

.topbarfh a:hover {
    opacity: .8;
}


/* ==========================================================
   ABSTRACT
   ========================================================== */

.obj_article_details .item.abstract {
    text-align: justify;
    hyphens: auto;
}


/* ==========================================================
   HOMEPAGE
   ========================================================== */

/* Current Issue Cover */

.page_index_journal .current_issue .cover img {
    display: block;
    width: 50%;
    height: auto;
    margin: 0 auto;
}

/* Homepage Image */

.page_index_journal .homepage_image {
    text-align: center;
    margin-bottom: 2rem;
}

.page_index_journal .homepage_image img {
    display: inline-block;
    width: auto;
    max-width: 500px;
    height: auto;
}

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

@media (max-width:768px) {

    .topbarwrap {
        flex-direction: column;
        align-items: flex-start;
    }

}