/* Force all faculty images to the same square size */
.team-member-img img {
    width: 220px;           
    height: 220px;          
    object-fit: cover;      
    border-radius: 50%;    
    display: block;
    margin: 0 auto;  
    transition: box-shadow 0.3s ease;

}

.team-member-img img:hover{
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .info-image {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
}