.single-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}

.single-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 42, 68, 0.3) 0%, rgba(15, 42, 68, 0.7) 100%);
}

@media (max-width: 768px) {
  .single-hero {
    height: 40vh;
    min-height: 300px;
    border-radius: 0 0 30px 30px;
  }
}
