/* ============================================
   HERO – MOBILE FIRST
   ============================================ */

.wer-hero {
  width: 100%;
}

.wer-hero-card {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 260px; /* iOS-Safari Fix */
  overflow: hidden;
}

.wer-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.85);
  pointer-events: none;
  user-select: none;
}

/* Avatar mittig – korrigiert & sichtbar */
.wer-hero-avatar {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

/* ============================================
   TITEL UNTER DEM HERO (NICHT im Bild!)
   ============================================ */

.wer-hero-title-section {
  text-align: center;
  padding: 1.6rem 1rem 0.5rem;
}

.wer-hero-title {
  color: #005ca9;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

/* ============================================
   TABLET
   ============================================ */
@media (min-width: 600px) {
  .wer-hero-card {
    height: 45vh;
  }

  .wer-hero-avatar {
    width: 90px;
    height: 90px;
  }

  .wer-hero-title {
    font-size: 2rem;
  }
}

/* ============================================
   DESKTOP
   ============================================ */
@media (min-width: 900px) {
  .wer-hero-card {
    height: 50vh;
  }

  .wer-hero-avatar {
    width: 110px;
    height: 110px;
  }

  .wer-hero-title {
    font-size: 2.3rem;
  }
}
