/* Makes all faculty headshots the same size */ #faculty-list .faculty-photo { width: 300px; /* set your standard width */ aspect-ratio: 4 / 5; /* keeps a portrait shape */ height: auto; /* prevents distortion */ object-fit: cover; /* crops neatly inside the box */ max-width: 100%; } /* Force this size even if Omni injects inline widths */ #faculty-list img.faculty-photo { width: 300px !important; height: auto !important; }