/* sci-journal.com.ua — custom styles
   main.css + custom-logo.css, recovered from the pre-2026 site.
   main.css styles the About block (journal-header / journal-cover / journal-info).
   custom-logo.css enlarges the site logo. */

.journal-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.journal-cover {
    max-width: 350px;
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

.journal-info {
    flex: 1;
    min-width: 250px;
}

@media (max-width: 768px) {
    .journal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .journal-info {
        text-align: left;
    }
}

/* === custom-logo.css === */

/* 📌 Збільшення основного логотипу сайту (індексна сторінка) */
.pkp_site_name .is_img img {
    max-height: 150px !important;
    height: auto !important;
    width: auto !important;
  }
  
  /* Опціонально: для інших тем або на випадок, якщо клас navbar-logo використовується */
  .navbar-logo img,
  .navbar-header .navbar-brand img {
    max-height: 150px !important;
    height: auto !important;
    width: auto !important;
  }
  
  /* Медіа-запит: зменшити для планшетів і мобільних */
  @media (max-width: 991px) {
    .pkp_site_name .is_img img,
    .navbar-logo img,
    .navbar-header .navbar-brand img {
      max-height: 100px !important;
    }
  }
  