.employee-grid {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 2rem;
}

@media (min-width: 575px) {
    .employee-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .employee-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 4rem;
    }
}

.employee-element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
            flex-direction: column;
    background-color: #ededed;
    padding-bottom: 1rem;
}

.employee-element > div {
    margin-left: 2rem;
}

.employee-element > div p {
    margin-bottom: 0;
}

.employee-element .employee-fullname {

}

.employee-element .employee-portrait {
    margin: 0 auto;
    margin-bottom: 1.5rem;
    width: 100%;
    height: auto;
}
@media (min-width: 575px) {
    .employee-element .employee-portrait {

    }
}
@media (min-width: 992px) {
    .employee-element .employee-portrait {

    }
}