/* ── empanelled.css ── */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pg);
    margin: 0; padding-top: 0;
    color: var(--t1); font-size: 14px; line-height: 1.6;
}

/* header overrides — subpage: always solid white, always dark text */
.ireda-header { background: var(--white) !important; box-shadow: 0 2px 20px rgba(30,58,138,.08) !important; }
.header-bg-overlay { background: var(--white) !important; backdrop-filter: none !important; opacity: 1 !important; }
.ireda-header .nav-link,
.ireda-header .glass-btn { color: var(--blue) !important; text-shadow: none !important; }
.ireda-header .utility-link,
.ireda-header .utility-lang-btn,
.ireda-header .utility-font-btn { color: var(--t3) !important; }
.ireda-header .utility-divider { color: var(--border) !important; }
.ireda-header .col-lg-2 img { filter: none !important; opacity: 1 !important; }

/* ── CARD ── */
.emp-card {
    background: var(--white);
    border-radius: var(--r1);
    box-shadow: var(--s2);
    border: 1px solid rgba(37,99,235,.05);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.emp-card::before {
    content: ''; display: block; height: 4px; background: var(--G);
}

/* card header */
.emp-card-head {
    display: flex; align-items: center; gap: .85rem;
    padding: 1.1rem 1.6rem;
    background: var(--xpale);
    border-bottom: 1px solid var(--pale);
}
.emp-head-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--G);
    display: flex; align-items: center; justify-content: center;
    font-size: .92rem; color: var(--white); flex-shrink: 0;
}
.emp-head-title {
    font-size: .9rem; font-weight: 800; color: var(--t1); line-height: 1.2;
}
.emp-head-sub {
    font-size: .72rem; color: var(--t3); margin-top: .12rem;
}
.emp-head-num {
    margin-left: auto;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--G); color: var(--white);
    font-size: .78rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* card body */
.emp-card-body {
    padding: 1.4rem 1.6rem 1.6rem;
}

/* download button */
.emp-dl-btn {
    display: inline-flex; align-items: center; gap: .45rem;
    background: var(--G); color: var(--white);
    border-radius: 8px; padding: .58rem 1.3rem;
    font-size: .8rem; font-weight: 700;
    text-decoration: none; transition: var(--t);
    box-shadow: 0 4px 12px rgba(30,58,138,.22);
}
.emp-dl-btn:hover { opacity: .88; transform: translateY(-1px); color: var(--white); }
.emp-dl-btn:focus-visible { outline: 3px solid var(--mid); outline-offset: 2px; }
.emp-dl-btn i { font-size: .8rem; }

/* list body */
.emp-list-body { padding: .4rem 0 .4rem; }

/* list item — each is a clickable row */
.emp-list-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.6rem;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background .18s;
}
.emp-list-item:last-child { border-bottom: none; }
.emp-list-item:hover { background: var(--xpale); }
.emp-list-item:focus-visible { outline: 3px solid var(--mid); outline-offset: -3px; }

.emp-list-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--G);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem; color: var(--white); flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(30,58,138,.18);
}
.emp-list-text { flex: 1; min-width: 0; }
.emp-list-title {
    font-size: .9rem; font-weight: 700; color: var(--t1); line-height: 1.3;
}
.emp-list-sub {
    font-size: .74rem; color: var(--t3); margin-top: .15rem;
}
.emp-list-arrow {
    font-size: .82rem; color: var(--mid);
    flex-shrink: 0; transition: transform .2s;
}
.emp-list-item:hover .emp-list-arrow { transform: translateX(3px); }
.emp-list-item:hover .emp-list-title  { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 576px) {
    .emp-card-head { flex-wrap: wrap; }
    .emp-head-num  { margin-left: 0; }
    .emp-list-item { padding: .85rem 1.1rem; }
    .emp-card-body { padding: 1.1rem 1.1rem; }
}

@media print {
    .emp-card { box-shadow: none; border: 1px solid #ccc; }
    .emp-dl-btn { background: none; color: var(--blue); box-shadow: none; border: 1px solid var(--blue); }
}