/* ===============================
   KURSE SEITE
=============================== */

/* ===============================
   Kurs-Intro Header
=============================== */
.kurs-intro-header {
  text-align: center;
  margin-bottom: 1rem;   /* weniger Abstand zur Karte */
  padding-bottom: 0;
}

/* Standardgröße (Mobile / klein) */
.kurs-intro-title {
  font-size: 2rem;  /* Mobile: gut lesbar */
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.kurs-intro-subtitle {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

/* Desktop: größere Schrift */
@media (min-width: 768px) {
  .kurs-intro-title {
    font-size: 3.5rem;
  }

  .kurs-intro-subtitle {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .kurs-intro-title {
    font-size: 4rem;
  }

  .kurs-intro-subtitle {
    font-size: 1.5rem;
  }
}


/* ===============================
   INFO-KARTE: Intro / Kurs buchen
=============================== */
.kurs-info-card-fullwidth {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin: 0.5rem 0 2rem 0;  /* kompakter Abstand oben, Standard unten */
  padding: 1.5rem 1.5rem;
}

/* ===============================
   Textbereich
=============================== */
.kurs-info-card-fullwidth p.intro-subtitle {
  font-weight: 700;         /* fett */
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.kurs-info-card-fullwidth p.lead {
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;      /* Blocksatz Desktop */
  hyphens: auto;
}

/* ===============================
   Bildbereich
=============================== */
.kurs-info-card-fullwidth img.kurs-button {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 240px;        /* Desktop-Höhe */
  object-fit: contain;
  border-radius: 0.25rem;
}

/* ===============================
   Mobile Optimierung
=============================== */
@media (max-width: 767px) {
  .kurs-info-card-fullwidth {
    padding: 2rem 1.5rem;
  }

  /* Textbereich zentrieren */
  .kurs-info-card-fullwidth p.intro-subtitle,
  .kurs-info-card-fullwidth p.lead {
    text-align: center;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .kurs-info-card-fullwidth p.intro-subtitle {
    font-size: 1.35rem;
  }

  /* Bild volle Breite */
  .kurs-info-card-fullwidth img.kurs-button {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  /* Reihenfolge Text -> Bild -> Hinweis */
  .kurs-info-card-fullwidth .row > .col-12.col-md-7 {
    order: 1;  /* Text zuerst */
  }
  .kurs-info-card-fullwidth .row > .col-12.col-md-5 {
    order: 2;  /* Bild danach */
  }

  /* Abstand zwischen Text und Bild */
  .kurs-info-card-fullwidth .col-12.col-md-5 {
    margin-top: 1.5rem;
  }
}


/* ===============================
   Kurs-Ablauf Infocard
=============================== */

/* volle Breite, wie eine „Section“ */
.kurs-info-card-fullwidth {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin: 2rem 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* innerer Container für lesbare Maximalbreite */
.kurs-info-inner {
  max-width: 1200px; /* optional, damit es auf großen Bildschirmen nicht zu breit wird */
  margin: 0 auto;
}

/* größere Schrift für bessere Lesbarkeit */
.kurs-info-card-fullwidth h2 {
  font-size: 2rem;
  font-weight: 700;
}

.kurs-info-card-fullwidth .kurs-info-text {
  font-size: 1.25rem;
  line-height: 1.6;
}

.kurs-info-card-fullwidth ul li {
  margin-bottom: 0.75rem;
}

.kurs-info-icon {
  width: 24px;       /* Icon-Größe anpassen */
  height: 24px;
  vertical-align: middle; /* vertikal zentriert mit Text */
  margin-right: 0.5rem;   /* Abstand zwischen Icon und Text */
}

/* ===============================
   Kursleitung Info-Karte
=============================== */

.kursleitung-card {
  width: 100%;
  background-color: #9fbbe2;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin: 2rem 0;
  padding: 3rem 1.5rem;
}

.kursleitung-card-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;        /* Überschrift linksbündig */
  margin-bottom: 2rem;
}

.kursleitung-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;     /* Blocksatz */
  hyphens: auto;           /* Silbentrennung für Blocksatz */
  margin-bottom: 1rem;
}

/* Bildbereich */
.kursleitung-card img {
  width: 100%;           /* Bild passt sich Spaltenbreite an */
  max-width: 300px;      /* verhindert zu große Darstellung auf Desktop */
  height: auto;          /* proportional, keine Dehnung */
  object-fit: cover;     /* bleibt quadratisch, nicht verzerrt */
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Mobile Feinschliff */
@media (max-width: 767px) {
  .kursleitung-card {
    padding: 2rem 1.25rem;
  }

  .kursleitung-card p {
    text-align: left;      /* Blocksatz auf Mobile vermeiden */
  }

  /* Optional: Abstand unter dem Bild */
  .kursleitung-card .col-12.col-md-4 {
    margin-bottom: 1.5rem;
  }
}


/* ===============================
   Kurs-Ort Info-Karte (Werkstatt / Zuhause)
=============================== */
.kurs-ort-card {
  width: 100%;
  background-color: #9fbbe2;   /* Blau */
  color: #000;                  /* Text schwarz */
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin: 2rem 0;
  padding: 3rem 1.5rem;
}

.kurs-ort-card-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.kurs-ort-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.kurs-ort-card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Bildbereich */
.kurs-ort-card img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Mobile Optimierung */
@media (max-width: 767px) {
  .kurs-ort-card .row {
    flex-direction: column;
  }

  .kurs-ort-card .col-12.col-md-6 {
    margin-bottom: 1.5rem;
  }

  .kurs-ort-card img {
    max-width: 100%;
    height: auto;
  }
}



/* ===============================
   Sicherheit für kleine Hände Info-Karte
=============================== */

.sicherheit-card {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin: 2rem 0;
  padding: 3rem 1.5rem;
}

.sicherheit-card-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;        /* Überschrift linksbündig */
  margin-bottom: 2rem;
}

.sicherheit-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;     /* Blocksatz */
  hyphens: auto;           /* Silbentrennung für Blocksatz */
  margin-bottom: 1rem;
}

/* Bildbereich */
.sicherheit-card img {
  width: 100%;
  max-width: 300px;       /* verhindert zu große Darstellung auf Desktop */
  height: auto;           /* proportional, nicht verzerrt */
  object-fit: cover;      /* bleibt quadratisch */
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Mobile Feinschliff */
@media (max-width: 767px) {
  .sicherheit-card {
    padding: 2rem 1.25rem;
  }

  .sicherheit-card p {
    text-align: left;      /* Blocksatz auf Mobile vermeiden */
  }

  /* Abstand unter dem Bild */
  .sicherheit-card .col-12.col-md-4 {
    margin-bottom: 1.5rem;
  }
}


/* ==========================================================
   KURSE – PREISE & Klickbare Icons unter den Preis-Karten und Info-Boxen
   ========================================================== */

/* ===============================
   Header (Überschrift + Dauer)
=============================== */
.kurs-preise-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.kurs-preise-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.kurs-preise-header h2 {
  font-size: 5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #222;
  text-align: center;
}

.kurs-dauer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 500;
  color: #555;
  gap: 1rem;
}

.kurs-dauer .dauer-icon {
  width: 50px;
  height: 50px;
}

/* Mobile Header */
@media (max-width: 599px) {
  .kurs-preise-header h2 {
    font-size: 3rem;
  }

  .kurs-dauer {
    font-size: 1.5rem;
  }

  .kurs-dauer .dauer-icon {
    width: 35px;
    height: 35px;
  }
}

/* ===============================
   Kurs-Preise Container
=============================== */
.kurs-preise {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  font-family: inherit;
  padding: 0 3rem 2rem; /* oben 0, horizontal 3rem, unten 2rem */
}

@media (max-width: 599px) {
  .kurs-preise {
    padding: 0 1rem 1rem;
  }
}

/* ===============================
   Kurs-Preise Header (Überschrift + Dauer)
=============================== */
.kurs-preise-header-container {
  margin-bottom: 1rem; /* Abstand unter Header zu den Preis-Karten */
}

.kurs-preise-header h2 {
  margin-bottom: 0.5rem; /* Abstand zwischen Überschrift und Uhr-Icon */
}

.kurs-dauer {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Abstand zwischen Icon und Text */
  font-size: 1rem;
  margin-bottom: 1rem; /* Abstand zu den Preis-Karten */
}

.kurs-dauer .dauer-icon {
  width: 24px;
  height: 24px;
}

/* ===============================
   Preis-Karten Layout
=============================== */
.preis-karten {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .preis-karten {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .preis-karte {
    padding: 2rem;
  }

  .preis-icon img {
    width: 120px;
    height: 120px;
  }

  .info-icon {
    width: 100px;
    height: 100px;
  }

  .preis-gesamt {
    font-size: 1.4rem;
  }
}

/* ===============================
   Einzelne Preis-Karte
=============================== */
.preis-karte {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.preis-icon img {
  width: 95px;
  height: 95px;
  margin-bottom: 0.5rem;
}

.preis-karte h3 {
  margin: 0.5rem 0 1rem;
}

.preis-karte ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.preis-karte li {
  margin-bottom: 0.4rem;
}

.preis-gesamt {
  font-size: 1.2rem;
  font-weight: bold;
}

.teilnehmer-info {
  font-size: 0.9rem;
  color: #555; /* oder passend zu deinen Karten */
  margin: 0.3rem 0;
  font-style: italic;
}

/* ===============================
   Mobile Anpassungen
=============================== */
@media (max-width: 599px) {
  .kurs-preise {
    padding: 0 1rem 1rem;
  }

  .preis-icon img {
    width: 80px;
    height: 80px;
  }
}


/* ===============================
   Beliebt-Badge
=============================== */
.badge {
  position: absolute;
  top: 10px;
  right: -10px;
  background: #28a745;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  box-shadow: 0 3px 7px rgba(0,0,0,0.2);
  transform: rotate(10deg);
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { transform: rotate(10deg) scale(1); }
  50%  { transform: rotate(10deg) scale(1.1); }
  100% { transform: rotate(10deg) scale(1); }
}


/* ===============================
   Info-Boxen Anfahrt und Zahlungsmoeglichkeiten
=============================== */
.info-boxen {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .info-boxen {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-box {
  background: #f5f5f5;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.info-icon {
  width: 80px;
  height: 80px;
}


/* ==========================================================
   KURSE – KLICKBARE BLAUE ICONS
   ========================================================== */

.kurs-icons {
  display: flex;
  justify-content: center;   /* HORIZONTAL zentriert */
  align-items: flex-start;
  flex-wrap: wrap;           /* Zeilenumbruch */
  gap: 2.5rem;

  width: 100%;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* Einzelnes Icon (feste Breite!) */
.kurs-icon-box {
  width: 220px;              /* ENTSCHEIDEND */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

/* Icon Bild */
.kurs-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.kurs-icon-box:hover .kurs-icon {
  transform: scale(1.1);
}

/* Mobil */
@media (max-width: 599px) {
  .kurs-icon-box {
    width: 100%;
  }

  .kurs-icon {
    width: 160px;
    height: 160px;
  }
}








/* ------------------ Kurse Schnittmuster Slideshow ------------------ */


/* ------------------ Wrapper spacing ------------------ */
.slideshow-wrapper {
  width: 100%;
  margin-bottom: 40px;
  padding: 0 10px; /* desktop padding */
  box-sizing: border-box;
}

/* ------------------ Slideshow Text ------------------ */
.slideshow-text {
  text-align: center;
  margin-bottom: 20px;
}

.slideshow-title {
  font-size: 24pt;
  font-weight: bold !important; /* force bold on all screens */
}

.slideshow-description {
  font-size: 14pt;
  line-height: 1.4;
  white-space: normal;
  overflow: visible;
}

/* ------------------ Custom Slideshow Base ------------------ */
.custom-slideshow {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.custom-slideshow .slides {
  position: relative;
}

.custom-slideshow .slide {
  display: none;
  width: 100%;
}

.custom-slideshow .slide.active {
  display: block;
}

/* ------------------ Navigation ------------------ */
.custom-slideshow .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
}

.custom-slideshow .prev { left: 10px; }
.custom-slideshow .next { right: 10px; }

/* ------------------ Dots ------------------ */
.custom-slideshow .dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.custom-slideshow .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s, background 0.3s;
}

.custom-slideshow .dot.active {
  background-color: rgba(255,255,255,0.9);
  transform: scale(1.2);
}

/* ------------------ Images ------------------ */
.custom-slideshow img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ------------------ Row spacing ------------------ */
.slideshow-row-gap {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .slideshow-row-gap {
    margin-top: 2rem;
  }
}

/* ------------------ Mobile-specific fixes ------------------ */
@media (max-width: 767px) {
  /* Ensure nothing overflows viewport */
  .container-fluid,
  .row,
  .slideshow-wrapper,
  .custom-slideshow,
  .slides,
  .slide {
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* Remove horizontal padding from wrapper */
  .slideshow-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  /* Force slideshow titles bold on mobile (extra safety) */
  .slideshow-title {
    font-weight: bold !important;
  }
}






















/* ----------------- Kurse Reviews module ----------------- */
.reviews-module {
  width: 100%;
  margin-bottom: 40px;
  box-sizing: border-box;
  padding: 0 10px;
  font-family: sans-serif;
}


/* ----------------- Bottom section: long reviews ----------------- */
.long-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.review-tile {
  flex: 1 1 calc(33.333% - 13.33px); /* 3 tiles per row with gap */
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-tile img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.review-text {
  padding: 10px;
  font-size: 12pt;
  line-height: 1.4;
}

/* ----------------- Mobile adjustments ----------------- */
@media (max-width: 767px) {
  .review-card.short {
    flex: 0 0 120px;
    height: 150px;
  }

  .long-reviews {
    flex-direction: column;
  }

  .review-tile {
    flex: 1 1 100%;
  }
}



/* ----------------- Top row: short reviews slideshow ----------------- */
.custom-reviews-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custom-reviews-slideshow .slides-container {
  overflow: hidden;
}

.custom-reviews-slideshow .reviews-row {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0;
}

.review-card.short {
  flex: 0 0 65vw;      /* mobile: 1 card visible */
  height: 65vw;
  position: relative;
  overflow: hidden;
}

.review-card.short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* Semi-transparent white gradient */
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.85),  /* more opaque at bottom */
    rgba(255, 255, 255, 0.5)    /* more transparent at top */
  );
  /* Slight blur behind overlay */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  /* Text styling */
  color: #000; /* black text */
  text-shadow: 1px 1px 2px rgba(255,255,255,0.8); /* subtle lift for readability */
  padding: 8px;
  font-size: 11pt;
  line-height: 1.2;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



/* Desktop: show multiple cards per view */
@media (min-width: 768px) {
  .review-card.short {
    flex: 0 0 20vw;   /* ~5 cards per row */
    height: auto;
    aspect-ratio: 1/1;
  }
}

/* Navigation buttons */
.custom-reviews-slideshow .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 8px;
  cursor: pointer;
}

.custom-reviews-slideshow .prev { left: 5px; }
.custom-reviews-slideshow .next { right: 5px; }










/* About Seite – Fotostory Teaser */


.about-story-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.teaser-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; /* zeigt an, dass es klickbar ist */
}

.teaser-item img:hover {
  transform: scale(1.03); /* dezente Vergrößerung */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* leichter Schatten */
}

.teaser-item h3 {
  margin-top: 0.5rem;
}

.teaser-item a.btn {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: #9db9e1; /* Standard-Hintergrund */
  color: #ffffff;             /* Standard-Textfarbe */
  border: 1px solid #9db9e1; /* Rahmen passend zum Hintergrund */
  transition: all 0.3s ease;
}

.teaser-item a.btn:hover {
  background-color: #ffffff;  /* Hintergrund beim Hover */
  color: #9db9e1;             /* Textfarbe beim Hover */
  border-color: #9db9e1;      /* Rahmen bleibt passend */
}


.teaser-item {
  text-align: center; /* Zentriert Text und Buttons */
}








/* ----------------- About Seite Partner Cards ----------------- */

.partner-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.partner-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.partner-card h3 {
  margin: 0.5rem 0;
  font-size: 18pt;
}

.partner-card p {
  font-size: 14pt;
  line-height: 1.4;
  margin: 0;
}

/* ----------------- Mobile adjustments ----------------- */
@media (max-width: 767px) {
  .partner-cards {
    flex-direction: column;
    gap: 20px;
  }

  .partner-card {
    max-width: 90%;
    margin: 0 auto;
  }
}










/* ----------------- Reparatur Before and After Gallery ----------------- */



.before-after-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(650px, 1fr));
  gap: 40px; /* Abstand zwischen den Paaren */
  max-width: 1400px;
  margin: 0 auto;
}

.ba-pair {
  display: flex;
  gap: 20px;
}

.ba-image {
  flex: 1;
  text-align: center;
}

.ba-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.ba-label {
  margin-top: 5px;
  font-weight: bold;
  font-size: 14pt;
}

/* Mobile: Paare untereinander, Bilder pro Paar untereinander */
@media (max-width: 767px) {
  .before-after-gallery {
    grid-template-columns: 1fr; /* ein Paar pro Reihe */
    gap: 30px;
  }

  .ba-pair {
    flex-direction: column;
    gap: 10px;
  }
}
