/* Drop-in overrides for logo support (include AFTER styles.css) */

.brand{
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.brand .brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

/* Desktop / Default */
.brand .logo{
  height: clamp(96px, 12vw, 220px);
  width: auto;
  max-width: min(440px, 45vw);
  border: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  display: none;
}

/* Mobile: deutlich kleiner + härtere Bremsen */
@media (max-width: 640px){
  .brand .logo{
    height: 44px;
    max-width: 140px;
  }

  /* optional: damit Text nicht gequetscht wirkt */
  .brand .title{ font-size: 20px; }
  .brand .tagline{ font-size: 13px; }
}
@media (max-width: 640px){
  .main-nav{ display: none; }
}
