/* 1. Align the uploaded Left Logo and the injected Text side-by-side */
.pkp_site_name .is_img {
    display: flex;
    align-items: center;
    text-decoration: none; 
}

/* 2. Inject your specific Journal Name after the Left Logo */
.pkp_site_name .is_img::after {
    content: "Arid Journal of Management and Social Sciences (AJMSS)";
    font-size: 22px; 
    font-weight: bold;
    color: white;
    margin-left: 20px; 
    white-space: normal; 
    line-height: 1.2;
}

/* 3. Align the entire block (Left Logo + Text + Right Logo) */
.pkp_site_name {
    display: flex;
    align-items: center;
}

/* 4. Inject the ums.jpg Right Logo using your Publisher Library link */
.pkp_site_name::after {
    content: "";
    display: block;
    width: 80px; 
    height: 80px; 
    background-image: url('https://ajms.uaar.edu.pk/index.php/ajmss/libraryFiles/downloadPublic/1'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 20px; 
}