#ce_lmf_contacts{
    --font-size-name: 2.2rem;
    display: grid;
    gap: 2rem;
}
#ce_lmf_contacts .image_outer_container,
#ce_lmf_contacts .image_outer_container a{
    display: block;
}
#ce_lmf_contacts img{
    width: 100%;
    object-fit: cover;
}
.ce_lmf_contacts_employee_image{
    margin-bottom: 1rem;
}
.ce_lmf_contacts_employee_name{
    font-size: var(--font-size-name);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.ce_lmf_contacts_employee_job{
    font-weight: 600;
    color: var(--primary-clr);
    margin-bottom: 1rem;
}
.ce_lmf_contacts_employee_email a{
    --link-clr: var(--text-clr);
    font-weight: 600;
}

/* PHONE */
@media screen and (min-width: 576px) {
    #ce_lmf_contacts{
        grid-template-columns: repeat(2, 1fr);
        row-gap: 8rem;
    }
}

/* TABLET */
@media screen and (min-width: 768px) {
    #ce_lmf_contacts{
        --font-size-name: 3.2rem;
    }

}

/* DESKTOP */
@media screen and (min-width: 1024px) {
    #ce_lmf_contacts{
        grid-template-columns: repeat(3, 1fr);
    }
    #ce_lmf_contacts.selection{
        grid-template-columns: repeat(3, 1fr);
    }

}