/*
  Page-specific styles for: Oerlikon Balzers (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-case-study-oerlikon-balzers-2016-2.
*/

/* The extraction pipeline had mis-merged 2 unrelated source photos
   (cubicle desk + conference room) into one tall asset via a false
   seam-match; they were split back into their real photos here. All
   4 photos now share the same ~1.77 aspect ratio and form a genuine
   2x2 grid in the source PDF. */
#case-case-study-oerlikon-balzers-2016-2 .vbc-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
}
#case-case-study-oerlikon-balzers-2016-2 .vbc-gallery__item {
    width: auto;
    aspect-ratio: 1.77;
    overflow: hidden;
}
#case-case-study-oerlikon-balzers-2016-2 .vbc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    #case-case-study-oerlikon-balzers-2016-2 .vbc-gallery { grid-template-columns: 1fr; }
}
