/* 💡 Tablet-Ansicht (bis 991px) */
@media (max-width: 991px) {
  html body .theme-default .nivo-caption .cs-captionWrapper {
    max-width: 50%;       /* etwas breiter */
    padding: 1.5em;
    top: auto;
    margin: 0 auto;
    float: none;
    align-items: center;
    text-align: center;
  }
}

/* 💡 Mobile Ansicht (bis 600px) */
@media (max-width: 600px) {
  html body .theme-default .nivo-caption .cs-captionWrapper {
    max-width: 90%;
    width: 90%;
    background: rgba(255, 255, 255, 0.85);  /* mehr Deckkraft, bessere Lesbarkeit */
    padding: 1em;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    border: 0;                              /* gelber Rand entfernen */
    box-shadow: none;
  }
  .cs-sliderHeader {
    font-size: 18px;        /* kleinere Schrift */
  }
  .cs-sliderContent {
    font-size: 14px;
  }
  .cs-sliderButton {
    width: 160px;
    padding: 8px;
    font-size: 0.9rem;
  }
}











<style>
  /* Container macht Tabelle scrollbar auf kleineren Screens */
  .responsive-table-container {
    width: 100%;
    overflow-x: auto;
  }

  /* Tabelle selbst */
  table.responsive {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  /* Zellen */
  table.responsive td {
    text-align: center;
    vertical-align: middle;
    padding: 1rem;
    box-sizing: border-box;
  }

  /* Bilder skalieren */
  table.responsive img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Headline-Stile */
  table.responsive h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    word-wrap: break-word;
  }

  /* Mobilansicht */
  @media (max-width: 768px) {
    table.responsive,
    table.responsive tbody,
    table.responsive tr,
    table.responsive td {
      display: block;
      width: 100% !important;
    }

    table.responsive tr {
      margin-bottom: 1.5rem;
      border-bottom: 1px solid #ccc;
    }

    table.responsive td {
      min-height: auto !important;
    }
  }
</style>