/* =========================
   FJORDIA BANNER (HSKL STYLE)
   Desktop: >= 969px
   Mobile/Tablet: <= 968px
   ========================= */

.banner {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;

  /* weißer Streifen über die volle Seitenbreite,
     obwohl der eigentliche Banner zentriert bleibt */
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

/* Logo oben rechts im weißen Bereich */
.banner-logo {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 5;
  width: clamp(145px, 14vw, 200px);
}

.banner-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bild links */
.hero-image {
  display: block;
  width: 78%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center center;
}

/* Info-Block rechts unten */
.info-block {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36%;
  z-index: 4;
}

/* Blaues Feld */
.blue-box {
  background: #3bd4fd;
  padding: clamp(22px, 2.4vw, 34px);
}

.blue-box p {
  margin: 0;
  color: #000000;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 700;
  line-height: 1.5;
}

.blue-box a {
  color: #000000;
  text-decoration: underline;
  font-weight: 800;
}

.blue-box a:hover,
.blue-box a:focus-visible {
  opacity: 0.72;
}

/* Gelbes Feld */
.yellow-box {
  background: #f3f707;
  padding: clamp(18px, 2vw, 28px) clamp(28px, 3vw, 46px);
  display: inline-block;
  margin-left: 32px;
}

.yellow-box a {
  display: block;
  color: #000000;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: underline;
}

.yellow-box a:hover,
.yellow-box a:focus-visible {
  opacity: 0.72;
}

/* Blaue Linie ausblenden */
.accent-line {
  display: none;
}


/* =====================================================
   MOBILE / TABLET
   Ab 968px und kleiner:
   Bild → blauer Block → gelber Block → Logo
   ===================================================== */

@media (max-width: 968px) {
  .banner {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .hero-image {
    order: 1;
    width: 100%;
    max-height: 360px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
  }

  .info-block {
    order: 2;
    position: static;
    width: 100%;
    z-index: auto;
  }

  .blue-box {
    width: 100%;
    padding: 24px;
  }

  .blue-box p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .yellow-box {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 22px 24px;
    text-align: center;
  }

  .yellow-box a {
    font-size: 1.3rem;
  }

  .banner-logo {
    order: 3;
    position: static;
    width: 150px;
    margin: 28px auto 32px;
  }
}


/* Sehr kleine Handys */
@media (max-width: 520px) {
  .hero-image {
    max-height: 300px;
    object-position: center top;
  }

  .blue-box {
    padding: 20px;
  }

  .blue-box p {
    font-size: 0.95rem;
  }

  .yellow-box {
    padding: 20px;
  }

  .yellow-box a {
    font-size: 1.2rem;
  }

  .banner-logo {
    width: 135px;
  }
}