/* ==========================================================================
   KOBIL — Resources/Insights — Sektion: Hero (Figma 3984:29116)
   Seitenkopf direkt auf dem Seitenhintergrund (keine Karte): Eyebrow (blau),
   H1 links (597px), Beschreibung rechts (492px, unten buendig), zarter
   blauer Verlaufs-Wash als gebackenes Bild hinter dem Text.
   ========================================================================== */

.sec-insights-hero {
  position: relative;
  /* 31px unten: Figma-H1-Box ist 103px (2 Zeilen à 50 + 3px Box-Leading) */
  padding: 152px 60px 31px;
}

/* Gebackener Verlaufs-Wash (1440x342, Figma-Vector 3549:29187) — laeuft
   20px in den Seiten-Gap unter dem Hero aus */
.insights-hero__wash {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 20px);
  object-fit: cover;
  pointer-events: none;
}

.insights-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.insights-hero__head {
  max-width: 597px;
}

.insights-hero__eyebrow {
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  color: var(--blue);
}

.insights-hero__title {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0;
  color: var(--navy);
}

.insights-hero__desc {
  flex: 0 0 auto;
  width: 492px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: var(--navy-80);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .sec-insights-hero {
    padding: 96px 40px 24px;
  }

  .insights-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .insights-hero__desc {
    width: auto;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .sec-insights-hero {
    padding: 64px 24px 20px;
  }

  .insights-hero__title {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .sec-insights-hero {
    padding: 48px 16px 16px;
  }

  .insights-hero__title {
    font-size: 28px;
    line-height: 36px;
  }
}
