.site-hero--inner {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  background-image: url('/themes/custom/bisbat/images/hero-default.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-hero__overlay {
  width: 100%;
  padding: 3.5rem 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.20)
  );
}

.site-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

@media (max-width: 768px) {
  .site-hero--inner {
    min-height: 160px;
  }

  .site-hero__overlay {
    padding: 2rem 0;
  }
}