/* ==========================================================================
   JustJob Portal ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Theme Stylesheet
   Primary brand colour: #005B87
   ========================================================================== */

:root {
    /* Brand */
    --primary: #005B87;
    --primary-dark: #003F5E;
    --primary-light: #0077BE;
    --accent: #0099D8;
    /* Feedback */
    --success: #1E8A5F;
    --success-bg: #E7F6EF;
    --danger: #C6432E;
    --danger-bg: #FBEAE7;
    --warning: #C97A17;
    --warning-bg: #FDF1E1;
    /* Neutrals */
    --bg: #F2F7FA;
    --surface: #FFFFFF;
    --border: #DCE7ED;
    --text: #132A38;
    --muted: #5E7788;
    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-pill: 999px;
    /* Shadow */
    --shadow-sm: 0 2px 10px rgba(6,50,74,.06);
    --shadow-md: 0 10px 28px rgba(6,50,74,.10);
    --shadow-lg: 0 22px 54px rgba(6,50,74,.15);
    /* Spacing (8px rhythm) */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 13px;
    --sp-5: 24px;
    --sp-6: 20px;
    --sp-7: 48px;
    --sp-8: 25px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter',Segoe UI,Arial,sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins','Inter',Segoe UI,sans-serif;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.01em;
    margin: 0 0 var(--sp-3);
}

h1 {
    font-size: 20px;
    line-height: 1.15;
}

h2 {
    font-size: 25px;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.25;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1.05rem;
}

p {
    margin: 0 0 var(--sp-3);
}

.text-muted-custom {
    color: var(--muted);
}

a {
    color: var(--primary);
    text-decoration: none;
}

    a:hover {
        color: var(--primary-dark);
    }

/* ---------- Layout helpers ---------- */
.container-app {
    max-width: 1220px;
    margin: 0 auto;
}

.section-py {
    padding: var(--sp-8) 0;
}

/* ---------- Brand ---------- */
.brand {
    font-family: 'Poppins',sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -.02em;
}

    .brand .accent {
        color: var(--accent);
    }

/* ---------- Buttons ---------- */
.btn {
    font-family: 'Inter',sans-serif;
    font-weight: 600;
    border-radius: var(--r-sm);
    padding: .7rem 1.35rem;
    border: 1.5px solid transparent;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .1s ease;
    cursor: pointer;
}

    .btn:active {
        transform: translateY(1px);
    }

.btn-lg {
    padding: 10px 10px;
    font-size: 11px;
}

.btn-sm {
    padding: .45rem .9rem;
    font-size: .85rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-primary-brand {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

    .btn-primary-brand:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #fff;
    }

.btn-outline-brand {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

    .btn-outline-brand:hover {
        background: var(--primary);
        color: #fff;
    }

.btn-link-brand {
    background: transparent;
    border-color: transparent;
    color: var(--primary);
    font-weight: 600;
    padding: .5rem .25rem;
}

    .btn-link-brand:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

.btn-light-brand {
    background: #EAF4F9;
    border-color: #EAF4F9;
    color: var(--primary);
}

    .btn-light-brand:hover {
        background: #DCEBF3;
    }

/* ---------- Forms ---------- */
.field-group {
    margin-bottom: var(--sp-4);
}

.field-label {
    display: block;
    font-weight: 600;
    font-size: .88rem;
    color: var(--text);
    margin-bottom: var(--sp-2);
}

    .field-label.required:after {
        content: " *";
        color: var(--danger);
    }

.field-control {
    width: 100%;
    padding: .72rem .95rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: .96rem;
    font-family: 'Inter',sans-serif;
    color: var(--text);
    background: var(--surface);
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .field-control:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(0,153,216,.15);
    }

.field-hint {
    font-size: .8rem;
    color: var(--muted);
    margin-top: var(--sp-1);
}

.field-error {
    font-size: .8rem;
    color: var(--danger);
    margin-top: var(--sp-1);
    display: block;
    font-weight: 600;
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
    font-size: .9rem;
    color: var(--text);
}

    .check-row input {
        margin-top: 3px;
    }

/* ---------- Alerts / Toast ---------- */
.alert-box {
    border-radius: var(--r-sm);
    padding: var(--sp-3) var(--sp-4);
    font-size: .9rem;
    border: 1.5px solid transparent;
    margin-bottom: var(--sp-4);
}

    .alert-box.info {
        background: #EAF4F9;
        border-color: #CFE7F1;
        color: var(--primary-dark);
    }

    .alert-box.success {
        background: var(--success-bg);
        border-color: #BFE6D3;
        color: var(--success);
    }

    .alert-box.danger {
        background: var(--danger-bg);
        border-color: #F0C6BC;
        color: var(--danger);
    }

.toast-fixed {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    min-width: 280px;
    max-width: 360px;
    box-shadow: var(--shadow-lg);
}

/* ---------- Hero (Landing) ---------- */
.hero {
    display: flex;
    align-items: center;
    background: linear-gradient(160deg,#EAF5FA 0%,#FFFFFF 55%,#E7F3F8 100%);
    position: relative;
    overflow: hidden;
    height: 87vh;
}

    .hero::after {
        content: "";
        position: absolute;
        width: 460px;
        height: 460px;
        border-radius: 50%;
        background: rgba(0,153,216,.08);
        right: -140px;
        top: -120px;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--sp-7);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: var(--success);
    font-weight: 600;
    margin-top: var(--sp-4);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
}

.hero-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    box-shadow: var(--shadow-md);
}

.role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-top: var(--sp-4);
}

.role-card {
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-4);
    background: var(--surface);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

    .role-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        border-color: #A9D9EC;
    }

.role-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-sm);
    display: grid;
    place-items: center;
    background: #EAF5FA;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: var(--sp-3);
}

/* ---------- Auth screens ---------- */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-6) var(--sp-4);
}

.auth-card {
    width: 100%;
    max-width: 600px;
    background: var(--surface);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

    .auth-card.wide {
        max-width: 760px;
    }

.auth-head {
    background: linear-gradient(135deg,var(--primary),var(--primary-light));
    color: #fff;
    padding: var(--sp-6);
}

    .auth-head .brand, .auth-head .brand .accent {
        color: #fff;
    }

        .auth-head .brand .accent {
            color: #BEEBFF;
        }

.auth-body {
    padding: var(--sp-6);
}

@media(min-width:576px) {
    .auth-body {
        padding: var(--sp-7);
    }
}

/* ---------- Portal shell ---------- */
.portal-shell {
    min-height: 100vh;
    display: flex;
}

.sidebar {
    width: 264px;
    background: var(--primary-dark);
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    padding: var(--sp-5) var(--sp-3);
    z-index: 40;
    display: flex;
    flex-direction: column;
}

    .sidebar .brand {
        color: #fff;
        padding: 0 var(--sp-3) var(--sp-5);
    }

        .sidebar .brand .accent {
            color: #6FD3FF;
        }

.sidebar-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.45);
    padding: 0 var(--sp-3);
    margin-bottom: var(--sp-2);
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.portal-link {
    color: #C9DEE8;
    border-radius: var(--r-sm);
    padding: .75rem .9rem;
    font-weight: 500;
    font-size: .94rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .15s ease,color .15s ease;
}

    .portal-link:hover {
        background: rgba(255,255,255,.08);
        color: #fff;
    }

    .portal-link.active {
        background: rgba(255,255,255,.14);
        color: #fff;
        font-weight: 600;
    }

    .portal-link i {
        font-size: 1.05rem;
        width: 20px;
        text-align: center;
    }

.sidebar-footer {
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(255,255,255,.12);
}

.main-area {
    margin-left: 264px;
    width: calc(100% - 264px);
    min-height: 100vh;
}

.topbar {
    margin-left: 264px;
    height: 50px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: end;
    justify-content: end;
    padding: 5px var(--sp-5);
    position: sticky;
    top: 0px;
    z-index: 30;
}

    .topbar h1 {
        font-size: 1.1rem;
        margin: 0;
    }

    .topbar small {
        color: var(--muted);
    }

.mobile-toggle {
    display: none;
    background: #EAF5FA;
    border: none;
    border-radius: var(--r-sm);
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.content-area {
    padding: var(--sp-6);
}

/* ---------- Cards / stats / tables ---------- */
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-4);
    height: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
}

.stat-icon {
    width: 44px;
    height: 40px;
    border-radius: var(--r-sm);
    background: #EAF5FA;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 19px;
}

.stat-value {
    font-family: 'Poppins',sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-top: var(--sp-3);
}

.stat-label {
    color: var(--muted);
    font-size: .85rem;
}

.panel-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-5);
}

.badge-soft {
    background: #EAF5FA;
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--r-pill);
    padding: .32rem .75rem;
    font-size: .78rem;
}

.badge-status {
    border-radius: var(--r-pill);
    padding: .32rem .75rem;
    font-size: .78rem;
    font-weight: 600;
    display: inline-block;
}

    .badge-status.active {
        background: var(--success-bg);
        color: var(--success);
    }

    .badge-status.pending {
        background: var(--warning-bg);
        color: var(--warning);
    }

    .badge-status.progress {
        background: #EAF5FA;
        color: var(--primary);
    }

.grid-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
}

    .grid-table th {
        text-align: left;
        font-size: .74rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: var(--muted);
        background: #F6FAFC;
        padding: var(--sp-3) var(--sp-4);
        border-bottom: 1px solid var(--border);
    }

    .grid-table td {
        padding: var(--sp-3) var(--sp-4);
        border-bottom: 1px solid var(--border);
        vertical-align: middle;
    }

    .grid-table tr:last-child td {
        border-bottom: none;
    }

    .grid-table tr:hover td {
        background: #FAFCFD;
    }

.table-wrap {
    overflow-x: auto;
}

.progress-track {
    height: 7px;
    border-radius: var(--r-pill);
    background: #E7EFF3;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: var(--r-pill);
}

.avatar-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #EAF5FA;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 30px;
}

.avatar-sm {
    width: 40px;
    height: 40px;
    font-size: 17px;
}

/* ---------- Responsive ---------- */
@media(max-width:1199px) {
    .container-app {
        padding: 0 var(--sp-4);
    }
}

@media(max-width:991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform .25s ease;
        box-shadow: var(--shadow-lg);
    }

        .sidebar.open {
            transform: translateX(0);
        }

    .main-area {
        margin-left: 0;
        width: 100%;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .content-area {
        padding: var(--sp-5);
    }

    h1 {
        font-size: 2.1rem;
    }
}

@media(max-width:767px) {
    .role-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: var(--sp-5);
    }

    .auth-wrap {
        padding: var(--sp-4);
    }

    .topbar {
        padding: 0 var(--sp-4);
    }

        .topbar .user-name {
            display: none;
        }

    .content-area {
        padding: var(--sp-4);
    }

    .auth-body {
        padding: var(--sp-5);
    }

    h1 {
        font-size: 1.85rem;
    }
}

@media(max-width:575px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-value {
        font-size: 1.35rem;
    }
}

/* ---------- Generic responsive grid utilities (replaces Bootstrap grid) ---------- */
.d-flex {
    display: flex;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
}

.gap-2 {
    gap: var(--sp-2);
}

.gap-3 {
    gap: var(--sp-3);
}

.mt-3 {
    margin-top: var(--sp-3);
}

.mt-4 {
    margin-top: var(--sp-4);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: var(--sp-2);
}

.mb-3 {
    margin-bottom: var(--sp-3);
}

.mb-4 {
    margin-bottom: var(--sp-4);
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: var(--sp-4);
}

.grid-2 {
    grid-template-columns: repeat(2,1fr);
}

.grid-3 {
    grid-template-columns: repeat(3,1fr);
}

.grid-4 {
    grid-template-columns: repeat(4,1fr);
}

.grid-form-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

@media(max-width:900px) {
    .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {
    .grid-2, .grid-3, .grid-4, .grid-form-2 {
        grid-template-columns: 1fr;
    }
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, .btn:focus-visible {
    outline: 3px solid rgba(0,153,216,.45);
    outline-offset: 2px;
}


/* ===== WebForms 4.8 rendering hardening ===== */
body {
    min-width: 320px;
}

img {
    width: 45%;
}

input, select, textarea, button {
    font-family: inherit;
}

.aspNetHidden {
    display: none;
}

.me-2 {
    margin-right: 8px;
}

.me-3 {
    margin-right: 12px;
}

.ms-2 {
    margin-left: 8px;
}

.ms-3 {
    margin-left: 12px;
}

.fs-5 {
    font-size: 1.15rem;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,.10);
        color: #fff;
    }

.hero .container-app {
    width: 100%;
}

.hero h1 {
    max-width: 720px;
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 16px;
}

.hero-card h4 {
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.role-card h6 {
    font-size: 1.05rem;
    color: var(--text);
}

@media(max-width:991px) {
    .hero {
        min-height: auto;
        padding: 58px 0;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(2.15rem,6vw,3.2rem);
    }

    .hero-card {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media(max-width:575px) {
    .hero {
        padding: 34px 0 44px;
    }

    .container-app {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.12;
    }

    .hero p {
        font-size: .98rem !important;
        line-height: 1.55;
    }

    .hero-actions {
        gap: 9px;
        margin-top: 20px;
    }

        .hero-actions .btn {
            width: 100%;
            text-align: center;
            padding: .68rem 1rem;
            font-size: .92rem;
        }

    .hero-card {
        padding: 18px;
        border-radius: 16px;
    }

        .hero-card h4 {
            font-size: 1.2rem;
        }

    .role-grid {
        gap: 10px;
        margin-top: 14px;
    }

    .role-card {
        padding: 14px;
    }

    .role-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 9px;
    }

    .role-card h6 {
        font-size: .98rem;
    }

    .role-card p {
        font-size: .82rem !important;
        line-height: 1.4;
    }

    .hero-eyebrow {
        font-size: .78rem;
    }
}

aside#sidebar img {
    background: #fff;
    border-radius: 5px;
    padding: 5px 2px;
}

.stat-card-sub {
    display: flex;
    justify-content: space-between;
}

.portal-link > i {
    width: 22px;
    min-width: 22px;
    margin-right: 12px;
    font-size: 17px;
    text-align: center;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stat-icon i {
        font-size: 22px;
    }

.sidebar-footer i {
    margin-right: 8px;
}

.el-hero {
    background: linear-gradient( 160deg, #EAF5FA 0%, #FFFFFF 55%, #E7F3F8 100% );
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}

    .el-hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(0, 153, 216, 0.08);
        right: -120px;
        top: -100px;
    }

.el-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--sp-7);
    align-items: center;
    position: relative;
    z-index: 2;
}

.el-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EAF5FA;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 14px;
}

/* =========================================
   Statistics
   ========================================= */

.el-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
    margin-top: 32px;
}

.el-stat {
    text-align: left;
}

    .el-stat .num {
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 1.7rem;
        color: var(--primary-dark);
    }

    .el-stat .lbl {
        font-size: 0.82rem;
        color: var(--muted);
    }

/* =========================================
   Section Title
   ========================================= */

.el-section-title {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

    .el-section-title h2 {
        margin-bottom: 8px;
    }

    .el-section-title p {
        color: var(--muted);
        margin: 0;
    }

/* =========================================
   How It Works
   ========================================= */

.el-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
}

.el-step {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-5);
    position: relative;
}

    .el-step .step-num {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        display: grid;
        place-items: center;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .el-step h6 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .el-step p {
        font-size: 0.88rem;
        color: var(--muted);
        margin: 0;
    }

/* =========================================
   Features
   ========================================= */

.el-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
}

.el-feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-5);
}

    .el-feature-card .icon {
        width: 48px;
        height: 48px;
        border-radius: var(--r-sm);
        background: #EAF5FA;
        color: var(--primary);
        display: grid;
        place-items: center;
        margin-bottom: 12px;
        font-size: 20px;
    }

    .el-feature-card h6 {
        font-weight: 700;
        margin-bottom: 4px;
    }

    .el-feature-card p {
        font-size: 0.86rem;
        color: var(--muted);
        margin: 0;
    }

/* =========================================
   Recruiter Board Preview
   ========================================= */

.el-board-preview {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.el-board-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

    .el-board-row:last-child {
        border-bottom: none;
    }

.el-board-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #EAF5FA;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.el-board-info {
    flex: 1;
    min-width: 0;
}

    .el-board-info .name {
        font-weight: 700;
        font-size: 0.92rem;
    }

    .el-board-info .meta {
        font-size: 0.78rem;
        color: var(--muted);
    }

.el-board-head {
    padding: 16px 20px;
    background: #F7FBFD;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    font-size: 0.9rem;
}

/* =========================================
   CTA
   ========================================= */

.el-cta {
    background: linear-gradient( 135deg, var(--primary), var(--primary-light) );
    border-radius: var(--r-lg);
    padding: 48px;
    color: #fff;
    text-align: center;
}

    .el-cta h2 {
        color: #fff;
        margin-bottom: 8px;
    }

    .el-cta p {
        color: rgba(255, 255, 255, 0.85);
        max-width: 520px;
        margin: 0 auto 24px;
    }

    .el-cta .btn-outline-brand {
        background: transparent;
        border-color: #fff;
        color: #fff;
    }

        .el-cta .btn-outline-brand:hover {
            background: #fff;
            color: var(--primary);
        }

/* =========================================
   Responsive - Tablet
   ========================================= */

@media (max-width: 991px) {

    .el-hero-grid {
        grid-template-columns: 1fr;
    }

    .el-stats,
    .el-steps,
    .el-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   Responsive - Mobile
   ========================================= */

@media (max-width: 575px) {

    .el-stats,
    .el-steps,
    .el-feature-grid {
        grid-template-columns: 1fr;
    }
}

.jj-navbar img {
    width: 120px
}

/* ---- Employer landing page ---- */
.el-hero {
    background: linear-gradient(160deg,#EAF5FA 0%,#FFFFFF 55%,#E7F3F8 100%);
    padding: 30px 0 35px;
    position: relative;
    overflow: hidden;
}

    .el-hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(0,153,216,.08);
        right: -120px;
        top: -100px;
    }

.el-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--sp-7);
    align-items: center;
    position: relative;
    z-index: 2;
}

.el-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EAF5FA;
    color: var(--primary);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .03em;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 14px;
}

.el-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--sp-4);
    margin-top: 32px;
}

.el-stat {
    text-align: left;
}

    .el-stat .num {
        font-family: 'Poppins',sans-serif;
        font-weight: 800;
        font-size: 18px;
        color: var(--primary-dark);
    }

    .el-stat .lbl {
        font-size: 12px;
        color: var(--muted);
    }

.el-section-title {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

    .el-section-title h2 {
        margin-bottom: 8px;
    }

    .el-section-title p {
        color: var(--muted);
        margin: 0;
    }

.el-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--sp-4);
}

.el-step {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-5);
    position: relative;
}

    .el-step .step-num {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        display: grid;
        place-items: center;
        font-family: 'Poppins',sans-serif;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .el-step h6 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .el-step p {
        font-size: 12px;
        color: var(--muted);
        margin: 0;
    }

.el-feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--sp-4);
}

.el-feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-5);
}

    .el-feature-card .icon {
        width: 48px;
        height: 48px;
        border-radius: var(--r-sm);
        background: #EAF5FA;
        color: var(--primary);
        display: grid;
        place-items: center;
        margin-bottom: 12px;
        font-size: 20px;
    }

    .el-feature-card h6 {
        font-weight: 700;
        margin-bottom: 4px;
    }

    .el-feature-card p {
        font-size: .86rem;
        color: var(--muted);
        margin: 0;
    }

.el-board-preview {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.el-board-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

    .el-board-row:last-child {
        border-bottom: none;
    }

.el-board-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #EAF5FA;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-family: 'Poppins',sans-serif;
    flex-shrink: 0;
}

.el-board-info {
    flex: 1;
    min-width: 0;
}

    .el-board-info .name {
        font-weight: 700;
        font-size: .92rem;
    }

    .el-board-info .meta {
        font-size: .78rem;
        color: var(--muted);
    }

.el-board-head {
    padding: 16px 20px;
    background: #F7FBFD;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    font-size: .9rem;
}

.el-cta {
    background: linear-gradient(135deg,var(--primary),var(--primary-light));
    border-radius: var(--r-lg);
    padding: 25px;
    color: #fff;
    text-align: center;
}

    .el-cta h2 {
        color: #fff;
        margin-bottom: 8px;
    }

    .el-cta p {
        color: rgba(255,255,255,.85);
        max-width: 520px;
        margin: 0 auto 24px;
    }

    .el-cta .btn-outline-brand {
        background: transparent;
        border-color: #fff;
        color: #fff;
    }

        .el-cta .btn-outline-brand:hover {
            background: #fff;
            color: var(--primary);
        }

@media (max-width:991px) {
    .el-hero-grid {
        grid-template-columns: 1fr;
    }

    .el-stats, .el-steps, .el-feature-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:575px) {
    .el-stats, .el-steps, .el-feature-grid {
        grid-template-columns: 1fr;
    }
}

.rl-hero {
    background: linear-gradient(160deg,#EAF5FA 0%,#FFFFFF 55%,#E7F3F8 100%);
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}

    .rl-hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(0,153,216,.08);
        right: -120px;
        top: -100px;
    }

.rl-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--sp-7);
    align-items: center;
    position: relative;
    z-index: 2;
}

.rl-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EAF5FA;
    color: var(--primary);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .03em;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 14px;
}

.rl-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--sp-4);
    margin-top: 32px;
}

.rl-stat {
    text-align: left;
}

    .rl-stat .num {
        font-family: 'Poppins',sans-serif;
        font-weight: 800;
        font-size: 1.7rem;
        color: var(--primary-dark);
    }

    .rl-stat .lbl {
        font-size: .82rem;
        color: var(--muted);
    }

.rl-section-title {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 23px;
}

    .rl-section-title h2 {
        margin-bottom: 8px;
    }

    .rl-section-title p {
        color: var(--muted);
        margin: 0;
    }

.rl-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--sp-4);
}

.rl-step {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-5);
    position: relative;
}

    .rl-step .step-num {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        display: grid;
        place-items: center;
        font-family: 'Poppins',sans-serif;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .rl-step h6 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .rl-step p {
        font-size: .88rem;
        color: var(--muted);
        margin: 0;
    }

.rl-payout-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--sp-4);
}

.rl-payout-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-5);
    text-align: center;
    transition: box-shadow .18s ease,transform .18s ease;
}

    .rl-payout-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

    .rl-payout-card .icon {
        width: 48px;
        height: 48px;
        border-radius: var(--r-sm);
        background: #EAF5FA;
        color: var(--primary);
        display: grid;
        place-items: center;
        margin: 0 auto 12px;
        font-size: 20px;
    }

    .rl-payout-card h6 {
        font-weight: 700;
        margin-bottom: 4px;
    }

    .rl-payout-card p {
        font-size: .84rem;
        color: var(--muted);
        margin: 0;
    }

.rl-type-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--sp-4);
}

.rl-type-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-5) var(--sp-4);
    text-align: center;
}

    .rl-type-card .badge-soft {
        margin-bottom: 10px;
    }

    .rl-type-card h6 {
        font-weight: 700;
        margin: 6px 0 4px;
    }

    .rl-type-card p {
        font-size: .82rem;
        color: var(--muted);
        margin: 0;
    }

.rl-cta {
    background: linear-gradient(135deg,var(--primary),var(--primary-light));
    border-radius: var(--r-lg);
    padding: 48px;
    color: #fff;
    text-align: center;
}

    .rl-cta h2 {
        color: #fff;
        margin-bottom: 8px;
    }

    .rl-cta p {
        color: rgba(255,255,255,.85);
        max-width: 520px;
        margin: 0 auto 24px;
    }

    .rl-cta .btn-outline-brand {
        background: transparent;
        border-color: #fff;
        color: #fff;
    }

        .rl-cta .btn-outline-brand:hover {
            background: #fff;
            color: var(--primary);
        }

@media (max-width:991px) {
    .rl-hero-grid {
        grid-template-columns: 1fr;
    }

    .rl-stats, .rl-steps, .rl-payout-grid, .rl-type-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:575px) {
    .rl-stats, .rl-steps, .rl-payout-grid, .rl-type-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SPONSORED COMPANIES
========================================================= */

.sponsored-companies-section {
    padding: 20px 0 30px;
    background: #ffffff;
    overflow: hidden;
}

.sponsored-title {
    text-align: center;
    margin-bottom: 23px;
}

    .sponsored-title h2 {
        margin: 0;
        color: #07152f;
        font-size: 21px;
        line-height: 1.25;
        font-weight: 750;
        letter-spacing: -0.5px;
    }


/* =========================================================
   CATEGORY TABS
========================================================= */

.company-category-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    margin-bottom: 38px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 4px 5px;
}

    .company-category-wrapper::-webkit-scrollbar {
        display: none;
    }

.company-category {
    flex: 0 0 auto;
    border: 1px solid #9aa8c5;
    background: #fff;
    color: #20345f;
    border-radius: 22px;
    padding: 8px 15px;
    min-height: 34px;
    font-family: inherit;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s ease;
}

    .company-category:hover {
        border-color: #1f5eff;
        color: #1f5eff;
    }

    .company-category.active {
        background: #edf0f6;
        border-color: #17233c;
        color: #111827;
        font-weight: 600;
    }

    .company-category.more-category {
        border: 0;
        padding-left: 2px;
        padding-right: 2px;
        color: #18366e;
        font-weight: 600;
    }


/* =========================================================
   SLIDER
========================================================= */

.companies-slider-wrapper {
    position: relative;
    width: 100%;
}

.companies-slider {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}


/* =========================================================
   COMPANY CARD
========================================================= */

.sponsored-company-card {
    min-width: 0;
    min-height: 234px;
    padding: 12px 12px 12px;
    border: 1px solid #e0e5ef;
    border-radius: 17px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 25px rgba(26, 48, 88, .035);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .sponsored-company-card:hover {
        transform: translateY(-3px);
        border-color: #d4dceb;
        box-shadow: 0 12px 30px rgba(26, 48, 88, .08);
    }


/* =========================================================
   LOGO
========================================================= */

.company-logo-box {
    width: 55px;
    height: 55px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    overflow: hidden;
}


/* Insight */

.insight-logo {
    width: 55px;
    height: 55px;
    background: #062b42;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .insight-logo span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

        .insight-logo span:nth-child(1) {
            background: #19c9ee;
        }

        .insight-logo span:nth-child(2) {
            background: #ffd400;
        }

        .insight-logo span:nth-child(3) {
            background: #ff1766;
        }


/* Lionbridge */

.lionbridge-logo {
    width: 55px;
    height: 55px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080808;
    color: #fff;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .5px;
}


/* Kanini */

.kanini-logo {
    width: 55px;
    height: 55px;
    border: 1px solid #e0e5ed;
    border-radius: 9px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #168bd4;
}

    .kanini-logo span {
        font-weight: 800;
    }

    .kanini-logo b {
        color: #8dcc34;
        font-size: 27px;
        transform: rotate(-40deg);
    }


/* Bajaj */

.bajaj-logo {
    width: 55px;
    height: 55px;
    border: 1px solid #e0e5ed;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #184c9e;
    font-size: 8px;
    font-weight: 800;
}

    .bajaj-logo small {
        font-size: 6px;
        margin-top: 2px;
    }


/* Tata */

.tata-logo {
    width: 55px;
    height: 55px;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0872b9;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
}

    .tata-logo small {
        font-size: 5px;
        margin-top: 3px;
    }


/* Rockwell */

.ra-logo {
    width: 55px;
    height: 55px;
    border: 1px solid #e1e6ee;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d92323;
    font-weight: 800;
    font-size: 17px;
}


/* Tractebel */

.tractebel-logo {
    width: 55px;
    height: 55px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #08a6e8;
    color: #fff;
    font-size: 6px;
    font-weight: 800;
}


/* OGS */

.ogs-logo {
    width: 55px;
    height: 55px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #292454;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}


/* Healthcare */

.healthcare-logo {
    width: 55px;
    height: 55px;
    border: 1px solid #e0e5ed;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e14b67;
}


/* BFSI */

.bfsi-logo {
    width: 55px;
    height: 55px;
    border: 1px solid #e0e5ed;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #355fa7;
    font-size: 23px;
}


/* =========================================================
   COMPANY NAME
========================================================= */

.sponsored-company-card h3 {
    margin: 0 0 11px;
    min-height: 20px;
    color: #07152f;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   RATING
========================================================= */

.company-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-bottom: 13px;
    color: #54709f;
    font-size: 10px;
}

    .company-rating i {
        color: #ffb900;
        font-size: 13px;
    }

    .company-rating .review-count {
        padding-left: 2px;
        color: #5d75a0;
    }


/* =========================================================
   TAGS
========================================================= */

.company-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 7px;
    max-width: 100%;
}

    .company-tags span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 26px;
        padding: 4px 10px;
        border: 1px solid #dfe5ef;
        border-radius: 14px;
        background: #fff;
        color: #365483;
        font-size: 9.5px;
        line-height: 1.2;
        white-space: nowrap;
    }


/* =========================================================
   SLIDER ARROWS
========================================================= */

.company-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 1px solid #e1e7f0;
    border-radius: 50%;
    background: #fff;
    color: #324a76;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(15, 35, 70, .05);
    transform: translateY(-50%);
    transition: all .2s ease;
}

    .company-slider-arrow:hover {
        background: #f7f9fc;
        border-color: #cbd5e5;
        color: #1556dc;
    }

    .company-slider-arrow i {
        font-size: 15px;
    }

.company-prev {
    left: -22px;
}

.company-next {
    right: -22px;
}

    .company-prev:disabled,
    .company-next:disabled {
        opacity: .35;
        cursor: default;
    }


/* =========================================================
   VIEW ALL
========================================================= */

.view-all-companies {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-all-company-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 175px;
    min-height: 48px;
    padding: 10px 20px;
    border: 1.5px solid #2864ff;
    border-radius: 25px;
    background: #fff;
    color: #2864ff !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    transition: all .2s ease;
}

    .view-all-company-btn:hover {
        background: #2864ff;
        color: #fff !important;
    }


/* =========================================================
   FILTER ANIMATION
========================================================= */

.sponsored-company-card.company-hidden {
    display: none;
}

.sponsored-company-card.company-visible {
    animation: companyCardIn .25s ease;
}

@keyframes companyCardIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .companies-slider {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .company-category-wrapper {
        justify-content: flex-start;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sponsored-companies-section {
        padding: 40px 0 50px;
    }

    .sponsored-title {
        margin-bottom: 20px;
    }

        .sponsored-title h2 {
            font-size: 24px;
        }

    .company-category-wrapper {
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 25px;
    }

    .company-category {
        font-size: 12px;
        padding: 8px 13px;
    }

    .companies-slider {
        display: flex;
        gap: 13px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding: 3px 2px 8px;
    }

        .companies-slider::-webkit-scrollbar {
            display: none;
        }

    .sponsored-company-card {
        flex: 0 0 calc(50% - 7px);
        min-height: 245px;
        padding: 20px 12px;
    }

    .company-slider-arrow {
        width: 38px;
        height: 38px;
    }

    .company-prev {
        left: -10px;
    }

    .company-next {
        right: -10px;
    }

    .view-all-companies {
        margin-top: 28px;
    }
}


@media (max-width: 480px) {

    .sponsored-company-card {
        flex: 0 0 82%;
    }

    .company-slider-arrow {
        display: none;
    }

    .company-tags span {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* ===== Featured Recruiters Auto-Slider ===== */
.rl-recruiter-slider {
    width: 70%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
    mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
    margin: 0 auto;
}

.rl-recruiter-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: rl-slide 28s linear infinite;
}

.rl-recruiter-slider:hover .rl-recruiter-track {
    animation-play-state: paused;
}

@keyframes rl-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
    /* 50% because cards are duplicated once */
}

.rl-recruiter-card {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: transform .2s ease,box-shadow .2s ease;
}

    .rl-recruiter-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,.10);
    }

.rl-recruiter-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: var(--surface,#eef2f7);
    border: 3px solid var(--primary,#0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--primary,#0d6efd);
}

.rl-recruiter-card h6 {
    font-weight: 700;
    margin-bottom: 2px;
}

.rl-recruiter-role {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.rl-recruiter-rating {
    color: #f5a623;
    font-size: .85rem;
    margin-bottom: 8px;
}

.rl-recruiter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 12px;
}

    .rl-recruiter-tags span {
        background: var(--surface,#f4f6f9);
        border: 1px solid rgba(0,0,0,.08);
        font-size: .72rem;
        padding: 3px 10px;
        border-radius: 999px;
        color: var(--muted);
    }

.rl-recruiter-stats {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: .82rem;
    color: var(--muted);
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 12px;
}

    .rl-recruiter-stats b {
        display: block;
        color: var(--body-color,#212529);
        font-size: 1rem;
    }

/* Mobile: slightly faster slide + smaller cards */
@media (max-width:576px) {
    .rl-recruiter-card {
        flex: 0 0 220px;
        padding: 18px;
    }

    .rl-recruiter-track {
        animation-duration: 20s;
    }
}
