/*
  Page-specific styles for: Hartmann Group (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-hartmann-group.
*/

/* All 4 source photos share the exact same 4:3 aspect ratio and are
   already a genuine 2x2 grid in the PDF, so replace the guessed
   PDF-relative widths with a real grid. */
#case-hartmann-group .vbc-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
}
#case-hartmann-group .vbc-gallery__item {
    width: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
#case-hartmann-group .vbc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    #case-hartmann-group .vbc-gallery { grid-template-columns: 1fr; }
}
