@charset "utf-8";

/* === Impressum-Logo / Visitenkarte === */
.impressum-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px auto 40px;
  text-align: center;
}

/* Logo (responsive + abgerundet) */
.impressum-logo img.impressum-card {
  height: 90px;          /* angenehm klein und harmonisch */
  width: auto;
  border-radius: 14px;   /* weiche Ecken */
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impressum-logo img.impressum-card:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Markenbeschreibung daneben oder darunter */
.impressum-brand {
  font-size: 15px;
  color: #334155;
  line-height: 1.4;
  max-width: 320px;
}
.impressum-brand strong {
  font-size: 18px;
  color: #1e293b;
}

/* Mobile Anpassung – etwas kleiner auf iPhone */
@media (max-width: 600px) {
  .impressum-logo img.impressum-card {
    height: 70px;
    border-radius: 12px;
  }
  .impressum-brand {
    font-size: 14px;
  }
}
