/* Container for the site title */
.pkp_site_name .is_text {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: #fcfcfc; /* Change this to match your journal's brand color */
}

/* Injecting the logo before the text */
.pkp_site_name .is_text::before {
    content: "";
    display: inline-block;
    
    /* REPLACE THE URL BELOW WITH YOUR ACTUAL LOGO LINK */
    background-image: url("https://jdsm.khpi.edu.ua/public/journals/36/journalThumbnail_uk_UA.ico");
    
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* Adjust these dimensions to fit your logo's aspect ratio */
    width: 60px; 
    height: 60px;
    
    margin-right: 15px; /* Space between logo and text */
}

/* Optional: Adjust for mobile screens */
@media (max-width: 767px) {
    .pkp_site_name .is_text::before {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .pkp_site_name .is_text {
        font-size: 1.2em;
    }
}