/* Filters card */
.emp-filters .card-body {
    padding: .9rem 1.2rem 1.1rem;
}

/* Employee card */
.emp-card {
    display: flex;
    gap: .85rem;
    background: #fff;
    border-radius: 12px;
    padding: .75rem .9rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s;
    height: 100%;
}

    .emp-card:hover {
        box-shadow: 0 6px 22px rgba(0,0,0,.12);
        transform: translateY(-2px);
    }

/* Initials avatar */
.emp-initials {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: #c0392b;
}

/* Body */
.emp-body {
    flex: 1;
    min-width: 0;
}

.emp-name {
    font-size: .95rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.emp-name-latin {
    font-size: .78rem;
    color: #6c757d;
}

.emp-role {
    font-size: .82rem;
    font-weight: 600;
    color: #c0392b;
    margin-top: .25rem;
}

.emp-position {
    font-size: .78rem;
    color: #495057;
    margin-bottom: .25rem;
}

/* Meta */
.emp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem .6rem;
    font-size: .75rem;
    color: #6c757d;
    margin-top: .15rem;
}

.emp-meta-item i {
    margin-right: .25rem;
    color: #c0392b;
}

/* Contact */
.emp-contact {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem .75rem;
    margin-top: .4rem;
}

.emp-contact-link {
    font-size: .78rem;
    color: #0d6efd;
    text-decoration: none;
}

    .emp-contact-link i {
        margin-right: .25rem;
    }

    .emp-contact-link:hover {
        text-decoration: underline;
    }

/* Responsive */
@media (max-width: 575px) {
    .emp-card {
        padding: .7rem .8rem;
    }
}
