/* Optimierte Privatkunden-Kopf- und Hero-Darstellung */
.private-hero .hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: clamp(30px, 5vw, 68px) !important;
  align-items: center !important;
}

.private-hero .hero-copy { min-width: 0; }
.private-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.3vw, 5.15rem);
}

.private-hero .hero-panel {
  width: 100%;
  align-self: center;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.2);
  border-left: 4px solid var(--lime);
  border-radius: 14px;
  background: #0b2234;
  box-shadow: none;
}

@media (max-width: 760px) {
  .private-hero .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .private-hero .hero-panel { max-width: none; }
}
