.employees {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -10px;
}

.category-name {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #333;
}

.employee {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    margin: 10px;
    text-align: center;
    width: calc(33.333% - 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.employee:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.employee__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
}

.employee__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Adjust as necessary to focus on the face */
    border-radius: 50%;
}

.employee__name {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px;
    color: #333;
}

.employee__position {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.employee__email,
.employee__phone {
    display: flex;
    align-items: center;
    color: #8c8e9d;
    text-decoration: none;
    margin-bottom: 10px;
    justify-content: center;
}

.employee__email svg,
.employee__phone svg {
    margin-right: 8px;
}

.employee__email div,
.employee__phone div {
    font-size: 14px;
}
