/* ── Full-width cinematic image strip ── */
.img-strip {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-strip-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.img-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 36, 71, 0.92) 0%,
    rgba(37, 99, 168, 0.78) 60%,
    rgba(232, 120, 9, 0.3) 100%
  );
}

.img-strip-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 5%;
  max-width: 820px;
}

.img-strip-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 2.85rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.38;
  margin-top: 1rem;
}

.img-strip-headline em {
  color: var(--orange-light);
  font-style: normal;
}

@media (max-width: 640px) {
  .img-strip { height: 300px; }
}
