/*
 * LOGO & HEADER
 * Stiluri pentru logo și header-ul paginilor
 */

.logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
  flex-wrap: wrap-reverse;
}

.logo-wrapper.centered {
  justify-content: center;
}

.logo {
  display: block;
  max-width: 320px;
  height: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
  min-width: 200px;
  flex-shrink: 0;
}

.logo.small {
  max-width: 150px;
}

@media (max-width: 768px) {
  .logo-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  h1 {
    white-space: normal;
  }
}
