/*
  Verbindlicher globaler Schutz gegen Worttrennungen.
  Neue Datei und neuer Dateiname verhindern das Laden alter Browser-Caches.
*/
html *,
html *::before,
html *::after {
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

/* Kartenüberschriften bleiben grundsätzlich in einer vollständigen Zeile. */
.level-offer-grid .offer-card h2 {
  white-space: nowrap !important;
  font-size: clamp(1.05rem, 1.38vw, 1.45rem) !important;
  letter-spacing: -0.025em;
}

/* Lange Überschriften dürfen nur an Leerzeichen umbrechen und bleiben so in der Box. */
.info-card h2 {
  white-space: normal !important;
  font-size: clamp(1rem, 1.45vw, 1.35rem) !important;
  letter-spacing: -0.025em;
}

@media (max-width: 1100px) {
  .level-offer-grid .offer-card h2 {
    font-size: clamp(1.25rem, 3vw, 1.7rem) !important;
  }
}

@media (max-width: 560px) {
  .level-offer-grid .offer-card h2,
  .info-card h2 {
    font-size: clamp(1rem, 5.2vw, 1.35rem) !important;
  }
}
