/* Sidebar box style */
.pkp_block {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Sidebar header */
.pkp_block .title {
    background: linear-gradient(to right, #2e7d6b, #4caf50);
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}

/* Sidebar content */
.pkp_block .content {
    padding: 12px;
    background-color: #ffffff;
}

/* Editorial page styling */
.page_editorial .card,
.page_editorial .pkp_block {
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}



/* Editorial card style */
.page_editorial .editorial_team_member {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Name styling */
.page_editorial .editorial_team_member h4 {
    margin: 0;
    color: #2e7d6b;
    font-size: 16px;
}

/* Affiliation text */
.page_editorial .editorial_team_member p {
    margin: 5px 0;
    font-size: 14px;
}

/* Editorial card with image */
.editor-card {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Image styling */
.editor-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Text area */
.editor-info {
    flex: 1;
}

/* Name */
.editor-info strong {
    color: #2e7d6b;
    font-size: 16px;
}