.employee-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.employee {
    display: flex;
    flex-direction: column;
}

.employee-grid .employee p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.employee img {
    border-radius: 10px;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center top;
}

.employee-grid .employee h3 {
    margin-top: 20px;
}

.employee-grid a {
    color: var(--color-primary);
}

.employee-box {
    padding-top: 40px;
    background: var(--color-secondary-background);
    padding: 60px 40px;
    border-radius: 10px;
}

.employee-text {
    max-width: 750px;
    margin: auto;
}

@media only screen and (max-width: 1024px) {
    .employee-grid {

        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .employee-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .employee-box {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 497px) {
    .employee-grid {

        grid-template-columns: repeat(1, 1fr);
    }
}