/*
  Page-specific styles for: Auto Uplink (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-auto-uplink.
*/

/* 3 source photos (aspects ~1.77, ~1.78, ~1.45) laid out as a clean
   3-column row instead of the guessed PDF-relative widths, cropped to a
   shared ratio so the more-square 3rd photo doesn't leave a jagged row. */
#case-auto-uplink .vbc-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 18px;
}
#case-auto-uplink .vbc-gallery__item {
    width: auto;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
#case-auto-uplink .vbc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    #case-auto-uplink .vbc-gallery { grid-template-columns: 1fr; }
}
