.people_grid_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    border-radius: 8px;
}

.people_parent_container {
    width: 15.55%;
    height: 242.31px;
    display: flex;
    flex-direction: column;
    vertical-align: top;
    margin-bottom: 20px;
    box-shadow: 0px 15px 10px 0px #013D7C1A;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
    position: relative;
}



.people_image_container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-bottom: 50px;
}

.people_image_container img {
    border-radius: 8px 8px 0 0;
    height: 192.3px;
    object-fit: cover;
}

.people_image_container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #013D7C54;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.people_hover_display {
    display: none;
    font-size: 14px;
    flex-direction: column;
}

.people_hover_display_title {
    padding-top: 5px;
    padding-bottom: 3px;
}

.people_hover_display_department {
    color: #333333;
}

.people_image_container:hover::before {
    background-color: transparent !important;
}

.people_image_container:hover {
    .people_title_container {
        background-color: #BFDEFF;
        color: #013D7C;
    }

    .people_hover_display {
        display: flex;
    }
}

.people_title_container {
    z-index: 1;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 17.31px;
    padding: 10px;
    width: 100%;
    min-height: 50px;
    background-color: #000A38;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
}


.ex_officio_members_title {
    text-align: center;
    margin: 30px 0 30px 0;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: #013D7C;
}