
/* ===============================
   JOURNAL TITLE + LOGO (DESKTOP)
   =============================== */

.pkp_site_name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin: 0 auto;
}

.pkp_site_name img {
    max-height: 70px;
    width: auto;
}

/* Journal title */
.pkp_site_name a,
.pkp_site_name .is_text,
.pkp_site_name h1 {
    color: #0b2e4f !important; /* lacivert */
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .pkp_site_name {
        flex-direction: column;
        gap: 10px;
    }

    .pkp_site_name img {
        max-height: 55px;
    }

    .pkp_site_name a,
    .pkp_site_name .is_text,
    .pkp_site_name h1 {
        font-size: 1.4rem;
        text-align: center;
        padding: 0 10px;
    }
}
