/* Each cell in the generated 4 x 2 photo sheet is portrait (3:4).
   Matching that ratio prevents people, racks, and tools from stretching. */
.service-detail{
  grid-template-columns:minmax(260px,360px) minmax(0,1fr)!important;
}
.service-visual{
  width:100%!important;
  max-width:360px!important;
  height:auto!important;
  aspect-ratio:3/4!important;
  justify-self:center!important;
}
@media(max-width:800px){
  .service-detail{grid-template-columns:1fr!important}
  .service-visual{width:min(100%,330px)!important;max-width:330px!important;height:auto!important;aspect-ratio:3/4!important}
}
@media(max-width:420px){
  .service-visual{width:min(100%,300px)!important;max-width:300px!important;height:auto!important}
}
