/* == Editor Section & Journal Details == */
.pkp_block .editor-section,
.pkp_block .journal-details {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkp_block .editor-section:hover,
.pkp_block .journal-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.pkp_block .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #bbdefb;
    display: flex;
    align-items: center;
}

.pkp_block .section-title .fa {
    color: #1976d2;
    margin-right: 0.8rem;
    font-size: 1.4rem;
}

/* Subtitles */
.pkp_block .editor-section h5 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.pkp_block .editor-section h5 .fa {
    color: #555;
    margin-right: 0.5rem;
}

/* Lists */
.pkp_block .editor-section ul {
    padding-left: 0.5rem;
    list-style: none;
}

.pkp_block .editor-section ul li {
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 0.95rem;
}

.pkp_block .editor-section ul .fa-map-pin {
    color: #ef5350;
    margin-right: 0.6rem;
}

/* Editor Profile Cards */
.pkp_block .editor-profile {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1976d2;
    margin-bottom: 1.2rem;
}

.pkp_block .editor-profile.member {
    border-left-color: #ffca28;
}

.pkp_block .editor-profile .name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 0.25rem;
}

.pkp_block .editor-profile .role {
    font-size: 0.9rem;
    font-weight: 500;
    color: #424242;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.pkp_block .editor-profile .qualification,
.pkp_block .editor-profile .affiliation {
    font-size: 0.9rem;
    color: #757575;
    line-height: 1.5;
}

.pkp_block .editor-profile .fa {
    margin-right: 0.4rem;
}

/* Journal Details */
.pkp_block .journal-details p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pkp_block .journal-details p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pkp_block .journal-details .fa {
    width: 25px;
    color: #1976d2;
    margin-right: 0.8rem;
    text-align: center;
}

.pkp_block .journal-details a {
    font-weight: 500;
    color: #0d47a1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pkp_block .journal-details a:hover {
    color: #d32f2f;
    text-decoration: underline;
}

/* Hide Affiliation in Author Bios */
.obj_article_details .author_bios .affiliation {
    display: none;
}

/* Remove default list styling */
.list-unstyled {
    list-style: none;
    padding-left: 0;
}

/* == Language Box Styling == */
.pkp_lang_menu {
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
}

.pkp_lang_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

html[dir="rtl"] .pkp_lang_menu ul {
    flex-direction: row-reverse; /* RTL support */
}

.pkp_lang_menu ul li {
    cursor: pointer;
    padding: 3px 8px;
    transition: background-color 0.3s;
}

.pkp_lang_menu ul li:hover {
    background-color: #ddd;
    border-radius: 3px;
}
