.employee-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.employee-image img {
    max-height: 277px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.employee-image__overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.employee-image {
    position: relative;
}

.employee-image__overlay__text__mail {
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 15px;
}

.employee-flag {
    padding: 4px;
    background-color: #ffffff;
    border-radius: 5px;
}

.employee-flag img {
    border-radius: 5px;
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.employee-title {
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0px !important;
}

.employee-function {
    font-size: 16px;
    line-height: 1.3;
}

@media only screen and (max-width: 1000px) {
    .employee-list{
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 600px) {
    .employee-list{
        grid-template-columns: 1fr;
    }
}