/* STREAMLINE RESPONSIVE IMAGE SCALING FIX 2026-08-18 */

/* Baseline guard: images should not overflow their content column. */
img {
  max-width: 100%;
}

/* Header logo guard. Prevent the logo slot from being hijacked by gallery/job photos. */
header img[src*="streamline-logo"],
.site-header img[src*="streamline-logo"],
.navbar img[src*="streamline-logo"],
.brand img[src*="streamline-logo"],
a[href="/"] img[src*="streamline-logo"] {
  display: block !important;
  width: auto !important;
  max-width: 220px !important;
  height: auto !important;
  max-height: 84px !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* Company Presence / office image guard.
   The office lobby image was reported cut off on some desktop screens.
   Use contain instead of cover so the full photo stays visible. */
img[src*="streamline-company-presence-office-lobby"],
img[src*="company-presence-office"],
img[src*="office-lobby"],
img[src*="streamline-headquarters"],
img[alt*="office lobby" i],
img[alt*="headquarters" i],
img[alt*="Midland" i] {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #07111f;
}

/* If the office image is wrapped in a fixed-ratio media box, let it breathe. */
.company-presence img[src*="streamline-company-presence-office-lobby"],
.company-presence img[src*="streamline-headquarters"],
.presence img[src*="streamline-company-presence-office-lobby"],
.presence img[src*="streamline-headquarters"],
[data-section*="presence" i] img,
section img[src*="streamline-company-presence-office-lobby"],
section img[src*="streamline-headquarters"] {
  aspect-ratio: auto !important;
}

/* Desktop-specific protection for the Company Presence image. */
@media (min-width: 900px) {
  img[src*="streamline-company-presence-office-lobby"],
  img[src*="streamline-headquarters"] {
    max-height: none !important;
  }
}

/* On smaller screens keep the image fluid and avoid sideways overflow. */
@media (max-width: 899px) {
  img[src*="streamline-company-presence-office-lobby"],
  img[src*="streamline-headquarters"] {
    width: 100% !important;
    height: auto !important;
  }
}
