.editorial-board {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.board-title {
  text-align: center;
  background: #1e5ed7;
  color: white;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 25px;
  font-size: 22px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.board-card {
  background: #f9f9f9;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.board-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.board-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.board-card h3 {
  font-size: 16px;
  margin: 5px 0;
}

.role {
  color: #1e5ed7;
  font-weight: bold;
  margin: 5px 0;
}

.affiliation {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.icons {
  margin-top: 10px;
}

.icon {
  display: inline-block;
  background: #1e5ed7;
  color: white;
  padding: 6px 10px;
  border-radius: 50%;
  font-size: 12px;
}

.board-card .role {
  display: none !important;
}

.board-card .role#editor-in-chief {
  display: block !important;
}


/* OVERRIDES */

/* Archives */
.pkp_page_issue.pkp_op_archive .obj_issue_summary .description,
.pkp_page_issue.pkp_op_archive .obj_issue_summary .description p {
    text-align: justify !important;
}

/* Current Issue (Homepage) */
.pkp_page_index .obj_issue_toc .heading .description,
.pkp_page_index .obj_issue_toc .heading .description p {
    text-align: justify !important;
}

.pkp_page_issue .obj_issue_toc .heading .description,
.pkp_page_issue .obj_issue_toc .heading .description p {
    text-align: justify !important;
    line-height: 1.8;
    text-indent: 2em;
}

/* Article Abstract */
.pkp_page_article .item.abstract,
.pkp_page_article .item.abstract p {
    text-align: justify !important;
}

/* How to cite */
.pkp_page_article .item.citation {
  display: none !important;
}

/* FOR HEADER SLIGHTLY TALLER */
.pkp_structure_head {
  min-height: 160px;
  padding-top: 25px 0 !important;
  padding-bottom: 0px !important;
  display: flex;
  align-items: center;
}

.pkp_head_wrapper {
  width: 100%;
}

.pkp_site_name img {
  max-height: 110px;
  width: auto;
}