/* 💡 Tablet-Ansicht (bis 991px) */
@media (max-width: 991px) {
  /* Swiper-Migration: Box vom .cs-captionWrapper auf die Caption umgezogen, Ausrichtung mitte */

  html body .theme-default .swiper-slide-caption {max-width: 50%;/* etwas breiter */
    padding: 1.5em;align-items: center;text-align: center; width: auto; height: auto; top: 50%; bottom: auto; transform: translateY(-50%); left: 0; right: 0; margin-left: auto; margin-right: auto; pointer-events: auto;}
}

/* 💡 Mobile Ansicht (bis 600px) */
@media (max-width: 600px) {
  /* Swiper-Migration: Box vom .cs-captionWrapper auf die Caption umgezogen, Ausrichtung mitte */

  html body .theme-default .swiper-slide-caption {max-width: 90%;width: 90%;background: rgba(255, 255, 255, 0.85);/* mehr Deckkraft, bessere Lesbarkeit */
    padding: 1em;border: 0;/* gelber Rand entfernen */
    box-shadow: none; width: auto; height: auto; top: 50%; bottom: auto; transform: translateY(-50%); left: 0; right: 0; margin-left: auto; margin-right: auto; pointer-events: auto;}
  .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>