/* Vollbreite, Ratio 2:1 */
.hndb-hero-wrap { 
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
 }

.hndb-hero-swiper { 
  width:100%;
  aspect-ratio: 16 / 8;
}

.hndb-hero-card   { display:block; position:relative; width:100%; height:100%; color:#fff; text-decoration:none; }

/* Media füllt komplett, Fokus über --fy steuerbar */
.hndb-hero-media, .hndb-hero-img, .hndb-hero-video {
  width:100%; height:100%;
}
.hndb-hero-img, .hndb-hero-video {
  object-fit: cover;
  object-position: 50% var(--fy,50%);
  display:block;
}

/* Overlay */
.hndb-hero-overlay {
  position:absolute; inset:auto 0 0 0;
  padding: clamp(12px, 3vw, 28px);
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
}
.hndb-hero-title { margin:0; font-size: clamp(1.25rem, 3vw, 2.2rem); }

/* Swiper UI */
.hndb-hero-swiper .swiper-button-prev,
.hndb-hero-swiper .swiper-button-next {
  color:#fff; text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hndb-hero-swiper .swiper-pagination-bullet { background:#fff; opacity:.5; }
.hndb-hero-swiper .swiper-pagination-bullet-active { opacity:1; }

/* Zentrierter Titelbereich im unteren Drittel */
.hndb-hero-center {
  position: absolute;
  left: 50%;
  bottom: 8%;                /* etwas höher als ganz unten */
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  width: 90%;                 /* etwas Luft links/rechts */
  pointer-events: none;        /* gesamter Link bleibt klickbar */
}

/* Titel – größer, hell, mit Shadow für Lesbarkeit */
.hndb-hero-title {
/*
  margin: 0 0 .4em 0;
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0,0,0,.6);
*/
  display: inline-block;
  margin: 0;
  padding: 0.7em 3.7em;
  font-size: clamp(1.1rem, 2.8vw, 2rem);
  line-height: 1.15;
  color: #111;                         /* Schwarz, wie gewünscht */
  background: rgba(255,255,255,.68);   /* helle Fläche für Lesbarkeit */
  border-radius: .5rem;
  box-shadow: 0 6px 28px rgba(0,0,0,.25);
}

/* Subtext darunter */
.hndb-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* Overlay unten bleibt für Kontrast */
.hndb-hero-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: clamp(12px, 3vw, 28px);
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0));
  z-index: 2;
}