/*
  Page-specific styles for: Worthy & Associates (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-worthy-associates.
*/

/* 2 source photos (aspects ~1.78 and ~2.21), already similar widths in
   the PDF — a clean 2-column grid replaces the guessed PDF-relative
   widths and keeps both photos a uniform height. */
#case-worthy-associates .vbc-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
}
#case-worthy-associates .vbc-gallery__item {
    width: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
#case-worthy-associates .vbc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    #case-worthy-associates .vbc-gallery { grid-template-columns: 1fr; }
}
