/* Shared geometry for all four portfolio cards. Never crop artwork. */
.works-grid { grid-template-columns:repeat(2,minmax(0,1fr)); align-items:stretch; }
.works-grid .work-card { align-self:stretch; }
.works-grid .work-media { display:block; width:100%; height:auto; min-height:0; aspect-ratio:3/2; flex:none; }
.works-grid .work-media > a { display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.works-grid .work-media img { display:block; width:100% !important; height:100% !important; max-width:100%; max-height:100%; object-fit:contain !important; }
.works-grid .work-body { flex:1; }
.works-grid .work-actions { margin-top:auto; padding-top:20px; }
@media(max-width:650px) { .works-grid { grid-template-columns:1fr; } }
