/* ==========================================================================
   KOBIL — Resources/Case Studies — Sektion: Hero (Figma 3984:29140 + Seitenkopf)
   Eyebrow "CASE STUDIES" (blau) + H1 links, kurzer Beschreibungstext rechts,
   beides unten buendig. Liegt direkt auf dem Seitenhintergrund (#F5F7FC).
   Der zarte blaue Verlaufs-Wash (Figma-Vector 3984:29137, feGaussianBlur 150)
   ist als WebP gebacken (Frame-Ausschnitt x40–1400 / y120–582) und laeuft
   140px unter die Sektion — die weisse Browser-Karte deckt ihn nahtlos ab.
   ========================================================================== */

.sec-case-studies-hero {
  position: relative;
  isolation: isolate;
  /* Header endet bei y120, Eyebrow beginnt bei y273 → 153px; unten 28px
     + 20px Section-Gap = 48px Abstand zur Browser-Karte (Figma y462) */
  padding: 153px 60px 28px;
}

/* ---- Gebackener Verlaufs-Wash ---- */

.csh__wash {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 462px;
  z-index: -1;
  pointer-events: none;
}

.csh__wash img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

/* ---- Zweispaltiger Kopf: Eyebrow + H1 links, Lead rechts ---- */

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

.csh__heading {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
}

.csh__eyebrow {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--blue);
}

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

.csh__lead {
  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: 1200px) {
  .csh__lead {
    flex: 0 1 auto;
    min-width: 280px;
  }
}

@media (max-width: 900px) {
  .sec-case-studies-hero {
    padding: 96px 24px 24px;
  }

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

  .csh__lead {
    width: auto;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .sec-case-studies-hero {
    padding: 64px 8px 16px;
  }

  .csh__heading {
    gap: 12px;
  }

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

  .csh__wash {
    height: 360px;
  }
}
