/* custom.css appeared in OJS 3.5 as styleSheet.css */

/* 1. Base setup to match H1 styling (32px) */
.page_index_journal .homepage_about h2 {
    visibility: hidden;
    position: relative;
    /* Visual H1 styling */
    font-size: 32px;         /* Standard OJS H1 size */
    font-weight: 700;      /* Bold weight used in OJS themes */
    line-height: 1.2;
    margin-bottom: 20px;   /* Standard spacing below a main title */
    display: block;
}

/* 2. Add English "Welcome" */
.page_index_journal .homepage_about h2:lang(en):after {
    content: 'Welcome';
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
}

/* 3. Add Portuguese "Bem-vindo" */
.page_index_journal .homepage_about h2:lang(pt):after {
    content: 'Bem-vindo';
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
}

  .masthead-container {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 850px;
    margin-bottom: 30px;
  }
  .role-section {
    margin-bottom: 35px;
  }
  .role-header {
    font-size: 1.5rem; 
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #ddd;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .person-entry {
    margin-bottom: 20px;
    padding-left: 5px;
  }
  .person-name {
    font-size: 1.25rem; 
    font-weight: 600;
    color: #000;
    display: inline-block;
  }
  .affiliation {
    font-size: 1.05rem;
    color: #003486;
    display: block;
    margin-top: 3px;
  }
  .location-tag {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    display: block;
    margin-top: 1px;
  }
  .orcid-icon {
    vertical-align: middle;
    margin-left: 8px;
    width: 24px;
    height: 24px;
  }
  /* Editorial History Link Styling */
  .history-section {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
  }
  .history-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f5f5f5;
    color: #007ab2;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
  }
  .history-link:hover {
    background-color: #e9e9e9;
    text-decoration: underline;
  }