#ce_lmf_contacts{
    --font-size-name: 2.2rem;
    display: grid;
    gap: 2rem;
    row-gap: 4rem;
    text-align: center;
}
#ce_lmf_contacts .image_outer_container,
#ce_lmf_contacts .image_outer_container a{
    display: block;
    background-size: 0 0;
}
#ce_lmf_contacts img{
    width: 100%;
    object-fit: cover; 
}
.ce_lmf_contacts_employee_image{
    margin-bottom: 1rem;
}
.ce_lmf_contacts_employee_name{
    display: inline-block;
    font-size: var(--font-size-name);
    color: var(--black);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0rem;
    padding: 0.5rem 1rem;
}
.ce_lmf_contacts_employee_job{
    font-weight: 500;
    font-size: 2rem;
    color: var(--secondary-clr);
    margin-bottom: 1rem;
}
.ce_lmf_contacts_employee_email a{
    --link-clr: var(--black);
    font-weight: 700;
    hyphens: auto;
    font-size: 1.8rem;
}
.ce_lmf_contacts_employee .link_button{
    margin-right: 0;
    margin-top: 1.5rem;
}
.ce_lmf_contacts_employee .img_overlay{
    display: none;
}
.contact_overlay_job{
    color: var(--secondary-clr);
    margin-bottom: 2rem;
}
.ce_lmf_contacts_employee.active .ce_lmf_contacts_employee_name{
    background-color: var(--black);
    color: var(--white);
}

/* PHONE */
@media screen and (min-width: 576px) {
    #ce_lmf_contacts{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TABLET */
@media screen and (min-width: 768px) {
    
    #ce_lmf_contacts{
        grid-template-columns: repeat(3, 1fr);
        row-gap: 6rem;
    }
    #ce_lmf_contacts.selection{
        grid-template-columns: repeat(3, 1fr);
        row-gap: 6rem;
    }

}

/* DESKTOP */
@media screen and (min-width: 1024px) {
    #ce_lmf_contacts{
        --font-size-name: 3rem;
    }
    .ce_lmf_contacts_employee_job{
        font-size: 2.2rem;
    }
    .ce_lmf_contacts_employee_email a{
        font-size: 2rem;
    }

}