/**
 * Unified Hero dimensions for service pages.
 * Desktop target: 1900 × 500 px at a 1900 px viewport.
 * Width remains fluid so the section does not create horizontal overflow.
 */
.ehs-unified-service-hero {
  width: 100%;
  box-sizing: border-box;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

@media (min-width: 768px) {
  .ehs-unified-service-hero {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
    overflow: hidden;
  }

  .ehs-unified-service-hero > .container {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .ehs-unified-service-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }
}
