
 body{
font-size: 15px !important;

}

@media (max-width: 767px) {
    /* Engedi a címek többsoros megjelenítését mobilrajzon */
    .pkpTable .cell--title { 
        white-space: normal !important; 
        overflow: visible !important;
    }
}

/* A vízszintes konténer (Asztali nézetben balra zárt) */
.logo-sor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;             /* ENGEDÉLYEZI az egymás alá ugrást mobilon */
  gap: 16px;                   /* Távolság a dobozok között */
  justify-content: flex-start; /* Balra igazítás asztali gépen */
  margin: 0;
  width: 100%;                 /* Kitölti a szülő konténert a max-content helyett */
}

/* A minimál stílusú, rugalmas kártyák */
.logo-kartyaholy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 200px;             /* Rugalmas: minimum 200px, de ha van hely, növekedhet */
  max-width: 250px;            /* Opcionális: ne engedje túl naggyá nőni nagy monitoron */
  height: 90px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px;
  box-sizing: border-box;      /* Biztosítja, hogy a padding ne növelje a méretet */
}

/* A logóképek méretezése változatlan */
.logo-kartyaholy img {
  max-width: 90%;
  max-height: 45px;
  object-fit: contain;
}

/* KIZÁRÓLAG MOBIL NÉZET: 768px-es vagy annál kisebb kijelzőkön lép életbe */
@media (max-width: 768px) {
  .logo-sor {
    justify-content: center;   /* Mobilon középre igazítja a teljes kártyasort */
  }
}


.pkp_brand_footer a {
 float:none;
 display:block;
 max-width:250px;
 margin-left:auto;
 margin-right:auto
}

.pkp_site_name > a{
margin-bottom:10px;
}

/* pdf gomb */


a.obj_galley_link{
text-align:center;
width:100%;
}

.galleys_links >li{
margin-inline-end:0px !important;
}

.value.galleys_links{
display: block;
}


/* advisory board */


  /* Alap rács és kártya elrendezés */
  .advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
    font-family: sans-serif;
  }
  .member-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  /* Finom lebegő (hover) effektus az egér rávitelekor */
  .member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
  }
  .member-main {
    margin-bottom: 15px;
  }
  .member-name {
    font-size: 1.15rem;
    font-weight: bold;
    color: #1a202c;
    margin: 0 0 6px 0;
  }
  .member-title {
    font-size: 0.9rem;
    font-style: italic;
    color: #4a5568;
    margin: 0 0 8px 0;
    line-height: 1.4;
  }
  .member-institution {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
  }
  .member-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #1a365d;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #edf2f7;
    transition: color 0.2s ease;
  }
  
  /* BELSŐ IKON MEGOLDÁS: A saját szerver Font Awesome-ját használja */
  .member-link::before {
    font-family: "FontAwesome";
    content: "\f007"; /* A szakértő / user ikon belső kódja */
    color: #3182ce;
    margin-right: 8px;
    font-size: 0.95rem;
    font-weight: normal;
  }
  
  /* Kivétel kezelés a hiányzó linkre (piros háromszög) */
  .no-link::before {
    content: "\f071" !important; /* Figyelmeztető háromszög belső kódja */
    color: #e53e3e !important;
  }
  
  .member-card:hover .member-link {
    color: #3182ce;
    text-decoration: underline;
  }



/* Editorial team */


  .editorial-section-title {
    font-family: sans-serif;
    color: #1a365d;
    border-bottom: 2px solid #1a365d;
    padding-bottom: 8px;
    margin: 35px 0 20px 0;
    font-size: 1.5rem;
    font-weight: bold;
    width: 100%;
  }
  .editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px 0 20px 0;
    font-family: sans-serif;
  }
  .staff-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .staff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
  }
  /* Kiemelt dizájn a vezetőségnek */
  .leader-card {
    background: #f8fafc;
    border-left: 4px solid #1a365d;
  }
  /* Kiemelt dizájn a titkárságnak és kiegészítő munkatársaknak */
  .support-card {
    background: #fafafa;
    border-left: 4px solid #718096;
  }
  .staff-name {
    font-size: 1.15rem;
    font-weight: bold;
    color: #1a202c;
    margin: 0 0 6px 0;
  }
  .staff-role {
    font-size: 0.9rem;
    font-style: italic;
    color: #4a5568;
    margin: 0 0 8px 0;
    line-height: 1.4;
  }
  .staff-institution {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
  }


/* Author guideline */

   details {
        margin-bottom: 12px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: #f9f9f9;
        transition: background-color 0.2s ease;
    }
    details summary {
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        outline: none;
        user-select: none;
    }
    details[open] {
        background-color: #fff;
    }
    details[open] summary {
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
        padding-bottom: 5px;
    }
    details ul, details p {
        margin-top: 5px;
        margin-bottom: 5px;
    }

/* menu */

#navigationPrimary > li > a {
  padding-bottom: 10px !important; 
  border-bottom-width: 0px !important;
}
