/* =========================================
   INDUSTRY BANNER
   Full-bleed image with gradient + text overlay
========================================= */

.industry-banner {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.industry-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.industry-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.30) 50%,
    rgba(0, 0, 0, 0.00) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 32px 24px;
}

.industry-banner__text {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 560px;
}

/* =========================================
   DESKTOP (>= 821px)
========================================= */

@media (min-width: 821px) {
  .industry-banner {
    height: 480px;
  }

  .industry-banner__overlay {
    padding: 48px 64px;
  }

  .industry-banner__text {
    font-size: 26px;
  }
}

/* =========================================
   LARGE DESKTOP (>= 1200px)
========================================= */

@media (min-width: 1200px) {
  .industry-banner {
    height: 520px;
  }

  .industry-banner__text {
    font-size: 30px;
  }
}
