/* =======================================
   Employees Section
======================================= */

.hr-employees-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hr-employee-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.hr-employee-photo {
    flex: 0 0 150px;   /* fixed column width */
    max-width: 150px;
}

.hr-employee-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.hr-employee-name {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.hr-employee-title {
    color: #E21B1B;
    font-weight: 600;
    margin: 4px 0 8px;
}

.hr-employee-bio {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .hr-employee-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
