    /* ── Banner ── */
    .adm-banner {
        background: #0b1f3a;
        padding: 64px 0 56px;
    }
    .adm-banner-inner {
        max-width: 700px;
    }
    .adm-banner-label {
        display: inline-block;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #e8b84b;
        margin-bottom: 18px;
        padding: 6px 16px;
        border: 1px solid rgba(232,184,75,.35);
        border-radius: 50px;
    }
    .adm-banner-heading {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 900;
        color: #fff;
        line-height: 1.2;
        margin: 0 0 18px;
    }
    .adm-banner-sub {
        font-size: 16px;
        color: rgba(255,255,255,.65);
        line-height: 1.75;
        margin: 0;
        max-width: 580px;
    }

    /* ── Table wrapper ── */
    .adm-table-wrap {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 30px rgba(0,0,0,.09);
        max-width: 950px;
        margin: 0 auto;
    }

    /* ── Header row ── */
    .adm-table-head {
        display: grid;
        grid-template-columns: 2fr 1.4fr 2fr;
        background: #f1f5f9;
        padding: 14px 28px;
        border-bottom: 1px solid #e2e8f0;
    }
    .adm-table-head > div {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: #64748b;
    }

    /* ── Data row ── */
    .adm-row {
        display: grid;
        grid-template-columns: 2fr 1.4fr 2fr;
        align-items: center;
        padding: 22px 28px;
        border-bottom: 1px solid #f1f5f9;
        transition: background .2s;
    }
    .adm-row:last-child { border-bottom: none; }
    .adm-row:hover { background: #fafbff; }

    /* Person cell */
    .adm-col-person {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .adm-avatar {
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 800;
        color: #fff;
        letter-spacing: .5px;
    }

    .adm-name-wrap {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    .adm-name {
        font-size: 15px;
        font-weight: 700;
        color: #0b1f3a;
    }
    .adm-dept {
        font-size: 12px;
        color: #94a3b8;
        font-weight: 500;
    }

    /* Designation cell */
    .adm-designation {
        font-size: 14px;
        color: #475569;
        font-weight: 600;
    }

    /* Contact cell */
    .adm-email {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #c0262d;
        text-decoration: none;
        font-size: 13.5px;
        font-weight: 600;
        transition: color .2s;
        word-break: break-all;
    }
    .adm-email i { flex-shrink: 0; font-size: 13px; }
    .adm-email:hover { color: #0b1f3a; text-decoration: underline; }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .adm-table-head { display: none; }

        .adm-row {
            grid-template-columns: 1fr;
            gap: 12px;
            padding: 20px 20px;
            border-bottom: 2px solid #f1f5f9;
        }

        .adm-col-desig { padding-left: 68px; }
        .adm-col-contact { padding-left: 68px; }
    }

    @media (max-width: 480px) {
        .adm-col-desig, .adm-col-contact { padding-left: 0; }
    }
