
.pkp_page_content p,
.page p,
.obj_article_summary p,
.article-details p,
.abstract p,
#main-content p {
    text-align: justify;
    text-justify: inter-word;
}

.editorial-wrapper{
    max-width:1400px;
    margin:40px auto;
    padding:20px;
    font-family:'Segoe UI',Tahoma,sans-serif;
    color:#2d3748;
}

.editorial-header{
    text-align:center;
    margin-bottom:40px;
}

.editorial-header h1{
    font-size:40px;
    color:#16324f;
    margin-bottom:10px;
    font-weight:700;
}

.editorial-header p{
    color:#6b7280;
    max-width:800px;
    margin:auto;
    font-size:16px;
}

.section-title{
    font-size:28px;
    color:#0f4c81;
    margin:45px 0 25px;
    border-left:6px solid #0f4c81;
    padding-left:15px;
    font-weight:700;
}

.editorial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:30px;
}

.editor-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    border:1px solid #edf2f7;
}

.editor-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.editor-image{
    background:#f8fafc;
    height:340px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
}

.editor-image img{
    width:100%;
    height:100%;
    object-fit:contain; /* FULL IMAGE VISIBLE */
}

.editor-content{
    padding:26px;
}

.role-badge{
    display:inline-block;
    background:#eaf4ff;
    color:#0f4c81;
    font-size:13px;
    font-weight:700;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:14px;
}

.editor-name{
    font-size:24px;
    color:#1a202c;
    margin:0;
    font-weight:700;
}

.editor-title{
    margin:10px 0;
    color:#4a5568;
    line-height:1.7;
    font-size:15px;
}

.editor-info{
    margin-top:18px;
    font-size:14px;
    line-height:1.9;
    color:#4b5563;
}

.editor-buttons{
    margin-top:20px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.editor-buttons a{
    text-decoration:none;
    padding:10px 16px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.btn-orcid{
    background:#d9f99d;
    color:#365314;
}

.btn-cv{
    background:#dbeafe;
    color:#1d4ed8;
}

.btn-scholar{
    background:#ede9fe;
    color:#6d28d9;
}

.editor-buttons a:hover{
    opacity:.85;
}

.contact-box{
    margin-top:18px;
    padding-top:18px;
    border-top:1px solid #e5e7eb;
    font-size:14px;
    line-height:2;
}

.contact-box strong{
    color:#111827;
}

@media(max-width:768px){
    .editorial-header h1{
        font-size:30px;
    }

    .editor-image{
        height:280px;
    }
}

