/* assets/css/employee.css */

.employee-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.employee-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: left;
}

.employee-card {
    flex: 1 1 280px;
    max-width: 310px;
    padding: 1rem;
    background: white;
}

.employee-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 1rem;
    filter: grayscale(1) contrast(0.9) brightness(1.2);
}

.employee-card:hover .employee-photo {
    filter: grayscale(0) contrast(1) brightness(1);
}

.employee-card h3 {
    margin: 0.5rem 0 0.2rem;
    color: #253746;
    font-family: Rubik;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 116.667% */
}

.employee-card .title {
    color: var(--fs-color-primary);
    font-family: Rubik;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
    letter-spacing: 0.5px;
}

.employee-card .contact {
    padding-top: 10px;
}

.employee-card .contact a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    margin: 0.1rem 0;
}

.employee-card .icon-wrapper {
    margin-right:5px;
}