/*
  Page-specific styles for: Bayada Home Healthcare (classic template)
  Loaded AFTER css/base.css and css/classic.css, so anything here overrides
  them for this page only. Put per-page layout tweaks in this file so a
  fix for this case study can never affect any other page.
  Scope every rule under #case-bayada-home-healthcare-case-study.
*/

/* Both source photos share the same ~4:3 aspect ratio, so a clean
   2-column grid (instead of the guessed PDF-relative widths) reproduces
   them uniformly with no jagged heights. */
#case-bayada-home-healthcare-case-study .vbc-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
}
#case-bayada-home-healthcare-case-study .vbc-gallery__item {
    width: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
#case-bayada-home-healthcare-case-study .vbc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    #case-bayada-home-healthcare-case-study .vbc-gallery { grid-template-columns: 1fr; }
}
