/* H3-Antenne Jumbo: Hintergrundtextfeld komplett transparent + 5:2 Verhältnis */

/* Hintergrundgradient und Box entfernen */
.hero-jumbo .hero-gradient {
  display: none !important;
}

.hero-jumbo .hero-title-box,
.hero-jumbo .hero-title-box * {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Jumbo-Bild auf allen Ansichten im Verhältnis 5:2 (breiter als hoch) */
.db-hero-jumbo .hero-jumbo {
  aspect-ratio: 5 / 2 !important;
  height: auto !important;
  min-height: 0 !important;
  width: 100% !important;
}

/* Titel und Untertitel im Jumbo für bessere Lesbarkeit */
.hero-jumbo .hero-inner {
  padding: 0 1.25rem;
}

.hero-jumbo .hero-title-box h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.1;
}

.hero-jumbo .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  margin-top: 0.75rem;
  padding: 0;
}

/* Mobile Anpassung mit neuem Verhältnis */
@media (max-width: 767px) {
  .hero-jumbo .hero-inner {
    padding: 0 1.25rem 1rem;
  }

  .hero-jumbo .hero-title-box h1 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .hero-jumbo .hero-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-jumbo .hero-inner {
    padding: 0 1.25rem 0.75rem;
  }

  .hero-jumbo .hero-title-box h1 {
    font-size: clamp(1.1rem, 7vw, 1.5rem);
  }

  .hero-jumbo .hero-subtitle {
    font-size: clamp(0.85rem, 4vw, 1.1rem);
    margin-top: 0.4rem;
  }
}
