.hero,
.hero-banner,
.page-hero {
  height: 420px; /* bigger = more visible area */
  min-height: 360px;
  max-height: 480px;

  background-size: cover; /* back to full width */
  background-position: center 35%; /* KEY BALANCE */
  background-repeat: no-repeat;
}

.hero img,
.hero-banner img,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%; /* same alignment */
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.1); /* almost invisible */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero,
  .hero-banner,
  .page-hero {
    height: 260px;
    background-position: center 30%;
  }

  .hero img,
  .hero-banner img,
  .page-hero img {
    object-position: center 30%;
  }
}
