/* full poertal text align */
.pkp_structure_main p {
text-align: justify;
}
/* full poertal text align 
.obj_article_details .abstract {
text-align: justify;
}*/
/* full poertal text align 
.obj_article_details .author_bios {
text-align: justify;
}*/
/* full poertal text align
.obj_article_details .references {
text-align: justify;
} */

/* ===== Custom Header (Logo and Title Shifted Left) ===== */
.custom-header {
    background-color: #ffffff; /* White background */
    display: flex; /* Use flexbox layout */
    align-items: center; /* Center vertically */
    padding: 20px 20px; /* Add left and right padding */
    border-bottom: 3px solid #9B1B1F; /* Add a red border at the bottom for contrast */
}

.journal-logo {
    height: 100px; /* Logo size */
    margin-right: 20px; /* Space between logo and title */
}

.journal-info {
    display: flex;
    flex-direction: column; /* Stack title and subtitle vertically */
}

.journal-title {
    color: #9B1B1F; /* Deep red text color */
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 5px 0; /* Remove default margin and add small bottom margin */
    line-height: 1.2;
}

.journal-subtitle {
    color: #666666; /* Gray text color for subtitle */
    font-size: 0.9rem; /* Small font size */
    font-weight: 400; /* Normal font weight */
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-header {
        flex-direction: column; /* Stack vertically on small screens */
        padding: 15px;
        align-items: flex-start; /* Align to the left on mobile */
    }
    
    .journal-logo {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 10px; /* Add space between elements */
        height: 80px; /* Smaller logo on mobile */
    }
    
    .journal-title {
        font-size: 1.8rem; /* Smaller font on mobile */
    }
    
    .journal-subtitle {
        font-size: 0.8rem; /* Even smaller font on mobile */
    }
}