.ngc-wrap {
    padding: 2rem 0 1.5rem;
    font-family: inherit;
    user-select: none;
    /* Verhindert, dass der Inhalt nach außen bricht */
    overflow: hidden;
  }
  
  /* Gemeinsamer Wrapper */
  .ngc-slider-area {
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Figuren */
  .ngc-figures {
    position: relative;
    /* Feste Höhe für die Bilder-Area */
    height: 100px;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .ngc-figure {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.25s, transform 0.25s;
    opacity: 0.65;
    /* WICHTIG: Begrenzt die Breite des Containers */
    width: 90px;
    height: 100%;
  }
  .ngc-figure.active {
    opacity: 1;
  }
  
  /* Bild-Styling */
  .ngc-figure img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* Track */
  .ngc-track {
    position: relative;
    height: 36px;
    margin-bottom: 2rem;
    cursor: pointer;
    --fig-w: 90px;
    width: 100%;
  }
  .ngc-track-line {
    position: absolute;
    top: 50%;
    left: calc(var(--fig-w) / 2);
    right: calc(var(--fig-w) / 2);
    height: 10px;
    margin-top: -5px;
    background: #C3D2FF;
    border-radius: 50px;
  }
  
  /* Thumb-Styling */
  .ngc-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #0343FF;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
	padding: 5px;
  }
  .ngc-thumb:active {
    cursor: grabbing;
  }
  
  .ngc-thumb img {
    width: auto;
    height: 70%;
    object-fit: contain;
    pointer-events: none;
  }
  
  /* Content */
  .ngc-content {
    text-align: center;
    padding: 0 1rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .ngc-content h2 {
    font-size: 24px;
    font-weight: 700;
	color: #1C1C1C;
    margin: 0 0 0.75rem;
  }
  .ngc-content p {
    font-size: 18px;
    color: #1C1C1C;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto 1.25rem;
  }
  .ngc-btn {
    display: inline-block;
    background: #0343FF;
    color: #fff;
    padding: 11px 30px;
    border-radius: 10px;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.2s;
	border: 1px solid #0343FF;
  }
  .ngc-btn:hover {
    opacity: 0.85;
    color: #0343FF;
	background: #FFF;
    text-decoration: none;
  }