/* --- Layout-Grundstruktur --- */
.vc_row {
  display: flex;
  align-items: flex-start;
}

/* --- Linke Spalte sticky --- */
.left-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px; /* Abstand zum oberen Rand */
  align-self: flex-start;
  height: fit-content;
  padding-right: 40px;
}

/* --- Rechte Spalte scrollbar --- */
.right-scroll {
  overflow-y: auto;
  max-height: 100vh;
  padding-right: 10px;
}

/* Optional: sanfter Scroll-Effekt */
html {
  scroll-behavior: smooth;
}

/* Mobile Optimierung */
@media (max-width: 991px) {
  .vc_row {
    display: block;
  }
  .left-sticky,
  .right-scroll {
    position: relative !important;
    max-height: none;
    
}