/*
Theme Name: LabRatsJobs
Theme URI: https://labratsjobs.pl
Author: LabRatsJobs
Author URI: https://labratsjobs.pl
Description: Nowoczesny motyw WordPress dla portalu z ofertami pracy w branży biotechnologicznej, laboratoryjnej, diagnostycznej i medycznej. Szybki, responsywny, zoptymalizowany pod SEO.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: labratsjobs
Tags: job-portal, biotechnology, laboratory, jobs, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
    /* Brand Colors */
    --lrj-primary: #00a2dd;
    --lrj-primary-dark: #0089bc;
    --lrj-primary-light: #e6f6fc;
    --lrj-secondary: #14A077;
    --lrj-secondary-dark: #0e7d5d;
    --lrj-secondary-light: #e8f7f2;

    /* Neutrals */
    --lrj-white: #ffffff;
    --lrj-bg: #ffffff;
    --lrj-bg-alt: #f8f9fb;
    --lrj-bg-warm: #f5f3ef;
    --lrj-gray-50: #f9fafb;
    --lrj-gray-100: #f3f4f6;
    --lrj-gray-200: #e5e7eb;
    --lrj-gray-300: #d1d5db;
    --lrj-gray-400: #9ca3af;
    --lrj-gray-500: #6b7280;
    --lrj-gray-600: #4b5563;
    --lrj-gray-700: #374151;
    --lrj-gray-800: #1f2937;
    --lrj-gray-900: #111827;

    /* Accent */
    --lrj-danger: #ef4444;
    --lrj-warning: #f59e0b;
    --lrj-success: #14A077;
    --lrj-info: #00a2dd;
    --lrj-sponsored: #e8956a;

    /* Typography */
    --lrj-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --lrj-font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Spacing */
    --lrj-space-xs: 0.25rem;
    --lrj-space-sm: 0.5rem;
    --lrj-space-md: 1rem;
    --lrj-space-lg: 1.5rem;
    --lrj-space-xl: 2rem;
    --lrj-space-2xl: 3rem;
    --lrj-space-3xl: 4rem;
    --lrj-space-4xl: 6rem;

    /* Borders & Radius */
    --lrj-radius-sm: 6px;
    --lrj-radius-md: 10px;
    --lrj-radius-lg: 16px;
    --lrj-radius-xl: 24px;
    --lrj-radius-full: 9999px;

    /* Shadows */
    --lrj-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --lrj-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --lrj-shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --lrj-shadow-xl: 0 20px 40px -4px rgba(0,0,0,0.1);
    --lrj-shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --lrj-shadow-card-hover: 0 10px 30px -5px rgba(0,0,0,0.1);

    /* Transitions */
    --lrj-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --lrj-transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --lrj-container: 1280px;
    --lrj-container-wide: 1440px;
    --lrj-header-height: 72px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--lrj-font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--lrj-gray-800);
    background-color: var(--lrj-bg);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--lrj-font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--lrj-gray-900);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: var(--lrj-space-md);
    color: var(--lrj-gray-600);
}

/* ============================================
   UTILITIES
   ============================================ */
.lrj-container {
    width: 100%;
    max-width: var(--lrj-container);
    margin: 0 auto;
    padding: 0 var(--lrj-space-lg);
}

.lrj-container--wide {
    max-width: var(--lrj-container-wide);
}

.lrj-section {
    padding: var(--lrj-space-4xl) 0;
}

.lrj-section--alt {
    background-color: var(--lrj-bg-alt);
}

.lrj-section--warm {
    background-color: var(--lrj-bg-warm);
}

.lrj-section--dark {
    background-color: #1a3a4a;
    color: var(--lrj-white);
}

.lrj-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--lrj-space-md);
    margin-bottom: var(--lrj-space-3xl);
}

.lrj-section__header h2 {
    margin-bottom: var(--lrj-space-xs);
}

.lrj-section__header p {
    font-size: 1.0625rem;
    color: var(--lrj-gray-500);
    margin: 0;
    max-width: 640px;
}

.lrj-section__header--center {
    display: block;
    text-align: center;
}
.lrj-section__header--center p {
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.lrj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--lrj-space-sm);
    padding: 0.625rem 1.5rem;
    font-family: var(--lrj-font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    border: 2px solid transparent;
    border-radius: var(--lrj-radius-md);
    cursor: pointer;
    transition: all var(--lrj-transition);
    white-space: nowrap;
    text-decoration: none;
}

.lrj-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--lrj-shadow-md);
}

.lrj-btn:active {
    transform: translateY(0);
}

.lrj-btn--primary {
    background: var(--lrj-primary);
    color: var(--lrj-white);
}

.lrj-btn--primary:hover {
    background: var(--lrj-primary-dark);
    color: var(--lrj-white);
}

.lrj-btn--secondary {
    background: var(--lrj-secondary);
    color: var(--lrj-white);
}

.lrj-btn--secondary:hover {
    background: var(--lrj-secondary-dark);
    color: var(--lrj-white);
}

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

.lrj-btn--outline:hover {
    background: var(--lrj-primary);
    color: var(--lrj-white);
}

.lrj-btn--ghost {
    background: transparent;
    color: var(--lrj-gray-700);
    border-color: transparent;
}

.lrj-btn--ghost:hover {
    background: var(--lrj-gray-100);
    box-shadow: none;
    transform: none;
}

.lrj-btn--lg {
    padding: 0.8125rem 2rem;
    font-size: 1rem;
    border-radius: var(--lrj-radius-lg);
}

.lrj-btn--sm {
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
}

.lrj-btn--cta {
    background: var(--lrj-secondary);
    color: var(--lrj-white);
    border-radius: var(--lrj-radius-full);
    padding: 0.625rem 1.75rem;
}

.lrj-btn--cta:hover {
    background: var(--lrj-secondary-dark);
    color: var(--lrj-white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.lrj-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--lrj-white);
    border-bottom: 1px solid var(--lrj-gray-200);
    height: var(--lrj-header-height);
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.97);
}

.lrj-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--lrj-container-wide);
    margin: 0 auto;
    padding: 0 var(--lrj-space-lg);
}

.custom-logo-link {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    font-family: var(--lrj-font-heading);
    font-weight: 800;
    font-size: 1.375rem;
    color: var(--lrj-gray-900);
    text-decoration: none;
    flex-shrink: 0;
}

.custom-logo-link:hover {
    color: var(--lrj-gray-900);
}

.custom-logo-link img {
    max-height: 44px;
    width: auto;
}

.lrj-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.lrj-nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--lrj-gray-700);
    text-decoration: none;
    border-radius: var(--lrj-radius-sm);
    transition: all var(--lrj-transition);
    position: relative;
}

.lrj-nav__link:hover,
.lrj-nav__link--active {
    color: var(--lrj-primary);
    background: var(--lrj-primary-light);
}

.lrj-nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--lrj-primary);
    border-radius: 1px;
}

.lrj-header__actions {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    flex-shrink: 0;
}

.lrj-header__icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--lrj-gray-600);
    border-radius: var(--lrj-radius-sm);
    cursor: pointer;
    transition: all var(--lrj-transition);
    text-decoration: none;
}

.lrj-header__icon-btn:hover {
    background: var(--lrj-gray-100);
    color: var(--lrj-gray-900);
}

.lrj-header__mobile-avatar {
    border-radius: 50%;
    object-fit: cover;
}

/* Login / Rejestracja link (not logged in) */
.lrj-header__user-link {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lrj-gray-700);
    text-decoration: none;
    border-radius: var(--lrj-radius-sm);
    transition: all var(--lrj-transition);
}

.lrj-header__user-link:hover {
    color: var(--lrj-primary);
    background: var(--lrj-primary-light);
}

/* ============================================
   NOTIFICATION & USER BADGE
   ============================================ */
.lrj-badge--notif {
    display: none;
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 8px;
    height: 8px;
    padding: 0;
    background: var(--lrj-danger);
    border-radius: 50%;
    border: 2px solid var(--lrj-white);
}

.lrj-badge--notif[data-count]:not([data-count="0"]) {
    display: flex !important;
    min-width: 18px;
    height: 18px;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--lrj-white);
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 999px;
    top: 2px;
    right: 0;
}

.lrj-badge--mobile-notif {
    position: static;
    margin-left: auto;
    border: none;
}

/* ============================================
   DROPDOWN SYSTEM (shared)
   ============================================ */
.lrj-dropdown {
    position: relative;
}

.lrj-dropdown__trigger {
    cursor: pointer;
}

.lrj-dropdown__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease;
    pointer-events: none;
    overflow: hidden;
}

.lrj-dropdown.is-open > .lrj-dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lrj-dropdown__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: 1px solid var(--lrj-gray-100);
}

.lrj-dropdown__header h4 {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lrj-gray-900);
}

.lrj-dropdown__mark-read {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--lrj-gray-400);
    border-radius: var(--lrj-radius-sm);
    cursor: pointer;
    transition: all var(--lrj-transition);
}

.lrj-dropdown__mark-read:hover {
    background: var(--lrj-primary-light);
    color: var(--lrj-primary);
}

.lrj-dropdown__body {
    max-height: 340px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.lrj-dropdown__footer {
    padding: 10px 16px;
    border-top: 1px solid var(--lrj-gray-100);
    text-align: center;
}

.lrj-dropdown__footer a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--lrj-primary);
    text-decoration: none;
    transition: color var(--lrj-transition);
}

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

.lrj-dropdown__divider {
    height: 1px;
    background: var(--lrj-gray-100);
    margin: 4px 0;
}

/* ============================================
   DROPDOWN — NOTIFICATIONS PANEL
   ============================================ */
.lrj-dropdown__panel--notifications {
    width: 380px;
}

.lrj-notif-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--lrj-gray-400);
}

.lrj-notif-empty svg {
    opacity: 0.3;
    margin-bottom: 8px;
}

.lrj-notif-empty p {
    margin: 0;
    font-size: 0.875rem;
}

/* Notification item (will be rendered by JS) */
.lrj-notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--lrj-gray-700);
    transition: background var(--lrj-transition);
    border-bottom: 1px solid var(--lrj-gray-50);
}

.lrj-notif-item:hover {
    background: var(--lrj-gray-50);
}

.lrj-notif-item.is-unread {
    background: rgba(0, 162, 221, 0.04);
}

.lrj-notif-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--lrj-primary-light);
    color: var(--lrj-primary);
    border-radius: 50%;
}

.lrj-notif-item__content {
    flex: 1;
    min-width: 0;
}

.lrj-notif-item__text {
    font-size: 0.8125rem;
    line-height: 1.45;
    margin: 0 0 2px;
}

.lrj-notif-item__time {
    font-size: 0.6875rem;
    color: var(--lrj-gray-400);
}

.lrj-notif-item__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--lrj-primary);
    border-radius: 50%;
    align-self: center;
}

/* ============================================
   DROPDOWN — USER PROFILE PANEL
   ============================================ */
.lrj-dropdown__panel--user {
    width: 280px;
    padding: 4px 0;
}

.lrj-dropdown__user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.lrj-dropdown__user-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.lrj-dropdown__user-info strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lrj-gray-900);
    line-height: 1.3;
}

.lrj-dropdown__user-info span {
    display: block;
    font-size: 0.75rem;
    color: var(--lrj-gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

/* Menu items */
.lrj-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 0.875rem;
    font-weight: 450;
    color: var(--lrj-gray-700);
    text-decoration: none;
    transition: all var(--lrj-transition);
}

.lrj-dropdown__item:hover {
    background: var(--lrj-gray-50);
    color: var(--lrj-gray-900);
}

.lrj-dropdown__item svg {
    flex-shrink: 0;
    color: var(--lrj-gray-400);
    transition: color var(--lrj-transition);
}

.lrj-dropdown__item:hover svg {
    color: var(--lrj-primary);
}

.lrj-dropdown__item--danger {
    color: var(--lrj-danger);
}

.lrj-dropdown__item--danger:hover {
    background: #fef2f2;
    color: var(--lrj-danger);
}

.lrj-dropdown__item--danger svg,
.lrj-dropdown__item--danger:hover svg {
    color: var(--lrj-danger);
}

/* ============================================
   USER TRIGGER BUTTON (logged-in state)
   ============================================ */
.lrj-user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-full);
    background: var(--lrj-white);
    cursor: pointer;
    transition: all var(--lrj-transition);
    text-decoration: none;
    font-family: var(--lrj-font-sans);
}

.lrj-user-trigger:hover {
    border-color: var(--lrj-gray-300);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.lrj-user-trigger__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.lrj-user-trigger__name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lrj-gray-700);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lrj-user-trigger__arrow {
    color: var(--lrj-gray-400);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.lrj-dropdown.is-open .lrj-user-trigger__arrow {
    transform: rotate(180deg);
}

/* ============================================
   MOBILE PANEL — User Section
   ============================================ */
.lrj-mobile-panel__user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 16px;
}

.lrj-mobile-panel__user-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.lrj-mobile-panel__user-header strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lrj-gray-900);
}

.lrj-mobile-panel__user-header span {
    display: block;
    font-size: 0.75rem;
    color: var(--lrj-gray-500);
}

.lrj-mobile-panel__divider {
    height: 1px;
    background: var(--lrj-gray-100);
    margin: 8px 0;
}

.lrj-mobile-panel__footer-link--danger {
    color: var(--lrj-danger) !important;
}

.lrj-mobile-panel__footer-link--danger:hover {
    background: #fef2f2;
}

/* ---- Mobile: hide/show helpers ---- */
.lrj-header__icon-btn--mobile,
.lrj-hamburger {
    display: none;
}

@media (max-width: 1024px) {
    /* Hide desktop-only elements */
    .lrj-nav--desktop,
    .lrj-header__desktop-only {
        display: none !important;
    }

    /* Show mobile-only elements */
    .lrj-header__icon-btn--mobile {
        display: flex;
    }
    .lrj-hamburger {
        display: flex;
    }

    /* Dropdown panels: full width on small screens */
    .lrj-dropdown__panel--notifications {
        width: min(380px, calc(100vw - 32px));
    }
}

/* ============================================
   HAMBURGER BUTTON (animated 3-line → X)
   ============================================ */
.lrj-hamburger {
    position: relative;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
    -webkit-tap-highlight-color: transparent;
}

.lrj-hamburger__line {
    display: block;
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background-color: var(--lrj-gray-800);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.25s ease,
                background-color 0.25s ease;
}

.lrj-hamburger__line:nth-child(1) { top: 14px; }
.lrj-hamburger__line:nth-child(2) { top: 21px; }
.lrj-hamburger__line:nth-child(3) { top: 28px; }

/* Hamburger → X animation */
.lrj-hamburger.is-active .lrj-hamburger__line:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}
.lrj-hamburger.is-active .lrj-hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.lrj-hamburger.is-active .lrj-hamburger__line:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* ============================================
   MOBILE FULLSCREEN PANEL
   ============================================ */
.lrj-mobile-panel {
    position: fixed;
    top: var(--lrj-header-height);
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: var(--lrj-white);
    z-index: 999;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

    /* Slide-in from right */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0.4s;

    /* Subtle left shadow when open */
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0);
}

.lrj-mobile-panel.is-open {
    transform: translateX(0);
    visibility: visible;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}

/* On very small screens → true fullscreen */
@media (max-width: 480px) {
    .lrj-mobile-panel {
        max-width: 100%;
    }
}

/* Backdrop overlay */
.lrj-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.lrj-mobile-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Panel inner layout */
.lrj-mobile-panel__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: var(--lrj-space-lg) 0;
}

/* ---- Nav links ---- */
.lrj-mobile-panel__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--lrj-space-sm) 0;
}

.lrj-mobile-panel__link {
    display: flex;
    align-items: center;
    padding: 1rem var(--lrj-space-xl);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--lrj-gray-800);
    text-decoration: none;
    transition: background var(--lrj-transition), color var(--lrj-transition);
    border-left: 3px solid transparent;
}

.lrj-mobile-panel__link:hover {
    background: var(--lrj-gray-50);
    color: var(--lrj-primary);
}

.lrj-mobile-panel__link--active {
    color: var(--lrj-primary);
    background: var(--lrj-primary-light);
    border-left-color: var(--lrj-primary);
}

/* ---- CTA button area ---- */
.lrj-mobile-panel__cta {
    padding: var(--lrj-space-lg) var(--lrj-space-xl);
    border-top: 1px solid var(--lrj-gray-100);
}

/* ---- Footer links (login, notifications) ---- */
.lrj-mobile-panel__footer {
    padding: var(--lrj-space-md) var(--lrj-space-xl);
    border-top: 1px solid var(--lrj-gray-100);
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-xs);
}

.lrj-mobile-panel__footer-link {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--lrj-gray-600);
    text-decoration: none;
    transition: color var(--lrj-transition);
}

.lrj-mobile-panel__footer-link:hover {
    color: var(--lrj-primary);
}

/* ---- Body scroll lock when menu is open ---- */
body.lrj-menu-open {
    overflow: hidden;
}

/* ============================================
   HERO / MAP SECTION
   ============================================ */
.lrj-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.lrj-hero__map {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lrj-hero__map #lrj-map {
    width: 100%;
    height: 100%;
}

.lrj-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.6) 70%, rgba(255,255,255,0.95) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .lrj-hero {
        height: 360px;
    }
}

/* ============================================
   SEARCH BAR
   ============================================ */
.lrj-search {
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.lrj-search__card {
    background: var(--lrj-white);
    border-radius: var(--lrj-radius-lg);
    box-shadow: var(--lrj-shadow-xl);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid var(--lrj-gray-200);
}

.lrj-search__field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    width: 100%;
    padding: 0.75rem 1rem;
}

.lrj-search__field svg {
    width: 20px;
    height: 20px;
    color: var(--lrj-gray-400);
    flex-shrink: 0;
}

.lrj-search__field input,
.lrj-search__field select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9375rem;
    font-family: var(--lrj-font-sans);
    color: var(--lrj-gray-800);
    width: 100%;
}

.lrj-search__field input::placeholder {
    color: var(--lrj-gray-400);
}

.lrj-search__divider {
    width: 1px;
    height: 32px;
    background: var(--lrj-gray-200);
    flex-shrink: 0;
}

.lrj-search__submit {
    flex-shrink: 0;
}

.lrj-search__submit .lrj-btn {
    border-radius: var(--lrj-radius-md);
    padding: 0.75rem 2rem;
}

@media (max-width: 640px) {
    .lrj-search__card {
        flex-direction: column;
        padding: var(--lrj-space-md);
        gap: var(--lrj-space-sm);
    }
    .lrj-search__divider {
        width: 100%;
        height: 1px;
    }
    .lrj-search__submit {
        width: 100%;
    }
    .lrj-search__submit .lrj-btn {
        width: 100%;
    }
}

/* ============================================
   CATEGORY PILLS / TABS
   ============================================ */
.lrj-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lrj-space-sm);
    justify-content: center;
    margin-bottom: var(--lrj-space-2xl);
}

.lrj-category-tab {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lrj-gray-600);
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-full);
    cursor: pointer;
    transition: all var(--lrj-transition);
    text-decoration: none;
    white-space: nowrap;
}

.lrj-category-tab:hover {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
    background: var(--lrj-primary-light);
}

.lrj-category-tab.is-active {
    background: var(--lrj-primary);
    color: var(--lrj-white);
    border-color: var(--lrj-primary);
}

/* ============================================
   JOB CARDS
   ============================================ */
.lrj-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: var(--lrj-space-lg);
}

.lrj-job-card {
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    padding: var(--lrj-space-xl);
    transition: all var(--lrj-transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-md);
}

.lrj-job-card:hover {
    border-color: var(--lrj-primary);
    box-shadow: var(--lrj-shadow-card-hover);
    transform: translateY(-2px);
}

.lrj-job-card--sponsored {
    border-color: var(--lrj-sponsored);
    background: linear-gradient(135deg, var(--lrj-white) 0%, #fff9f5 100%);
}

.lrj-job-card__top {
    display: flex;
    align-items: flex-start;
    gap: var(--lrj-space-md);
}

.lrj-job-card__logo {
    width: 80px;
    height: 80px;
    border-radius: var(--lrj-radius-md);
    border: 1px solid var(--lrj-gray-200);
    object-fit: contain;
    flex-shrink: 0;
    background: var(--lrj-white);
    padding: 6px;
}

.lrj-job-card__info {
    flex: 1;
    min-width: 0;
}

.lrj-job-card__department {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lrj-primary);
    margin-bottom: 2px;
}

.lrj-job-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lrj-gray-900);
    margin-bottom: 4px;
    line-height: 1.35;
}

.lrj-job-card__title a {
    color: inherit;
    text-decoration: none;
}

.lrj-job-card__title a:hover {
    color: var(--lrj-primary);
}

.lrj-job-card__company {
    font-size: 0.875rem;
    color: var(--lrj-gray-500);
    font-weight: 500;
}

.lrj-job-card__fav {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-sm);
    background: var(--lrj-white);
    color: var(--lrj-gray-400);
    cursor: pointer;
    transition: all var(--lrj-transition);
}

.lrj-job-card__fav:hover {
    color: var(--lrj-danger);
    border-color: var(--lrj-danger);
    background: #fef2f2;
}

.lrj-job-card__meta {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
}

.lrj-job-card__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lrj-job-card__meta-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.lrj-job-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lrj-space-xs);
    margin-top: auto;
}

.lrj-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--lrj-radius-full);
    white-space: nowrap;
}

.lrj-tag--type {
    background: var(--lrj-gray-100);
    color: var(--lrj-gray-700);
}

.lrj-tag--sponsored {
    background: var(--lrj-secondary-light);
    color: var(--lrj-secondary);
    border: 1px solid rgba(20, 160, 119, 0.35);
}

.lrj-tag--remote {
    background: var(--lrj-secondary-light);
    color: var(--lrj-secondary);
}

.lrj-tag--salary {
    background: var(--lrj-primary-light);
    color: var(--lrj-primary-dark);
    font-weight: 600;
}

/* ============================================
   SIDEBAR FILTERS (Job Archive)
   ============================================ */
.lrj-archive-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--lrj-space-2xl);
    align-items: start;
}

@media (max-width: 900px) {
    .lrj-archive-layout {
        grid-template-columns: 1fr;
    }
}

.lrj-filters {
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    padding: var(--lrj-space-xl);
    position: sticky;
    top: calc(var(--lrj-header-height) + var(--lrj-space-lg));
}

.lrj-filters__group {
    margin-bottom: var(--lrj-space-xl);
}

.lrj-filters__group:last-child {
    margin-bottom: 0;
}

.lrj-filters__label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lrj-gray-800);
    margin-bottom: var(--lrj-space-sm);
    display: block;
}

.lrj-filters__input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    font-family: var(--lrj-font-sans);
    border: 1px solid var(--lrj-gray-300);
    border-radius: var(--lrj-radius-sm);
    background: var(--lrj-white);
    color: var(--lrj-gray-800);
    transition: border-color var(--lrj-transition);
}

.lrj-filters__input:focus {
    outline: none;
    border-color: var(--lrj-primary);
    box-shadow: 0 0 0 3px rgba(0, 162, 221, 0.12);
}

.lrj-filters__select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    font-family: var(--lrj-font-sans);
    border: 1px solid var(--lrj-gray-300);
    border-radius: var(--lrj-radius-sm);
    background: var(--lrj-white);
    color: var(--lrj-gray-800);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.lrj-filters__range {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--lrj-gray-200);
    border-radius: 2px;
    outline: none;
}

.lrj-filters__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--lrj-primary);
    cursor: pointer;
    border: 3px solid var(--lrj-white);
    box-shadow: var(--lrj-shadow-md);
}

.lrj-filters__range-value {
    font-size: 0.875rem;
    color: var(--lrj-primary);
    font-weight: 600;
    margin-top: var(--lrj-space-xs);
}

/* ============================================
   EMPLOYER CARDS
   ============================================ */
.lrj-employers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--lrj-space-lg);
}

.lrj-employer-card {
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    padding: var(--lrj-space-xl);
    text-align: center;
    transition: all var(--lrj-transition-slow);
}

.lrj-employer-card:hover {
    border-color: var(--lrj-primary);
    box-shadow: var(--lrj-shadow-card-hover);
    transform: translateY(-2px);
}

.lrj-employer-card__logo {
    width: 115px;
    height: 115px;
    border-radius: var(--lrj-radius-md);
    object-fit: contain;
    margin: 0 auto var(--lrj-space-md);
    border: 1px solid var(--lrj-gray-200);
    padding: 8px;
    background: var(--lrj-white);
}

.lrj-employer-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lrj-gray-900);
    margin-bottom: var(--lrj-space-xs);
}

.lrj-employer-card__name a {
    color: inherit;
    text-decoration: none;
}

.lrj-employer-card__name a:hover {
    color: var(--lrj-primary);
}

.lrj-employer-card__count {
    font-size: 0.8125rem;
    color: var(--lrj-primary);
    font-weight: 600;
}

/* ============================================
   SINGLE EMPLOYER PROFILE
   ============================================ */

/* Hero / Cover */
.lrj-emp__hero {
    position: relative;
    margin-bottom: 0;
}

.lrj-emp__cover {
    height: 360px;
    background-size: cover;
    background-position: center;
    background-color: var(--lrj-primary);
    position: relative;
}

.lrj-emp__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
}

.lrj-emp__cover--default {
    background: linear-gradient(135deg, var(--lrj-primary) 0%, #0077b6 50%, #023e8a 100%);
}

.lrj-emp__hero-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: var(--lrj-space-xl);
    margin-top: -80px;
    padding: var(--lrj-space-lg) var(--lrj-space-xl) var(--lrj-space-xl);
    background: var(--lrj-white);
    border-radius: var(--lrj-radius-xl);
    box-shadow: var(--lrj-shadow-card);
    border: 1px solid var(--lrj-gray-200);
}

/* Logo */
.lrj-emp__logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--lrj-radius-xl);
    border: 3px solid var(--lrj-gray-200);
    background: var(--lrj-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lrj-emp__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.lrj-emp__logo-placeholder {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lrj-primary);
    font-family: var(--lrj-font-heading);
}

/* Hero info */
.lrj-emp__hero-info {
    flex: 1;
    min-width: 0;
    padding-top: var(--lrj-space-lg);
}

.lrj-emp__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: var(--lrj-space-xs);
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
}

.lrj-emp__featured-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lrj-primary);
    color: #fff;
    flex-shrink: 0;
}

.lrj-emp__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lrj-space-md);
    font-size: 0.875rem;
    color: var(--lrj-gray-600);
    margin-bottom: var(--lrj-space-md);
}

.lrj-emp__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lrj-emp__meta-item svg {
    color: var(--lrj-primary);
    flex-shrink: 0;
}

.lrj-emp__actions {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    flex-wrap: wrap;
}

/* Social links */
.lrj-emp__socials {
    display: flex;
    gap: var(--lrj-space-xs);
}

.lrj-emp__social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--lrj-radius-md);
    border: 1px solid var(--lrj-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lrj-gray-600);
    transition: all var(--lrj-transition);
}

.lrj-emp__social-link:hover {
    color: var(--lrj-primary);
    border-color: var(--lrj-primary);
    background: rgba(0, 162, 221, 0.05);
}

/* 2-col layout */
.lrj-emp__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--lrj-space-2xl);
    align-items: start;
}

/* Sections */
.lrj-emp__main {
    min-width: 0;
}

.lrj-emp__section {
    margin-bottom: var(--lrj-space-3xl);
}

.lrj-emp__section-title {
    font-family: var(--lrj-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    margin-bottom: var(--lrj-space-lg);
    padding-bottom: var(--lrj-space-sm);
    border-bottom: 2px solid var(--lrj-gray-200);
}

.lrj-emp__section-title svg {
    color: var(--lrj-primary);
    flex-shrink: 0;
}

/* Video embed */
.lrj-emp__video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--lrj-radius-lg);
    overflow: hidden;
    background: var(--lrj-gray-100);
}

.lrj-emp__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gallery */
.lrj-emp__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--lrj-space-sm);
}

.lrj-emp__gallery-item {
    border-radius: var(--lrj-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

.lrj-emp__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lrj-emp__gallery-item:hover img {
    transform: scale(1.05);
}

/* Job list on employer page */
.lrj-emp__jobs-list {
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-md);
}

.lrj-emp__jobs-list .lrj-job-card {
    margin: 0;
}

/* Employer map */
.lrj-emp__map {
    height: 300px;
    border-radius: var(--lrj-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lrj-gray-200);
}

/* Sidebar */
.lrj-emp__sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-xl);
    position: sticky;
    top: calc(var(--lrj-space-xl) + 60px);
}

.lrj-emp__info-card {
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-xl);
    padding: var(--lrj-space-xl);
    box-shadow: var(--lrj-shadow-card);
}

.lrj-emp__info-card-title {
    font-family: var(--lrj-font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: var(--lrj-space-lg);
    padding-bottom: var(--lrj-space-sm);
    border-bottom: 2px solid var(--lrj-primary);
}

.lrj-emp__info-list {
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-sm);
}

.lrj-emp__info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--lrj-space-md);
    padding: var(--lrj-space-xs) 0;
    border-bottom: 1px solid var(--lrj-gray-100);
}

.lrj-emp__info-row:last-child {
    border-bottom: none;
}

.lrj-emp__info-label {
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.lrj-emp__info-label svg {
    color: var(--lrj-primary);
}

.lrj-emp__info-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lrj-gray-800);
    text-align: right;
    word-break: break-word;
}

.lrj-emp__info-value a {
    color: var(--lrj-primary);
    text-decoration: none;
}

.lrj-emp__info-value a:hover {
    text-decoration: underline;
}

.lrj-emp__info-socials {
    margin-top: var(--lrj-space-md);
    padding-top: var(--lrj-space-md);
    border-top: 1px solid var(--lrj-gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Sidebar contact form */
.lrj-emp__contact-form {
    position: relative;
}

.lrj-emp__form-field {
    margin-bottom: var(--lrj-space-sm);
}

.lrj-emp__form-msg {
    margin-top: var(--lrj-space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--lrj-radius-md);
}

.lrj-emp__form-msg:empty {
    display: none;
}

.lrj-emp__form-msg--success {
    padding: 0.5rem 0.75rem;
    background: #e6f9f1;
    color: #14A077;
    border: 1px solid rgba(20, 160, 119, 0.2);
}

.lrj-emp__form-msg--error {
    padding: 0.5rem 0.75rem;
    background: #fef2f2;
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Phone masking */
.lrj-emp__phone-masked {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lrj-emp__phone-visible {
    font-family: inherit;
    letter-spacing: 0.02em;
}

.lrj-emp__phone-hidden {
    letter-spacing: 0.05em;
    color: var(--lrj-gray-400);
}

.lrj-emp__phone-reveal {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: none;
    color: var(--lrj-primary);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: var(--lrj-radius-sm);
    transition: all var(--lrj-transition);
    white-space: nowrap;
}

.lrj-emp__phone-reveal:hover {
    background: rgba(0, 162, 221, 0.08);
    text-decoration: underline;
}

/* Lightbox gallery */
.lrj-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.lrj-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lrj-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--lrj-radius-lg);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lrj-lightbox.is-active .lrj-lightbox__img {
    transform: scale(1);
}

.lrj-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.2s;
    z-index: 10;
}

.lrj-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lrj-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background 0.2s;
    z-index: 10;
}

.lrj-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lrj-lightbox__nav--prev {
    left: 20px;
}

.lrj-lightbox__nav--next {
    right: 20px;
}

.lrj-lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Pulsating map marker */
.lrj-map-pin {
    position: relative;
    width: 72px;
    height: 72px;
    cursor: pointer;
}

.lrj-map-pin__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 162, 221, 0.25);
    animation: lrj-pulse 2s ease-out infinite;
}

.lrj-map-pin__pulse::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: rgba(0, 162, 221, 0.35);
    animation: lrj-pulse 2s ease-out infinite 0.4s;
}

.lrj-map-pin__avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--lrj-primary);
    background: var(--lrj-white);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
    z-index: 1;
}

.lrj-map-pin__avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.lrj-map-pin__avatar-text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--lrj-primary);
    font-family: var(--lrj-font-heading);
}

@keyframes lrj-pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .lrj-emp__layout {
        grid-template-columns: 1fr;
    }
    .lrj-emp__sidebar {
        position: static;
    }
    .lrj-section--employer {
        padding-top: var(--lrj-space-xl);
    }
}

@media (max-width: 768px) {
    .lrj-emp__cover {
        height: 180px;
    }
    .lrj-emp__hero-card {
        flex-direction: column;
        align-items: center;
        gap: var(--lrj-space-sm);
        margin-top: -45px;
        padding: var(--lrj-space-md);
        text-align: center;
    }
    .lrj-emp__logo {
        width: 80px;
        height: 80px;
    }
    .lrj-emp__hero-info {
        padding-top: 0;
        width: 100%;
    }
    .lrj-emp__title {
        font-size: 1.15rem;
        justify-content: center;
        text-align: center;
        margin-bottom:10px;
    }
    .lrj-emp__meta {
        justify-content: center;
        font-size: 0.8125rem;
        gap: var(--lrj-space-sm);
        margin-bottom: var(--lrj-space-sm);
    }
    .lrj-emp__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    .lrj-emp__actions .lrj-btn {
        justify-content: center;
        width: 100%;
        font-size: 0.8125rem;
    }
    .lrj-emp__socials {
        justify-content: center;
        width: 100%;
    }
    /* Reduce section gap after breadcrumb on employer page */
    .lrj-section--employer {
        padding-top: var(--lrj-space-lg);
    }
    .lrj-emp__section {
        margin-bottom: var(--lrj-space-xl);
    }
    .lrj-emp__section-title {
        font-size: 1.0625rem;
    }
    .lrj-emp__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .lrj-emp__map {
        height: 220px;
    }
    .lrj-emp__info-card {
        padding: var(--lrj-space-md);
    }
    .lrj-emp__video {
        border-radius: var(--lrj-radius-md);
    }
}

/* ============================================
   EMPLOYER ARCHIVE / LIST — Full-width layout
   ============================================ */

/* Main full-width container: list panel | map, filling viewport */
.lrj-emplist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: calc(100vh - 80px);
    overflow: hidden;
}

/* Left panel: toolbar + filters + scrollable list */
.lrj-emplist__panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--lrj-white);
    border-right: 1px solid var(--lrj-gray-200);
}

/* Toolbar */
.lrj-emplist__toolbar {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    padding: var(--lrj-space-md) var(--lrj-space-lg);
    border-bottom: 1px solid var(--lrj-gray-100);
    flex-wrap: wrap;
    flex-shrink: 0;
}

.lrj-emplist__filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--lrj-gray-300);
    border-radius: var(--lrj-radius-md);
    background: var(--lrj-white);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lrj-gray-700);
    cursor: pointer;
    transition: all var(--lrj-transition);
}

.lrj-emplist__filter-toggle:hover,
.lrj-emplist__filter-toggle.is-active {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
    background: rgba(0, 162, 221, 0.04);
}

.lrj-emplist__toolbar-selects {
    display: flex;
    gap: var(--lrj-space-sm);
    margin-left: auto;
}

.lrj-input--sm {
    padding: 0.45rem 1rem 0.45rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: var(--lrj-radius-md);
    min-width: 170px;
}

/* Filters panel */
.lrj-emplist__filters {
    background: var(--lrj-white);
    border-bottom: 1px solid var(--lrj-gray-200);
    padding: var(--lrj-space-lg);
    flex-shrink: 0;
}

.lrj-emplist__filters-inner {
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-md);
}

.lrj-emplist__filter-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lrj-gray-700);
    margin-bottom: 6px;
}

.lrj-emplist__search-wrap {
    position: relative;
}

.lrj-emplist__search-wrap svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lrj-gray-400);
    pointer-events: none;
}

.lrj-emplist__search-wrap .lrj-input {
    padding-left: 38px;
}

/* Scrollable employer list */
.lrj-emplist__list {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.lrj-emplist__list::-webkit-scrollbar {
    width: 6px;
}

.lrj-emplist__list::-webkit-scrollbar-thumb {
    background: var(--lrj-gray-300);
    border-radius: 3px;
}

.lrj-emplist__empty {
    padding: var(--lrj-space-3xl);
    text-align: center;
    color: var(--lrj-gray-500);
    font-size: 0.9375rem;
}

/* Employer card (list item) */
.lrj-empcard {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    padding: var(--lrj-space-md) var(--lrj-space-lg);
    border-bottom: 1px solid var(--lrj-gray-100);
    text-decoration: none;
    color: inherit;
    transition: background var(--lrj-transition);
    flex-shrink: 0;
}

.lrj-empcard:hover {
    background: var(--lrj-bg-alt);
}

.lrj-empcard--featured {
    border-left: 3px solid var(--lrj-primary);
}

.lrj-empcard__logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--lrj-radius-md);
    border: 1px solid var(--lrj-gray-200);
    background: var(--lrj-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lrj-empcard__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.lrj-empcard__initials {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--lrj-primary);
    font-family: var(--lrj-font-heading);
}

.lrj-empcard__body {
    flex: 1;
    min-width: 0;
}

.lrj-empcard__industry {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--lrj-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.lrj-empcard__name {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lrj-empcard__name .lrj-emp__featured-badge {
    width: 20px;
    height: 20px;
}

.lrj-empcard__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
    margin-top: 2px;
}

.lrj-empcard__location svg {
    color: var(--lrj-gray-400);
    flex-shrink: 0;
}

.lrj-empcard__right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
}

.lrj-empcard__jobs-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lrj-gray-600);
    border: 1px solid var(--lrj-gray-300);
    border-radius: var(--lrj-radius-full);
    white-space: nowrap;
    transition: all var(--lrj-transition);
}

.lrj-empcard:hover .lrj-empcard__jobs-badge {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
}

/* Right: map fills full height */
.lrj-emplist__map {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .lrj-emplist {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
    }
    .lrj-emplist__panel {
        border-right: none;
        overflow: visible;
        padding-bottom: var(--lrj-space-2xl);
    }
    .lrj-emplist__list {
        overflow-y: visible;
        max-height: none;
    }
    .lrj-emplist__map {
        height: 400px;
        order: -1;
    }
    .lrj-emplist__toolbar {
        padding: var(--lrj-space-md) var(--lrj-space-lg);
        flex-wrap: wrap;
    }
    .lrj-emplist__toolbar-selects .lrj-input--sm {
        min-width: 140px;
    }
}

@media (max-width: 600px) {
    .lrj-emplist__map {
        height: 300px;
    }
    .lrj-emplist__toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: var(--lrj-space-md);
        gap: var(--lrj-space-sm);
        position: relative;
        z-index: 2;
        background: var(--lrj-white);
    }
    .lrj-emplist__toolbar-selects {
        margin-left: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--lrj-space-sm);
    }
    .lrj-emplist__toolbar-selects .lrj-input--sm {
        min-width: 0;
        width: 100%;
        font-size: 0.8125rem;
        padding: 0.5rem 2rem 0.5rem 0.625rem;
        box-sizing: border-box;
    }
    .lrj-emplist__filter-toggle {
        justify-content: center;
        padding: 0.6rem 1rem;
    }
    .lrj-emplist__filters {
        padding: var(--lrj-space-md);
        position: relative;
        z-index: 1;
        background: var(--lrj-white);
    }
    .lrj-emplist__filters-inner {
        display: flex;
        flex-direction: column;
        gap: var(--lrj-space-sm);
    }
    .lrj-emplist__filter-group--btn .lrj-btn {
        width: 100%;
    }
    .lrj-empcard {
        flex-wrap: wrap;
        gap: var(--lrj-space-sm);
        padding: var(--lrj-space-md);
        border-bottom: 1px solid var(--lrj-gray-200);
    }
    .lrj-empcard__logo {
        width: 50px;
        height: 50px;
    }
    .lrj-empcard__right {
        width: 100%;
        margin-top: var(--lrj-space-xs);
    }
    .lrj-empcard__jobs-badge {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    .lrj-emplist__panel {
        padding-bottom: var(--lrj-space-3xl);
    }
}


/* ============================================
   EVENTS SECTION
   ============================================ */
.lrj-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--lrj-space-lg);
}

.lrj-event-card {
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    overflow: hidden;
    transition: all var(--lrj-transition-slow);
}

.lrj-event-card:hover {
    border-color: var(--lrj-primary);
    box-shadow: var(--lrj-shadow-card-hover);
    transform: translateY(-2px);
}

.lrj-event-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.lrj-event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--lrj-transition-slow);
}

.lrj-event-card:hover .lrj-event-card__image img {
    transform: scale(1.04);
}

.lrj-event-card__category {
    position: absolute;
    top: var(--lrj-space-md);
    left: var(--lrj-space-md);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255,255,255,0.92);
    color: var(--lrj-primary);
    border-radius: var(--lrj-radius-full);
    backdrop-filter: blur(4px);
}

.lrj-event-card__body {
    padding: var(--lrj-space-xl);
}

.lrj-event-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: var(--lrj-space-sm);
    line-height: 1.35;
}

.lrj-event-card__title a {
    color: var(--lrj-gray-900);
    text-decoration: none;
}

.lrj-event-card__title a:hover {
    color: var(--lrj-primary);
}

.lrj-event-card__meta {
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
}

/* ============================================
   TRUSTED COMPANIES — Infinite Marquee
   ============================================ */
.lrj-trusted {
    padding: var(--lrj-space-3xl) 0;
    text-align: center;
}

.lrj-trusted__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    margin-bottom: var(--lrj-space-2xl);
}

/* Marquee container — fade edges */
.lrj-trusted__marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Scrolling track */
.lrj-trusted__track {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-2xl);
    width: max-content;
    animation: lrj-marquee 30s linear infinite;
}

.lrj-trusted__marquee:hover .lrj-trusted__track {
    animation-play-state: paused;
}

@keyframes lrj-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Logo items */
.lrj-trusted__logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity var(--lrj-transition), transform 0.2s ease;
    text-decoration: none;
}

.lrj-trusted__logo-link:hover {
    transform: scale(1.08);
}

.lrj-trusted__logo {
    height: 100px;
    max-width: 240px;
    object-fit: contain;
    opacity: 0.85;
    border-radius: 8px;
    transition: opacity var(--lrj-transition);
}

.lrj-trusted__logo-link:hover .lrj-trusted__logo {
    opacity: 1;
}

@media (max-width: 768px) {
    .lrj-trusted__logo {
        height: 72px;
        max-width: 180px;
    }
    .lrj-trusted__track {
        gap: var(--lrj-space-xl);
        animation-duration: 20s;
    }
}

/* ============================================
   BLOG GRID & CARDS
   ============================================ */
.lrj-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--lrj-space-xl);
    margin-bottom: var(--lrj-space-2xl);
}

.lrj-blog-card {
    background: var(--lrj-white);
    border-radius: var(--lrj-radius-xl);
    overflow: hidden;
    border: 1px solid var(--lrj-gray-200);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lrj-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.lrj-blog-card__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--lrj-gray-100);
}

.lrj-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lrj-blog-card:hover .lrj-blog-card__img {
    transform: scale(1.05);
}

.lrj-blog-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--lrj-gray-400);
}

.lrj-blog-card__placeholder svg {
    width: 48px;
    height: 48px;
}

.lrj-blog-card__body {
    padding: var(--lrj-space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lrj-blog-card__cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lrj-primary);
    margin-bottom: var(--lrj-space-xs);
}

.lrj-blog-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: var(--lrj-space-sm);
    color: var(--lrj-gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lrj-blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--lrj-gray-600);
    line-height: 1.55;
    margin-bottom: var(--lrj-space-md);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lrj-blog-card__date {
    font-size: 0.8rem;
    color: var(--lrj-gray-400);
}

.lrj-section__footer {
    text-align: center;
    margin-top: var(--lrj-space-lg);
}

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

@media (max-width: 600px) {
    .lrj-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWSLETTER — Full-width horizontal bar
   ============================================ */
.lrj-newsletter {
    background: var(--lrj-primary);
    padding: var(--lrj-space-2xl) 0;
    width: 100%;
}

.lrj-newsletter__inner {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-2xl);
}

.lrj-newsletter__text {
    flex-shrink: 0;
    max-width: 360px;
}

.lrj-newsletter__title {
    font-family: var(--lrj-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 var(--lrj-space-xs);
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
}

.lrj-newsletter__title svg {
    flex-shrink: 0;
}

.lrj-newsletter__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.lrj-newsletter__form {
    flex: 1;
    position: relative;
    min-width: 0;
}

.lrj-newsletter__fields {
    display: flex;
    gap: var(--lrj-space-sm);
}

.lrj-newsletter__input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--lrj-font-sans);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--lrj-radius-md);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: border-color var(--lrj-transition), background var(--lrj-transition);
}

.lrj-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.lrj-newsletter__input--name {
    flex: 0.6;
}

.lrj-newsletter__input:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.lrj-newsletter__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--lrj-space-xs);
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: var(--lrj-primary);
    border: none;
    border-radius: var(--lrj-radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all var(--lrj-transition);
}

.lrj-newsletter__btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    color: var(--lrj-primary);
}

.lrj-newsletter__btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.lrj-newsletter__bottom-row {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-lg);
    margin-top: var(--lrj-space-sm);
}

.lrj-newsletter__consent {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: flex-start;
    gap: var(--lrj-space-xs);
    text-align: left;
    line-height: 1.5;
}

.lrj-newsletter__consent a {
    color: #fff;
    text-decoration: underline;
}

.lrj-newsletter__consent a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.lrj-newsletter__consent input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: #fff;
    cursor: pointer;
}

/* Newsletter status messages */
.lrj-newsletter__message {
    padding: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--lrj-radius-md);
    transition: all 0.3s ease;
}

.lrj-newsletter__message:empty {
    display: none;
}

.lrj-newsletter__message--success {
    display: block;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: #d4fbe8;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lrj-newsletter__message--error {
    display: block;
    padding: 0.5rem 0.75rem;
    background: rgba(220, 53, 69, 0.2);
    color: #fdd;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

/* Newsletter — tablet */
@media (max-width: 900px) {
    .lrj-newsletter__inner {
        flex-direction: column;
        text-align: center;
    }
    .lrj-newsletter__text {
        max-width: 100%;
    }
    .lrj-newsletter__title {
        justify-content: center;
    }
    .lrj-newsletter__form {
        width: 100%;
    }
    .lrj-newsletter__bottom-row {
        justify-content: center;
    }
}

/* Newsletter — mobile */
@media (max-width: 600px) {
    .lrj-newsletter {
        padding: var(--lrj-space-xl) 0;
    }
    .lrj-newsletter__fields {
        flex-direction: column;
    }
    .lrj-newsletter__input--name {
        flex: 1;
    }
    .lrj-newsletter__btn {
        width: 100%;
        justify-content: center;
    }
    .lrj-newsletter__bottom-row {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.lrj-footer {
    background: var(--lrj-white);
    border-top: 1px solid var(--lrj-gray-200);
    padding: var(--lrj-space-3xl) 0 var(--lrj-space-xl);
}

.lrj-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: var(--lrj-space-2xl);
    margin-bottom: var(--lrj-space-3xl);
}

@media (max-width: 1024px) {
    .lrj-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--lrj-space-xl);
    }
}

@media (max-width: 768px) {
    .lrj-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--lrj-space-2xl);
    }
}

@media (max-width: 480px) {
    .lrj-footer__grid {
        grid-template-columns: 1fr;
    }
}

.lrj-footer__brand {
    max-width: 320px;
}

.lrj-footer__brand .custom-logo-link {
    margin-bottom: var(--lrj-space-md);
}

.lrj-footer__brand p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.lrj-footer__contact {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    font-size: 0.875rem;
    color: var(--lrj-gray-600);
    margin-top: var(--lrj-space-md);
}

.lrj-footer__contact a {
    color: var(--lrj-gray-800);
    font-weight: 600;
}

.lrj-footer__col h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lrj-gray-900);
    margin-bottom: var(--lrj-space-lg);
}

.lrj-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-sm);
}

.lrj-footer__links a {
    font-size: 0.875rem;
    color: var(--lrj-gray-600);
    text-decoration: none;
    transition: color var(--lrj-transition);
}

.lrj-footer__links a:hover {
    color: var(--lrj-primary);
}

.lrj-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--lrj-space-md);
    padding-top: var(--lrj-space-xl);
    border-top: 1px solid var(--lrj-gray-200);
}

.lrj-footer__copy {
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
}

.lrj-footer__legal {
    display: flex;
    gap: var(--lrj-space-lg);
    list-style: none;
}

.lrj-footer__legal a {
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
}

.lrj-footer__legal a:hover {
    color: var(--lrj-primary);
}

.lrj-social-links {
    display: flex;
    gap: var(--lrj-space-sm);
}

.lrj-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--lrj-radius-sm);
    color: var(--lrj-gray-500);
    border: 1px solid var(--lrj-gray-200);
    transition: all var(--lrj-transition);
}

.lrj-social-link:hover {
    color: var(--lrj-primary);
    border-color: var(--lrj-primary);
    background: var(--lrj-primary-light);
}

/* ============================================
   SINGLE JOB PAGE
   ============================================ */
.lrj-single-job {
    max-width: 860px;
    margin: 0 auto;
}

.lrj-single-job__header {
    display: flex;
    align-items: flex-start;
    gap: var(--lrj-space-xl);
    margin-bottom: var(--lrj-space-2xl);
    padding-bottom: var(--lrj-space-2xl);
    border-bottom: 1px solid var(--lrj-gray-200);
}

.lrj-single-job__logo {
    width: 72px;
    height: 72px;
    border-radius: var(--lrj-radius-lg);
    border: 1px solid var(--lrj-gray-200);
    object-fit: contain;
    padding: 8px;
    flex-shrink: 0;
}

.lrj-single-job__details h1 {
    margin-bottom: var(--lrj-space-sm);
}

.lrj-single-job__company-name {
    font-size: 1.0625rem;
    color: var(--lrj-gray-600);
    font-weight: 500;
    margin-bottom: var(--lrj-space-md);
}

.lrj-single-job__quick-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lrj-space-md);
}

.lrj-single-job__content {
    line-height: 1.75;
}

.lrj-single-job__content h2,
.lrj-single-job__content h3 {
    margin: var(--lrj-space-2xl) 0 var(--lrj-space-md);
}

.lrj-single-job__content ul,
.lrj-single-job__content ol {
    padding-left: var(--lrj-space-xl);
    margin-bottom: var(--lrj-space-md);
}

.lrj-single-job__content li {
    margin-bottom: var(--lrj-space-sm);
}

.lrj-single-job__apply-bar {
    position: sticky;
    bottom: 0;
    background: var(--lrj-white);
    border-top: 1px solid var(--lrj-gray-200);
    padding: var(--lrj-space-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}

/* ============================================
   CITY TILES (Photo grid — homepage)
   ============================================ */
.lrj-cities-tiles {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--lrj-space-md);
}

/* First tile spans 2 rows (large) */
.lrj-city-tile--large {
    grid-row: 1 / 3;
}

.lrj-city-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--lrj-radius-xl, 16px);
    text-decoration: none;
    color: var(--lrj-white);
    min-height: 200px;
    background: var(--lrj-gray-200);
}

.lrj-city-tile--large {
    min-height: 420px;
}

.lrj-city-tile--placeholder {
    background: linear-gradient(135deg, var(--lrj-primary) 0%, #0077a8 50%, var(--lrj-secondary) 100%);
}
.lrj-city-tile--placeholder:nth-child(2n) {
    background: linear-gradient(135deg, #0e7490 0%, var(--lrj-primary) 60%, #6366f1 100%);
}
.lrj-city-tile--placeholder:nth-child(3n) {
    background: linear-gradient(135deg, var(--lrj-secondary) 0%, #0e7490 60%, var(--lrj-primary) 100%);
}

.lrj-city-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.lrj-city-tile:hover .lrj-city-tile__img {
    transform: scale(1.06);
}

.lrj-city-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.lrj-city-tile:hover .lrj-city-tile__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.02) 100%);
}

.lrj-city-tile__content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px 20px;
    z-index: 2;
    color: #fff;
}

.lrj-city-tile__name {
    font-family: var(--lrj-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 2px;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6), 0 0 2px rgba(0,0,0,0.3);
}

.lrj-city-tile--large .lrj-city-tile__name {
    font-size: 1.75rem;
}

.lrj-city-tile__count {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Link arrow (used in section header) */
.lrj-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--lrj-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--lrj-transition);
}

.lrj-link-arrow:hover {
    color: var(--lrj-primary-dark);
}

.lrj-link-arrow svg {
    transition: transform 0.2s ease;
}

.lrj-link-arrow:hover svg {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .lrj-cities-tiles {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .lrj-city-tile--large {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 260px;
    }
}

@media (max-width: 540px) {
    .lrj-cities-tiles {
        grid-template-columns: 1fr;
    }
    .lrj-city-tile {
        min-height: 180px;
    }
    .lrj-city-tile--large {
        min-height: 240px;
    }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.lrj-breadcrumb {
    padding: var(--lrj-space-md) 0;
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
    border-bottom: 1px solid var(--lrj-gray-100);
}

.lrj-breadcrumb a {
    color: var(--lrj-gray-500);
}

.lrj-breadcrumb a:hover {
    color: var(--lrj-primary);
}

.lrj-breadcrumb__sep {
    margin: 0 var(--lrj-space-sm);
    color: var(--lrj-gray-300);
}

/* ============================================
   PAGINATION
   ============================================ */
.lrj-pagination {
    display: flex;
    justify-content: center;
    gap: var(--lrj-space-xs);
    margin-top: var(--lrj-space-2xl);
}

.lrj-pagination a,
.lrj-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--lrj-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lrj-gray-600);
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    transition: all var(--lrj-transition);
    text-decoration: none;
}

.lrj-pagination a:hover {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
}

.lrj-pagination .current {
    background: var(--lrj-primary);
    color: var(--lrj-white);
    border-color: var(--lrj-primary);
}

/* ============================================
   LOADING / SKELETON
   ============================================ */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.lrj-skeleton {
    background: linear-gradient(90deg, var(--lrj-gray-100) 25%, var(--lrj-gray-50) 50%, var(--lrj-gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--lrj-radius-sm);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.lrj-faq-hero {
    background: var(--lrj-primary);
    color: #fff;
    padding: var(--lrj-space-3xl) 0;
    text-align: center;
}

.lrj-faq-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--lrj-space-sm);
    color: #fff;
}

.lrj-faq-hero__subtitle {
    font-size: 1.0625rem;
    opacity: 0.9;
    max-width: 540px;
    margin: 0 auto;
    color: white;
}

.lrj-faq__category {
    margin-bottom: var(--lrj-space-2xl);
}

.lrj-faq__category-title {
    font-family: var(--lrj-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lrj-primary);
    margin-bottom: var(--lrj-space-md);
    padding-bottom: var(--lrj-space-xs);
    border-bottom: 2px solid var(--lrj-primary);
}

.lrj-faq__item {
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    margin-bottom: var(--lrj-space-sm);
    overflow: hidden;
    background: var(--lrj-white);
}

.lrj-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--lrj-space-md) var(--lrj-space-lg);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lrj-gray-900);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--lrj-font-heading);
    text-align: left;
    gap: var(--lrj-space-md);
    transition: background 0.15s ease;
}

.lrj-faq__question:hover {
    background: var(--lrj-gray-50);
}

.lrj-faq__question svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--lrj-primary);
}

.lrj-faq__item--open .lrj-faq__question svg {
    transform: rotate(90deg);
}

.lrj-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.lrj-faq__item--open .lrj-faq__answer {
    max-height: 500px;
}

.lrj-faq__answer p {
    padding: 0 var(--lrj-space-lg) var(--lrj-space-lg);
    color: var(--lrj-gray-600);
    line-height: 1.65;
}

.lrj-faq-cta {
    text-align: center;
    padding: var(--lrj-space-3xl) 0;
    background: var(--lrj-gray-50);
}

.lrj-faq-cta h2 { margin-bottom: var(--lrj-space-xs); }
.lrj-faq-cta p { color: var(--lrj-gray-600); margin-bottom: var(--lrj-space-xl); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.lrj-contact__map { height: 350px; width: 100%; }

.lrj-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--lrj-space-3xl);
    align-items: start;
}

.lrj-contact__heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--lrj-space-xl);
}

.lrj-contact__info-card {
    display: flex;
    gap: var(--lrj-space-md);
    align-items: flex-start;
    margin-bottom: var(--lrj-space-lg);
    padding-bottom: var(--lrj-space-lg);
    border-bottom: 1px solid var(--lrj-gray-200);
}

.lrj-contact__info-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: var(--lrj-gray-50);
    border-radius: var(--lrj-radius-md);
    color: var(--lrj-primary);
}

.lrj-contact__info-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.lrj-contact__info-body a { color: var(--lrj-primary); text-decoration: none; }
.lrj-contact__info-body a:hover { text-decoration: underline; }
.lrj-contact__info-body p { color: var(--lrj-gray-600); font-size: 0.9375rem; line-height: 1.55; }

.lrj-contact__socials { display: flex; gap: var(--lrj-space-sm); margin-top: var(--lrj-space-md); }

.lrj-contact__social-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--lrj-gray-100);
    color: var(--lrj-gray-600);
    transition: background 0.2s ease, color 0.2s ease;
}

.lrj-contact__social-link:hover { background: var(--lrj-primary); color: #fff; }

.lrj-contact__form-wrap h2 { font-size: 1.25rem; margin-bottom: var(--lrj-space-lg); }

.lrj-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lrj-space-md);
}

.lrj-contact__field-wrap { margin-bottom: var(--lrj-space-md); }

.lrj-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-md);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--lrj-gray-50);
    box-sizing: border-box;
    max-width: 100%;
}

.lrj-input:focus { outline: none; border-color: var(--lrj-primary); background: var(--lrj-white); }
select.lrj-input,
select.lrj-input.lrj-input--sm {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}
.lrj-input--textarea { resize: vertical; min-height: 120px; }

.lrj-contact__message {
    margin-top: var(--lrj-space-md);
    padding: var(--lrj-space-sm) var(--lrj-space-md);
    border-radius: var(--lrj-radius-md);
    font-size: 0.9rem;
}

.lrj-contact__message--success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.lrj-contact__message--error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

@media (max-width: 768px) {
    .lrj-contact__grid { grid-template-columns: 1fr; }
    .lrj-contact__form-row { grid-template-columns: 1fr; }
    .lrj-contact__map { height: 250px; }
}

/* ============================================
   HIRE / ZATRUDNIJ Z NAMI PAGE
   ============================================ */
.lrj-hire__hero {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--lrj-space-3xl); align-items: center;
}

.lrj-hire__hero-img {
    aspect-ratio: 4/3; background: var(--lrj-gray-200);
    border-radius: var(--lrj-radius-xl); overflow: hidden;
}

.lrj-hire__hero-img img { width: 100%; height: 100%; object-fit: cover; }

.lrj-hire__hero-content h1 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800; line-height: 1.25;
    margin-bottom: var(--lrj-space-lg);
}

.lrj-hire__hero-content p { color: var(--lrj-gray-600); line-height: 1.65; margin-bottom: var(--lrj-space-xl); }

.lrj-hire__specs-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: var(--lrj-space-lg); margin-bottom: var(--lrj-space-2xl);
}

.lrj-hire__spec-card {
    text-align: center;
    padding: var(--lrj-space-xl) var(--lrj-space-md);
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-xl);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lrj-hire__spec-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.lrj-hire__spec-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--lrj-space-md);
    border-radius: var(--lrj-radius-lg);
    background: rgba(0,166,153,0.08);
    color: var(--lrj-primary);
}

.lrj-hire__spec-card h3 { font-size: 0.9375rem; font-weight: 600; line-height: 1.35; }

.lrj-hire__features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--lrj-space-md); margin: var(--lrj-space-xl) 0 var(--lrj-space-2xl);
}

.lrj-hire__feature-item {
    display: flex; align-items: flex-start;
    gap: var(--lrj-space-sm); font-size: 0.9375rem; line-height: 1.5;
}

.lrj-hire__feature-item svg { flex-shrink: 0; color: var(--lrj-primary); margin-top: 2px; }

.lrj-hire__stats { background: var(--lrj-gray-900); color: #fff; padding: var(--lrj-space-3xl) 0; }

.lrj-hire__stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: var(--lrj-space-xl); text-align: center;
}

.lrj-hire__stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: var(--lrj-primary);
    margin-bottom: var(--lrj-space-xs);
}

.lrj-hire__stat-label { font-size: 0.9rem; opacity: 0.8; }

.lrj-hire__process {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--lrj-space-xl);
}

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

.lrj-hire__step-number {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800;
    color: var(--lrj-primary);
    background: rgba(0,166,153,0.1);
    border-radius: 50%;
    margin: 0 auto var(--lrj-space-md);
}

.lrj-hire__step-title { font-size: 1.125rem; font-weight: 700; margin-bottom: var(--lrj-space-sm); }
.lrj-hire__step p { color: var(--lrj-gray-600); font-size: 0.9375rem; line-height: 1.55; }

/* Testimonials */
.lrj-hire__testimonials { position: relative; overflow: hidden; }

.lrj-hire__testimonials-track {
    display: flex; gap: var(--lrj-space-xl);
    overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; -ms-overflow-style: none;
}
.lrj-hire__testimonials-track::-webkit-scrollbar { display: none; }

.lrj-hire__testimonial {
    min-width: calc(50% - var(--lrj-space-xl) / 2);
    flex-shrink: 0;
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-xl);
    padding: var(--lrj-space-xl);
}

.lrj-hire__testimonial-stars { color: #f59e0b; margin-bottom: var(--lrj-space-md); display: flex; gap: 2px; }

.lrj-hire__testimonial-text {
    font-size: 0.9375rem; font-style: italic;
    color: var(--lrj-gray-700); line-height: 1.6;
    margin-bottom: var(--lrj-space-lg);
}

.lrj-hire__testimonial-author { font-weight: 700; font-size: 0.9rem; }
.lrj-hire__testimonial-role { font-size: 0.8rem; color: var(--lrj-gray-500); }

.lrj-hire__testimonials-nav {
    display: flex; justify-content: center;
    gap: var(--lrj-space-sm); margin-top: var(--lrj-space-xl);
}

.lrj-hire__testimonials-nav button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--lrj-gray-300);
    background: var(--lrj-white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--lrj-gray-700);
    transition: all 0.2s ease;
}

.lrj-hire__testimonials-nav button:hover { background: var(--lrj-primary); color: #fff; border-color: var(--lrj-primary); }

/* Pricing */
.lrj-hire__pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--lrj-space-xl); align-items: start;
}

.lrj-hire__price-card {
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-xl);
    padding: var(--lrj-space-2xl);
    display: flex; flex-direction: column;
}

.lrj-hire__price-card--featured {
    border-color: var(--lrj-primary);
    box-shadow: 0 8px 32px rgba(0,166,153,0.15);
    position: relative;
}

.lrj-hire__price-card--featured::before {
    content: "Popularne";
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--lrj-primary); color: #fff;
    font-size: 0.75rem; font-weight: 700;
    padding: 4px 16px; border-radius: 20px;
}

.lrj-hire__price-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: var(--lrj-space-xs); }
.lrj-hire__price-subtitle { font-size: 0.9rem; color: var(--lrj-gray-600); margin-bottom: var(--lrj-space-lg); }

.lrj-hire__price-features {
    list-style: none; padding: 0; margin: 0 0 var(--lrj-space-lg); flex: 1;
}

.lrj-hire__price-features li {
    display: flex; align-items: flex-start;
    gap: var(--lrj-space-sm); font-size: 0.9rem;
    padding: var(--lrj-space-xs) 0; color: var(--lrj-gray-700);
}

.lrj-hire__price-features li svg { color: var(--lrj-primary); flex-shrink: 0; margin-top: 2px; }

.lrj-hire__price-amount { font-size: 1.125rem; font-weight: 700; color: var(--lrj-primary); margin-bottom: var(--lrj-space-xs); }
.lrj-hire__price-guarantee { font-size: 0.8rem; color: var(--lrj-gray-500); margin-bottom: var(--lrj-space-lg); }

/* Bottom CTA */
.lrj-hire__cta-bottom { text-align: center; background: var(--lrj-gray-900); color: #fff; padding: var(--lrj-space-3xl) 0; }
.lrj-hire__cta-bottom h2 { color: #fff; margin-bottom: var(--lrj-space-lg); }

.lrj-hire__cta-buttons { display: flex; justify-content: center; gap: var(--lrj-space-md); margin-bottom: var(--lrj-space-2xl); }

.lrj-hire__cta-contact { margin-top: var(--lrj-space-xl); font-size: 0.9rem; color: #fff; }
.lrj-hire__cta-contact a { color: var(--lrj-primary); }

@media (max-width: 992px) {
    .lrj-hire__hero { grid-template-columns: 1fr; }
    .lrj-hire__specs-grid { grid-template-columns: repeat(2, 1fr); }
    .lrj-hire__stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lrj-hire__pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .lrj-hire__testimonial { min-width: calc(50% - var(--lrj-space-xl) / 2); }
}

@media (max-width: 600px) {
    .lrj-hire__specs-grid { grid-template-columns: 1fr; }
    .lrj-hire__features { grid-template-columns: 1fr; }
    .lrj-hire__process { grid-template-columns: 1fr; }
    .lrj-hire__stats-grid { grid-template-columns: 1fr 1fr; }
    .lrj-hire__testimonial { min-width: 85%; }
    .lrj-hire__cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   SINGLE JOB PAGE
   ============================================ */

/* Cover banner */
.lrj-job__cover {
    height: 320px;
    background-size: cover;
    background-position: center;
    background-color: var(--lrj-gray-100);
}
.lrj-job__cover--default {
    background: linear-gradient(135deg, var(--lrj-primary) 0%, #0077b6 100%);
}

/* Hero card — 2-row layout: top row (logo+info+actions), bottom row (badges) */
.lrj-job__hero-card {
    padding: var(--lrj-space-lg) var(--lrj-space-xl);
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    box-shadow: var(--lrj-shadow-card);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

/* Row 1: logo + info + actions */
.lrj-job__hero-row {
    display: flex;
    align-items: flex-start;
    gap: var(--lrj-space-lg);
}
.lrj-job__hero-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--lrj-radius-md);
    border: 2px solid var(--lrj-gray-200);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lrj-gray-50);
}
.lrj-job__hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lrj-job__hero-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lrj-primary);
    font-family: var(--lrj-font-heading);
}
.lrj-job__hero-info {
    flex: 1;
    min-width: 0;
}
.lrj-job__hero-employer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lrj-primary);
    text-decoration: none;
    margin-bottom: 2px;
}
.lrj-job__hero-employer:hover {
    text-decoration: underline;
}
.lrj-job__hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lrj-text);
    margin: 0 0 var(--lrj-space-xs);
    line-height: 1.3;
    font-family: var(--lrj-font-heading);
}
.lrj-job__hero-address {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--lrj-gray-500);
}
.lrj-job__hero-actions {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    flex-shrink: 0;
}

/* Row 2: badges — simple block, NOT inside any flex child */
.lrj-job__hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lrj-space-xs);
    margin-top: var(--lrj-space-md);
    padding-top: var(--lrj-space-md);
    border-top: 1px solid var(--lrj-gray-100);
}

/* Badges */
.lrj-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}
.lrj-badge--outline {
    border: 1px solid var(--lrj-gray-300);
    color: var(--lrj-gray-700);
    background: var(--lrj-white);
}
.lrj-badge--sponsored {
    background: var(--lrj-secondary-light);
    color: var(--lrj-secondary);
    border: 1px solid rgba(20, 160, 119, 0.35);
}
.lrj-badge--promoted {
    background: #e8f7fd;
    color: var(--lrj-primary);
    border: 1px solid rgba(0, 162, 221, 0.3);
}
.lrj-badge--remote {
    background: var(--lrj-secondary-light);
    color: var(--lrj-secondary);
    border: 1px solid rgba(20, 160, 119, 0.2);
}
.lrj-badge--finished {
    border: 1px solid var(--lrj-gray-300);
    color: var(--lrj-gray-500);
    background: var(--lrj-gray-100);
}
.lrj-badge--urgent {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
    font-weight: 600;
}

/* Icon buttons */
.lrj-btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--lrj-gray-300);
    background: var(--lrj-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--lrj-gray-500);
    transition: all var(--lrj-transition);
    font-family: inherit;
}
.lrj-btn-icon:hover {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
    background: var(--lrj-gray-50);
}
.lrj-btn--disabled {
    opacity: 0.5;
    pointer-events: none;
    background: var(--lrj-gray-200);
    color: var(--lrj-gray-500);
    border: 1px solid var(--lrj-gray-300);
}

/* Share dropdown */
.lrj-share-dropdown {
    position: relative;
}
.lrj-share-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px;
    z-index: 50;
    overflow: hidden;
}
.lrj-share-dropdown__menu.is-open {
    display: block;
}
.lrj-share-dropdown__item {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--lrj-gray-700);
    text-decoration: none;
    cursor: pointer;
    transition: background var(--lrj-transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.lrj-share-dropdown__item:hover {
    background: var(--lrj-gray-50);
    color: var(--lrj-primary);
}
.lrj-share-dropdown__item svg {
    flex-shrink: 0;
}

/* Content sections (matches employer page) */
.lrj-job__section {
    margin-bottom: var(--lrj-space-2xl);
}

/* Job gallery */
.lrj-job__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--lrj-space-sm);
}
.lrj-job__gallery-item {
    display: block;
    aspect-ratio: 4/3;
    border-radius: var(--lrj-radius-md);
    overflow: hidden;
    border: 1px solid var(--lrj-gray-200);
    cursor: pointer;
    transition: all var(--lrj-transition);
}
.lrj-job__gallery-item:hover {
    border-color: var(--lrj-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.lrj-job__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--lrj-transition-slow);
}
.lrj-job__gallery-item:hover img {
    transform: scale(1.05);
}

/* Job layout (content + sidebar) */
.lrj-section--job {
    padding-top: var(--lrj-space-2xl);
    padding-bottom: var(--lrj-space-3xl);
}
.lrj-job__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--lrj-space-2xl);
    align-items: start;
}
.lrj-job__content {
    min-width: 0;
}
.lrj-job__section-title {
    font-family: var(--lrj-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    margin: 0 0 var(--lrj-space-lg);
    padding-bottom: var(--lrj-space-sm);
    border-bottom: 2px solid var(--lrj-gray-200);
    color: var(--lrj-text);
}
.lrj-job__section-title svg {
    color: var(--lrj-primary);
    flex-shrink: 0;
}
.lrj-job__description {
    line-height: 1.75;
    color: var(--lrj-gray-700);
    font-size: 0.9375rem;
}
.lrj-job__description h2,
.lrj-job__description h3,
.lrj-job__description h4 {
    color: var(--lrj-text);
    margin-top: var(--lrj-space-xl);
    margin-bottom: var(--lrj-space-sm);
}
.lrj-job__description ul,
.lrj-job__description ol {
    padding-left: 1.5rem;
    margin-bottom: var(--lrj-space-md);
}
.lrj-job__description li {
    margin-bottom: var(--lrj-space-xs);
}

/* Share section */
.lrj-job__share {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    margin-top: var(--lrj-space-2xl);
    padding-top: var(--lrj-space-lg);
    border-top: 1px solid var(--lrj-gray-200);
}
.lrj-job__share-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lrj-gray-700);
}
.lrj-job__share-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--lrj-gray-300);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lrj-gray-600);
    text-decoration: none;
    transition: all var(--lrj-transition);
}
.lrj-job__share-link:hover {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
}

/* Video embed */
.lrj-job__video {
    margin-top: 0;
}
.lrj-job__video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--lrj-radius-lg);
}
.lrj-job__video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sidebar */
.lrj-job__sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-lg);
}
.lrj-job__info-box {
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    padding: var(--lrj-space-lg);
}
.lrj-job__info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lrj-text);
    margin: 0 0 var(--lrj-space-md);
    font-family: var(--lrj-font-heading);
}
.lrj-job__info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--lrj-gray-100);
    gap: var(--lrj-space-md);
}
.lrj-job__info-row:last-child {
    border-bottom: none;
}
.lrj-job__info-label {
    font-size: 0.875rem;
    color: var(--lrj-gray-500);
    flex-shrink: 0;
}
.lrj-job__info-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lrj-text);
    text-align: right;
}
.lrj-job__info-value--salary {
    color: var(--lrj-primary);
}

/* Map in sidebar */
.lrj-job__info-box--map {
    padding-bottom: 0;
    overflow: hidden;
}
.lrj-job__map {
    height: 200px;
    margin: 0 calc(-1 * var(--lrj-space-lg));
    margin-bottom: 0;
    border-radius: 0 0 var(--lrj-radius-lg) var(--lrj-radius-lg);
}

/* Employer box in sidebar */
.lrj-job__employer-header {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    margin-bottom: var(--lrj-space-md);
    padding-bottom: var(--lrj-space-md);
    border-bottom: 1px solid var(--lrj-gray-100);
}
.lrj-job__employer-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--lrj-radius-md);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lrj-gray-50);
    border: 1px solid var(--lrj-gray-200);
}
.lrj-job__employer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lrj-job__employer-initials {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lrj-primary);
}
.lrj-job__employer-name {
    display: block;
    font-size: 0.9375rem;
    color: var(--lrj-text);
}
.lrj-job__employer-link {
    font-size: 0.8125rem;
    color: var(--lrj-primary);
    text-decoration: none;
}
.lrj-job__employer-link:hover {
    text-decoration: underline;
}
.lrj-job__employer-website {
    display: block;
    margin-top: var(--lrj-space-md);
    padding: 0.625rem;
    border: 1px solid var(--lrj-primary);
    border-radius: var(--lrj-radius-md);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lrj-primary);
    text-decoration: none;
    transition: all var(--lrj-transition);
}
.lrj-job__employer-website:hover {
    background: var(--lrj-primary);
    color: var(--lrj-white);
}
.lrj-job__socials {
    display: flex;
    gap: var(--lrj-space-xs);
}
.lrj-job__social-link {
    color: var(--lrj-gray-500);
    transition: color var(--lrj-transition);
}
.lrj-job__social-link:hover {
    color: var(--lrj-primary);
}

/* Sticky apply bar */
.lrj-job__apply-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--lrj-white);
    border-top: 1px solid var(--lrj-gray-200);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    padding: var(--lrj-space-sm) 0;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.lrj-job__apply-bar.is-visible {
    transform: translateY(0);
}
.lrj-job__apply-bar-info {
    min-width: 0;
}
.lrj-job__apply-bar-info strong {
    display: block;
    font-size: 0.9375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lrj-job__apply-bar-info span {
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
}

/* Single job responsive */
@media (max-width: 1024px) {
    .lrj-job__layout {
        grid-template-columns: 1fr;
    }
    .lrj-job__hero-row {
        flex-wrap: wrap;
    }
    .lrj-job__hero-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: var(--lrj-space-sm);
    }
}
@media (max-width: 600px) {
    .lrj-job__cover {
        height: 200px;
    }
    .lrj-job__hero-card {
        margin-top: -40px;
        padding: var(--lrj-space-md);
    }
    .lrj-job__hero-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .lrj-job__hero-title {
        font-size: 1.15rem;
    }
    .lrj-job__hero-badges {
        justify-content: center;
    }
    .lrj-job__hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .lrj-section--job {
        padding-top: var(--lrj-space-lg);
        padding-bottom: var(--lrj-space-xl);
    }
    .lrj-job__section-title {
        font-size: 1.0625rem;
    }
    .lrj-job__section {
        margin-bottom: var(--lrj-space-xl);
    }
    .lrj-job__gallery {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================
   JOB ARCHIVE / LISTING
   ============================================ */

/* Full-width layout (same structure as employer archive) */
.lrj-joblist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: calc(100vh - 80px);
    overflow: hidden;
}

/* Left panel */
.lrj-joblist__panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Toolbar */
.lrj-joblist__toolbar {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    padding: var(--lrj-space-md) var(--lrj-space-xl);
    border-bottom: 1px solid var(--lrj-gray-200);
    flex-shrink: 0;
}
.lrj-joblist__filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--lrj-space-xs);
    padding: 0.5rem 1rem;
    border: 1px solid var(--lrj-gray-300);
    border-radius: var(--lrj-radius-md);
    background: var(--lrj-white);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lrj-text);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--lrj-transition);
}
.lrj-joblist__filter-toggle:hover {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
}
.lrj-joblist__toolbar-selects {
    display: flex;
    gap: var(--lrj-space-sm);
    margin-left: auto;
}

/* Filter panel */
.lrj-joblist__filters {
    padding: var(--lrj-space-lg) var(--lrj-space-xl);
    border-bottom: 1px solid var(--lrj-gray-200);
    background: var(--lrj-gray-50);
    flex-shrink: 0;
}
.lrj-joblist__filters-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 16px;
    align-items: end;
}
.lrj-joblist__filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lrj-joblist__filter-group--btn {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 8px;
}
.lrj-joblist__filter-group--btn .lrj-btn { flex: 1; }
.lrj-joblist__filter-group--btn .lrj-btn--outline { margin-top: 0 !important; }
.lrj-joblist__filter-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lrj-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.lrj-joblist__search-wrap {
    position: relative;
}
.lrj-joblist__search-wrap svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lrj-gray-400);
}
.lrj-joblist__search-wrap .lrj-input {
    padding-left: 2.25rem;
}
.lrj-joblist__salary-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lrj-joblist__salary-range .lrj-input {
    flex: 1;
    min-width: 0;
}
.lrj-joblist__salary-sep {
    color: var(--lrj-gray-400);
    font-weight: 500;
    flex-shrink: 0;
}
.lrj-joblist__filter-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lrj-gray-700);
    padding: 0.5rem 0;
    height: 100%;
}
.lrj-joblist__filter-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--lrj-primary);
    cursor: pointer;
}

/* Scrollable job list */
.lrj-joblist__list {
    flex: 1;
    overflow-y: auto;
}
.lrj-joblist__empty {
    padding: var(--lrj-space-3xl);
    text-align: center;
    color: var(--lrj-gray-500);
    font-size: 0.9375rem;
}

/* Job card in list */
.lrj-jobcard {
    display: flex;
    align-items: flex-start;
    gap: var(--lrj-space-lg);
    padding: var(--lrj-space-lg) var(--lrj-space-xl);
    border-bottom: 1px solid var(--lrj-gray-100);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    border-radius: 12px;
    margin: 4px 10px;
}
.lrj-jobcard:hover {
    background: var(--lrj-gray-50);
    transform: translateX(2px);
}
.lrj-jobcard--promoted {
    background: linear-gradient(135deg, #eef8ff 0%, #dbeffe 50%, #e8f4fd 100%);
    border-left: 4px solid var(--lrj-primary);
    box-shadow: 0 3px 18px rgba(0, 162, 221, 0.14), inset 0 0 0 1px rgba(0, 162, 221, 0.1);
    position: relative;
    padding: var(--lrj-space-lg) var(--lrj-space-xl) var(--lrj-space-lg) calc(var(--lrj-space-xl) - 4px);
}
.lrj-jobcard--promoted::after {
    content: '★ PROMOWANE';
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--lrj-primary);
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.lrj-jobcard--promoted:hover {
    background: linear-gradient(135deg, #dbeffe 0%, #bae6fd 50%, #d4effd 100%);
    box-shadow: 0 6px 24px rgba(0, 162, 221, 0.2);
    transform: translateX(4px);
}
.lrj-jobcard--sponsored {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #e6fbf0 100%);
    border-left: 4px solid var(--lrj-secondary);
    box-shadow: 0 3px 18px rgba(20, 160, 119, 0.14), inset 0 0 0 1px rgba(20, 160, 119, 0.1);
    position: relative;
    padding: var(--lrj-space-lg) var(--lrj-space-xl) var(--lrj-space-lg) calc(var(--lrj-space-xl) - 4px);
}
.lrj-jobcard--sponsored::after {
    content: 'SPONSOROWANE';
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--lrj-secondary);
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.lrj-jobcard--sponsored:hover {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 50%, #c8f7e2 100%);
    box-shadow: 0 6px 24px rgba(20, 160, 119, 0.2);
    transform: translateX(4px);
}
/* Both promoted AND sponsored */
.lrj-jobcard--promoted.lrj-jobcard--sponsored::after {
    content: '★ PROMOWANE';
    background: linear-gradient(135deg, var(--lrj-primary), var(--lrj-secondary));
}
.lrj-jobcard.is-active {
    background: rgba(0, 162, 221, 0.06);
    border-left: 3px solid var(--lrj-primary);
}
.lrj-jobcard__logo {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--lrj-gray-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 6px;
}
.lrj-jobcard__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lrj-jobcard__initials {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lrj-primary);
    font-family: var(--lrj-font-heading);
}
.lrj-jobcard__body {
    flex: 1;
    min-width: 0;
}
.lrj-jobcard__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lrj-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}
.lrj-jobcard__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lrj-text);
    margin: 0 0 5px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lrj-jobcard__location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
    margin-bottom: var(--lrj-space-xs);
}
.lrj-jobcard__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}
.lrj-jobcard__badges .lrj-badge {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
}
.lrj-jobcard__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--lrj-space-sm);
    flex-shrink: 0;
    margin-top: 28px; /* clear space for promoted/sponsored badge */
}
.lrj-jobcard__heart {
    color: var(--lrj-gray-400);
    cursor: pointer;
    transition: all 0.25s ease;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lrj-gray-100);
    border: 1px solid var(--lrj-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lrj-jobcard__heart:hover {
    color: #ef4444;
    background: #fef2f2;
    border-color: #fecaca;
    transform: scale(1.2);
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.2);
}
.lrj-jobcard__heart.is-saved {
    color: #ef4444;
    background: #fef2f2;
    border-color: #fecaca;
}
.lrj-jobcard__salary {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--lrj-primary);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 162, 221, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Map */
.lrj-joblist__map {
    height: 100%;
    min-height: 100%;
}

/* SEO section */
.lrj-section--seo {
    padding: var(--lrj-space-3xl) 0;
}
.lrj-seo__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lrj-text);
    margin: 0 0 var(--lrj-space-md);
    font-family: var(--lrj-font-heading);
    line-height: 1.3;
}
.lrj-seo__text {
    font-size: 0.9375rem;
    color: var(--lrj-gray-600);
    line-height: 1.7;
    max-width: 700px;
}

/* Job archive responsive */
@media (max-width: 1024px) {
    .lrj-joblist {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
    }
    .lrj-joblist__map {
        height: 400px;
        order: -1;
    }
    .lrj-joblist__panel {
        overflow: visible;
    }
    .lrj-joblist__list {
        overflow: visible;
    }
    .lrj-joblist__toolbar {
        flex-wrap: wrap;
    }
    .lrj-joblist__toolbar-selects .lrj-input--sm {
        min-width: 140px;
    }
}
@media (max-width: 768px) {
    .lrj-joblist__toolbar {
        padding: var(--lrj-space-md) var(--lrj-space-lg);
    }
}
@media (max-width: 600px) {
    .lrj-joblist__map {
        height: 300px;
    }
    .lrj-joblist__toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: var(--lrj-space-md);
        gap: var(--lrj-space-sm);
        position: relative;
        z-index: 2;
        background: var(--lrj-white);
    }
    .lrj-joblist__toolbar-selects {
        margin-left: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--lrj-space-sm);
    }
    .lrj-joblist__toolbar-selects .lrj-input--sm {
        min-width: 0;
        width: 100%;
        font-size: 0.8125rem;
        padding: 0.5rem 2rem 0.5rem 0.625rem;
        box-sizing: border-box;
    }
    .lrj-joblist__filter-toggle {
        justify-content: center;
        padding: 0.6rem 1rem;
    }
    .lrj-joblist__filters {
        padding: var(--lrj-space-md);
        position: relative;
        z-index: 1;
        background: var(--lrj-white);
    }
    .lrj-joblist__filters-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .lrj-joblist__filter-group--btn {
        grid-column: 1 / -1;
    }
    .lrj-jobcard {
        flex-wrap: wrap;
        gap: var(--lrj-space-sm);
        padding: var(--lrj-space-md);
    }
    .lrj-jobcard--promoted::after,
    .lrj-jobcard--sponsored::after {
        top: 6px;
        right: 8px;
        font-size: 0.5625rem;
        padding: 2px 6px;
    }
    .lrj-jobcard__logo {
        width: 56px;
        height: 56px;
    }
    .lrj-jobcard__right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: var(--lrj-space-xs);
    }
    .lrj-joblist__panel {
        padding-bottom: var(--lrj-space-3xl);
    }
}


/* ============================================
   PRINT
   ============================================ */
@media print {
    .lrj-header,
    .lrj-footer,
    .lrj-search,
    .lrj-filters {
        display: none;
    }
}


/* ============================================
   AUTH MODULE (Login + Rejestracja)
   ============================================ */
.lrj-auth {
    padding: var(--lrj-space-3xl) 0 var(--lrj-space-4xl);
    background: linear-gradient(135deg, var(--lrj-bg-alt) 0%, #eef6fb 50%, var(--lrj-bg-alt) 100%);
    min-height: calc(100vh - var(--lrj-header-height));
}

.lrj-auth__header {
    text-align: center;
    margin-bottom: var(--lrj-space-2xl);
}
.lrj-auth__header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--lrj-space-md);
}
.lrj-auth__header-icon:not(:has(img)) {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lrj-primary), var(--lrj-secondary));
    border-radius: var(--lrj-radius-lg);
    color: var(--lrj-white);
}
.lrj-auth__header-logo {
    max-height: 56px;
    width: auto;
    object-fit: contain;
}
.lrj-auth__header-title {
    font-family: var(--lrj-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--lrj-gray-900);
    margin-bottom: var(--lrj-space-xs);
}
.lrj-auth__header-sub {
    font-size: 1.05rem;
    color: var(--lrj-gray-500);
    max-width: 480px;
    margin: 0 auto;
}

.lrj-auth__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lrj-space-xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.lrj-auth__card {
    background: var(--lrj-white);
    border-radius: var(--lrj-radius-lg);
    padding: var(--lrj-space-xl) var(--lrj-space-xl) var(--lrj-space-lg);
    box-shadow: var(--lrj-shadow-lg);
    border: 1px solid var(--lrj-gray-100);
    transition: box-shadow var(--lrj-transition);
}
.lrj-auth__card:hover {
    box-shadow: var(--lrj-shadow-xl);
}
.lrj-auth__card--register {
    border-top: 3px solid var(--lrj-primary);
}
.lrj-auth__card--login {
    border-top: 3px solid var(--lrj-secondary);
}

.lrj-auth__card-header {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    margin-bottom: var(--lrj-space-xs);
}
.lrj-auth__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--lrj-radius-md);
    background: var(--lrj-secondary-light);
    color: var(--lrj-secondary);
    flex-shrink: 0;
}
.lrj-auth__card-icon--accent {
    background: var(--lrj-primary-light);
    color: var(--lrj-primary);
}
.lrj-auth__card-title {
    font-family: var(--lrj-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--lrj-gray-900);
}
.lrj-auth__card-sub {
    font-size: 0.9rem;
    color: var(--lrj-gray-500);
    margin-bottom: var(--lrj-space-lg);
}

/* Alert */
.lrj-auth__alert {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    padding: var(--lrj-space-sm) var(--lrj-space-md);
    border-radius: var(--lrj-radius-sm);
    font-size: 0.875rem;
    margin-bottom: var(--lrj-space-md);
}
.lrj-auth__alert--error {
    background: #fef2f2;
    color: var(--lrj-danger);
    border: 1px solid #fecaca;
}
.lrj-auth__alert--success {
    background: var(--lrj-secondary-light);
    color: var(--lrj-secondary-dark);
    border: 1px solid #a7f3d0;
}

/* Tabs */
.lrj-auth__tabs {
    display: flex;
    gap: 4px;
    background: var(--lrj-gray-100);
    border-radius: var(--lrj-radius-md);
    padding: 4px;
    margin-bottom: var(--lrj-space-lg);
}
.lrj-auth__tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--lrj-space-xs);
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lrj-gray-500);
    cursor: pointer;
    transition: all var(--lrj-transition);
    font-family: var(--lrj-font-sans);
}
.lrj-auth__tab:hover {
    color: var(--lrj-gray-700);
}
.lrj-auth__tab--active {
    background: var(--lrj-white);
    color: var(--lrj-primary);
    box-shadow: var(--lrj-shadow-sm);
}

/* Form */
.lrj-auth__form {
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-md);
}
.lrj-auth__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lrj-space-md);
}
@media (max-width: 480px) {
    .lrj-auth__field-row { grid-template-columns: 1fr; }
}
.lrj-auth__field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lrj-gray-700);
    margin-bottom: 6px;
}
.lrj-auth__input-wrap {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    border: 1.5px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-md);
    padding: 0 var(--lrj-space-md);
    background: var(--lrj-white);
    transition: border-color var(--lrj-transition), box-shadow var(--lrj-transition);
}
.lrj-auth__input-wrap svg {
    color: var(--lrj-gray-400);
    flex-shrink: 0;
}
.lrj-auth__input-wrap:focus-within {
    border-color: var(--lrj-primary);
    box-shadow: 0 0 0 3px rgba(0, 162, 221, 0.1);
}
.lrj-auth__input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 0.95rem;
    font-family: var(--lrj-font-sans);
    color: var(--lrj-gray-800);
    background: transparent;
}
.lrj-auth__input-wrap input::placeholder {
    color: var(--lrj-gray-400);
}

.lrj-auth__toggle-pw {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lrj-gray-400);
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color var(--lrj-transition);
}
.lrj-auth__toggle-pw:hover {
    color: var(--lrj-gray-600);
}

/* Password strength */
.lrj-auth__pw-strength {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    margin-top: 6px;
}
.lrj-auth__pw-bar {
    flex: 1;
    height: 4px;
    background: var(--lrj-gray-200);
    border-radius: 2px;
    overflow: hidden;
}
.lrj-auth__pw-bar span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}
.lrj-auth__pw-strength small {
    font-size: 0.75rem;
    color: var(--lrj-gray-400);
    white-space: nowrap;
}

/* Row (remember + forgot) */
.lrj-auth__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Checkbox */
.lrj-auth__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--lrj-gray-600);
    cursor: pointer;
}
.lrj-auth__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--lrj-primary);
    margin-top: 1px;
    flex-shrink: 0;
}
.lrj-auth__checkbox--terms {
    margin-top: var(--lrj-space-xs);
}
.lrj-auth__checkbox a {
    color: var(--lrj-primary);
    text-decoration: underline;
}

/* Link */
.lrj-auth__link {
    font-size: 0.875rem;
    color: var(--lrj-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--lrj-transition);
}
.lrj-auth__link:hover {
    color: var(--lrj-primary-dark);
    text-decoration: underline;
}

/* Buttons */
.lrj-auth__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--lrj-space-sm);
    padding: 13px 24px;
    border: none;
    border-radius: var(--lrj-radius-md);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--lrj-font-heading);
    cursor: pointer;
    transition: all var(--lrj-transition);
    width: 100%;
    margin-top: var(--lrj-space-xs);
}
.lrj-auth__btn--primary {
    background: var(--lrj-secondary);
    color: var(--lrj-white);
}
.lrj-auth__btn--primary:hover {
    background: var(--lrj-secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 160, 119, 0.3);
}
.lrj-auth__btn--accent {
    background: linear-gradient(135deg, var(--lrj-primary), var(--lrj-primary-dark));
    color: var(--lrj-white);
}
.lrj-auth__btn--accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 162, 221, 0.3);
}

/* Divider */
.lrj-auth__divider {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    margin: var(--lrj-space-md) 0;
    color: var(--lrj-gray-400);
    font-size: 0.8rem;
}
.lrj-auth__divider::before,
.lrj-auth__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lrj-gray-200);
}

.lrj-auth__footer-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--lrj-gray-500);
    margin-top: var(--lrj-space-md);
}

/* Trust badges */
.lrj-auth__trust {
    display: flex;
    justify-content: center;
    gap: var(--lrj-space-2xl);
    margin-top: var(--lrj-space-2xl);
    padding-top: var(--lrj-space-xl);
}
.lrj-auth__trust-item {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    font-size: 0.85rem;
    color: var(--lrj-gray-500);
    font-weight: 500;
}
.lrj-auth__trust-item svg {
    color: var(--lrj-secondary);
}

/* Auth responsive */
@media (max-width: 768px) {
    .lrj-auth {
        padding: var(--lrj-space-xl) 0 var(--lrj-space-2xl);
    }
    .lrj-auth__header-title {
        font-size: 1.5rem;
    }
    .lrj-auth__grid {
        grid-template-columns: 1fr;
        gap: var(--lrj-space-lg);
    }
    .lrj-auth__card {
        padding: var(--lrj-space-lg);
    }
    .lrj-auth__trust {
        flex-direction: column;
        align-items: center;
        gap: var(--lrj-space-md);
    }
}


/* ============================================
   DASHBOARD MODULE
   ============================================ */
.lrj-dash {
    display: flex;
    min-height: calc(100vh - var(--lrj-header-height));
    background: var(--lrj-bg-alt);
}

/* Sidebar */
.lrj-dash__sidebar {
    width: 260px;
    background: var(--lrj-white);
    border-right: 1px solid var(--lrj-gray-200);
    padding: var(--lrj-space-xl) 0;
    flex-shrink: 0;
    position: sticky;
    top: var(--lrj-header-height);
    height: calc(100vh - var(--lrj-header-height));
    overflow-y: auto;
    z-index: 10;
}
.lrj-dash__sidebar-header {
    padding: 0 var(--lrj-space-lg) var(--lrj-space-lg);
    border-bottom: 1px solid var(--lrj-gray-100);
    margin-bottom: var(--lrj-space-md);
}
.lrj-dash__user {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
}
.lrj-dash__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--lrj-radius-full);
    background: linear-gradient(135deg, var(--lrj-primary), var(--lrj-secondary));
    color: var(--lrj-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
}
.lrj-dash__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lrj-dash__user-info {
    min-width: 0;
}
.lrj-dash__user-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--lrj-gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lrj-dash__user-role {
    font-size: 0.75rem;
    color: var(--lrj-gray-500);
}

.lrj-dash__nav {
    list-style: none;
    padding: 0 var(--lrj-space-sm);
}
.lrj-dash__nav-item a {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    padding: 10px var(--lrj-space-md);
    border-radius: var(--lrj-radius-md);
    color: var(--lrj-gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--lrj-transition);
    margin-bottom: 2px;
}
.lrj-dash__nav-item a:hover {
    background: var(--lrj-gray-50);
    color: var(--lrj-gray-800);
}
.lrj-dash__nav-item a svg {
    flex-shrink: 0;
    color: var(--lrj-gray-400);
    transition: color var(--lrj-transition);
}
.lrj-dash__nav-item a:hover svg {
    color: var(--lrj-primary);
}
.lrj-dash__nav-item--active a {
    background: var(--lrj-primary-light);
    color: var(--lrj-primary);
    font-weight: 600;
}
.lrj-dash__nav-item--active a svg {
    color: var(--lrj-primary);
}
.lrj-dash__nav-divider {
    height: 1px;
    background: var(--lrj-gray-100);
    margin: var(--lrj-space-sm) var(--lrj-space-md);
}
.lrj-dash__nav-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lrj-gray-400);
    padding: var(--lrj-space-md) var(--lrj-space-lg) var(--lrj-space-xs);
    font-weight: 700;
}
.lrj-dash__nav-item--danger a {
    color: var(--lrj-danger);
}
.lrj-dash__nav-item--danger a svg {
    color: var(--lrj-danger);
}

/* Mobile sidebar toggle */
.lrj-dash__sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border-radius: var(--lrj-radius-full);
    background: var(--lrj-primary);
    color: var(--lrj-white);
    border: none;
    cursor: pointer;
    box-shadow: var(--lrj-shadow-lg);
    align-items: center;
    justify-content: center;
}

/* Main content */
.lrj-dash__main {
    flex: 1;
    padding: var(--lrj-space-xl) var(--lrj-space-2xl);
    max-width: 1400px;
    min-width: 0;
}
.lrj-dash__page-title {
    font-family: var(--lrj-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lrj-gray-900);
    margin-bottom: var(--lrj-space-xl);
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
}
.lrj-dash__page-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--lrj-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Stat cards */
.lrj-dash__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--lrj-space-md);
    margin-bottom: var(--lrj-space-xl);
}
.lrj-dash__stat {
    background: var(--lrj-white);
    border-radius: var(--lrj-radius-lg);
    padding: var(--lrj-space-lg);
    box-shadow: var(--lrj-shadow-card);
    border: 1px solid var(--lrj-gray-100);
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    transition: box-shadow var(--lrj-transition), transform var(--lrj-transition);
}
.lrj-dash__stat:hover {
    box-shadow: var(--lrj-shadow-card-hover);
    transform: translateY(-2px);
}
.lrj-dash__stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--lrj-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lrj-dash__stat-icon--blue {
    background: var(--lrj-primary-light);
    color: var(--lrj-primary);
}
.lrj-dash__stat-icon--green {
    background: var(--lrj-secondary-light);
    color: var(--lrj-secondary);
}
.lrj-dash__stat-icon--orange {
    background: #fff7ed;
    color: #f59e0b;
}
.lrj-dash__stat-icon--pink {
    background: #fef2f2;
    color: var(--lrj-danger);
}
.lrj-dash__stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--lrj-font-heading);
    color: var(--lrj-gray-900);
    line-height: 1;
}
.lrj-dash__stat-label {
    font-size: 0.8rem;
    color: var(--lrj-gray-500);
    margin-top: 2px;
}
.lrj-dash__stat-sub {
    font-size: 0.7rem;
    color: var(--lrj-gray-400);
    margin-top: 2px;
}
.lrj-dash__stat-sub--highlight {
    color: var(--lrj-primary);
    font-weight: 600;
}

/* Mini status breakdown cards */
.lrj-dash__stats--mini {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: var(--lrj-space-lg);
}
.lrj-dash__stat-mini {
    background: var(--lrj-white);
    border-radius: var(--lrj-radius-md);
    padding: var(--lrj-space-md) var(--lrj-space-lg);
    border: 1px solid var(--lrj-gray-100);
    text-align: center;
    box-shadow: var(--lrj-shadow-card);
}
.lrj-dash__stat-mini-num {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--lrj-font-heading);
    line-height: 1.2;
}
.lrj-dash__stat-mini-label {
    font-size: 0.72rem;
    color: var(--lrj-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}
.lrj-dash__stat-mini--blue .lrj-dash__stat-mini-num { color: var(--lrj-primary); }
.lrj-dash__stat-mini--blue { border-top: 3px solid var(--lrj-primary); }
.lrj-dash__stat-mini--amber .lrj-dash__stat-mini-num { color: #f59e0b; }
.lrj-dash__stat-mini--amber { border-top: 3px solid #f59e0b; }
.lrj-dash__stat-mini--green .lrj-dash__stat-mini-num { color: var(--lrj-secondary); }
.lrj-dash__stat-mini--green { border-top: 3px solid var(--lrj-secondary); }
.lrj-dash__stat-mini--red .lrj-dash__stat-mini-num { color: var(--lrj-danger); }
.lrj-dash__stat-mini--red { border-top: 3px solid var(--lrj-danger); }

/* Views chart wrapper */
.lrj-dash__chart-wrap {
    width: 100%;
    overflow-x: auto;
}
.lrj-dash__chart-wrap canvas {
    display: block;
    width: 100%;
}

/* Two-column dashboard grid */
.lrj-dash__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lrj-space-lg);
    margin-bottom: var(--lrj-space-lg);
}
.lrj-dash__grid-2 .lrj-dash__card {
    margin-bottom: 0;
}

/* Application feed */
.lrj-dash__feed {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lrj-dash__feed-item {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    padding: var(--lrj-space-sm) var(--lrj-space-md);
    border-radius: var(--lrj-radius-md);
    transition: background var(--lrj-transition);
}
.lrj-dash__feed-item:hover {
    background: var(--lrj-gray-50);
}
.lrj-dash__feed-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
}
.lrj-dash__feed-info {
    flex: 1;
    min-width: 0;
}
.lrj-dash__feed-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lrj-gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lrj-dash__feed-meta {
    font-size: 0.72rem;
    color: var(--lrj-gray-400);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lrj-dash__status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Top jobs ranking */
.lrj-dash__top-jobs {
    display: flex;
    flex-direction: column;
    gap: var(--lrj-space-md);
}
.lrj-dash__top-job {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
}
.lrj-dash__top-job-rank {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--lrj-font-heading);
    color: var(--lrj-primary);
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}
.lrj-dash__top-job-info {
    flex: 1;
    min-width: 0;
}
.lrj-dash__top-job-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lrj-gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.lrj-dash__top-job-bar {
    height: 6px;
    background: var(--lrj-gray-100);
    border-radius: 3px;
    overflow: hidden;
}
.lrj-dash__top-job-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lrj-primary), #00d4ff);
    border-radius: 3px;
    min-width: 4px;
    transition: width 0.6s ease;
}
.lrj-dash__top-job-stats {
    display: flex;
    gap: var(--lrj-space-md);
    flex-shrink: 0;
    font-size: 0.78rem;
    color: var(--lrj-gray-500);
}
.lrj-dash__top-job-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive: dashboard grid */
@media (max-width: 900px) {
    .lrj-dash__grid-2 { grid-template-columns: 1fr; }
    .lrj-dash__stats--mini { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .lrj-dash__stats { grid-template-columns: repeat(2, 1fr); }
}

/* Dashboard content cards */
.lrj-dash__card {
    background: var(--lrj-white);
    border-radius: var(--lrj-radius-lg);
    padding: var(--lrj-space-xl);
    box-shadow: var(--lrj-shadow-card);
    border: 1px solid var(--lrj-gray-100);
    margin-bottom: var(--lrj-space-lg);
}
.lrj-dash__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--lrj-space-lg);
    padding-bottom: var(--lrj-space-md);
    border-bottom: 1px solid var(--lrj-gray-100);
}
.lrj-dash__card-title {
    font-family: var(--lrj-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lrj-gray-800);
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
}
.lrj-dash__card-title svg {
    color: var(--lrj-primary);
}

/* Form styling inside dash */
.lrj-dash__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lrj-space-md) var(--lrj-space-lg);
}
.lrj-dash__form-grid--full {
    grid-column: 1 / -1;
}
.lrj-dash__field {
    display: flex;
    flex-direction: column;
}
.lrj-dash__field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lrj-gray-700);
    margin-bottom: 6px;
}
.lrj-dash__field input,
.lrj-dash__field select,
.lrj-dash__field textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-md);
    font-size: 0.9rem;
    font-family: var(--lrj-font-sans);
    color: var(--lrj-gray-800);
    transition: border-color var(--lrj-transition), box-shadow var(--lrj-transition);
    background: var(--lrj-white);
}
.lrj-dash__field input:focus,
.lrj-dash__field select:focus,
.lrj-dash__field textarea:focus {
    outline: none;
    border-color: var(--lrj-primary);
    box-shadow: 0 0 0 3px rgba(0, 162, 221, 0.1);
}
.lrj-dash__field textarea {
    min-height: 120px;
    resize: vertical;
}

/* Dashboard buttons */
.lrj-dash__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    padding: 10px 20px;
    border: none;
    border-radius: var(--lrj-radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--lrj-font-sans);
    cursor: pointer;
    transition: all var(--lrj-transition);
    text-decoration: none;
}
.lrj-dash__btn--primary {
    background: var(--lrj-primary);
    color: var(--lrj-white);
}
.lrj-dash__btn--primary:hover,
.lrj-dash__btn--primary:focus {
    background: var(--lrj-primary-dark);
    color: var(--lrj-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 162, 221, 0.35);
    text-decoration: none;
}
.lrj-dash__btn--secondary {
    background: var(--lrj-gray-100);
    color: var(--lrj-gray-700);
}
.lrj-dash__btn--secondary:hover {
    background: var(--lrj-gray-200);
}
.lrj-dash__btn--danger {
    background: #fef2f2;
    color: var(--lrj-danger);
}
.lrj-dash__btn--danger:hover {
    background: #fee2e2;
}
.lrj-dash__btn--sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

/* Job list table in dashboard */
.lrj-dash__table {
    width: 100%;
    border-collapse: collapse;
}
.lrj-dash__table th {
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lrj-gray-500);
    padding: var(--lrj-space-sm) var(--lrj-space-md);
    border-bottom: 2px solid var(--lrj-gray-200);
}
.lrj-dash__table td {
    padding: var(--lrj-space-md);
    border-bottom: 1px solid var(--lrj-gray-100);
    font-size: 0.9rem;
    color: var(--lrj-gray-700);
    vertical-align: middle;
}
.lrj-dash__table tr:hover td {
    background: var(--lrj-gray-50);
}
.lrj-dash__table-title {
    font-weight: 600;
    color: var(--lrj-gray-800);
}
.lrj-dash__table-actions {
    display: flex;
    gap: var(--lrj-space-xs);
}

/* Status badges */
.lrj-dash__status {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--lrj-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}
.lrj-dash__status--active {
    background: var(--lrj-secondary-light);
    color: var(--lrj-secondary-dark);
}
.lrj-dash__status--draft {
    background: var(--lrj-gray-100);
    color: var(--lrj-gray-600);
}
.lrj-dash__status--expired {
    background: #fef2f2;
    color: var(--lrj-danger);
}

/* Empty state */
.lrj-dash__empty {
    text-align: center;
    padding: var(--lrj-space-3xl) var(--lrj-space-xl);
    color: var(--lrj-gray-400);
}
.lrj-dash__empty svg {
    margin-bottom: var(--lrj-space-md);
    opacity: 0.5;
}
.lrj-dash__empty p {
    margin-bottom: var(--lrj-space-md);
    font-size: 0.95rem;
}

/* Chip selectors (multiselect tags) */
.lrj-dash__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
}
.lrj-dash__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--lrj-font-sans);
    color: var(--lrj-gray-600);
    background: var(--lrj-gray-50);
    border: 1.5px solid var(--lrj-gray-200);
    cursor: pointer;
    transition: all var(--lrj-transition);
    user-select: none;
}
.lrj-dash__chip:hover {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
    background: rgba(0, 162, 221, 0.04);
}
.lrj-dash__chip input[type="checkbox"] {
    display: none;
}
.lrj-dash__chip--active,
.lrj-dash__chip--active:hover {
    background: rgba(0, 162, 221, 0.1);
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
    font-weight: 600;
}
.lrj-dash__chip--active::before {
    content: '✓';
    font-size: 0.75rem;
    font-weight: 700;
}

/* Rich text editor (Quill) wrapper */
.lrj-dash__richtext {
    border: 1.5px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-md);
    overflow: hidden;
    background: var(--lrj-white);
    transition: border-color var(--lrj-transition), box-shadow var(--lrj-transition);
}
.lrj-dash__richtext:focus-within {
    border-color: var(--lrj-primary);
    box-shadow: 0 0 0 3px rgba(0, 162, 221, 0.1);
}
.lrj-dash__richtext .ql-toolbar.ql-snow {
    border: none;
    border-bottom: 1px solid var(--lrj-gray-200);
    background: var(--lrj-gray-50);
    padding: 8px 12px;
    font-family: var(--lrj-font-sans);
}
.lrj-dash__richtext .ql-container.ql-snow {
    border: none;
    font-family: var(--lrj-font-sans);
    font-size: 0.9rem;
    color: var(--lrj-gray-800);
}
.lrj-dash__richtext .ql-editor {
    min-height: 180px;
    padding: 14px 16px;
    line-height: 1.65;
}
.lrj-dash__richtext .ql-editor.ql-blank::before {
    color: var(--lrj-gray-400);
    font-style: normal;
}
.lrj-dash__richtext .ql-snow .ql-stroke {
    stroke: var(--lrj-gray-500);
}
.lrj-dash__richtext .ql-snow .ql-fill,
.lrj-dash__richtext .ql-snow .ql-stroke.ql-fill {
    fill: var(--lrj-gray-500);
}
.lrj-dash__richtext .ql-snow button:hover .ql-stroke,
.lrj-dash__richtext .ql-snow .ql-picker-label:hover .ql-stroke {
    stroke: var(--lrj-primary);
}
.lrj-dash__richtext .ql-snow button:hover .ql-fill,
.lrj-dash__richtext .ql-snow .ql-picker-label:hover .ql-fill {
    fill: var(--lrj-primary);
}
.lrj-dash__richtext .ql-snow button.ql-active .ql-stroke {
    stroke: var(--lrj-primary);
}
.lrj-dash__richtext .ql-snow button.ql-active .ql-fill {
    fill: var(--lrj-primary);
}

/* Dynamic social media rows */
.lrj-dash__social-row {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    margin-bottom: var(--lrj-space-sm);
}
.lrj-dash__social-row select,
.lrj-dash__social-row input {
    padding: 10px 14px;
    border: 1.5px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-md);
    font-size: 0.9rem;
    font-family: var(--lrj-font-sans);
    color: var(--lrj-gray-800);
    background: var(--lrj-white);
    transition: border-color var(--lrj-transition), box-shadow var(--lrj-transition);
}
.lrj-dash__social-row select:focus,
.lrj-dash__social-row input:focus {
    outline: none;
    border-color: var(--lrj-primary);
    box-shadow: 0 0 0 3px rgba(0, 162, 221, 0.1);
}
.lrj-dash__social-row select {
    min-width: 150px;
}
.lrj-dash__social-row input {
    flex: 1;
}
.lrj-dash__social-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--lrj-radius-md);
    background: #fef2f2;
    color: var(--lrj-danger);
    cursor: pointer;
    transition: background var(--lrj-transition);
    flex-shrink: 0;
}
.lrj-dash__social-remove:hover {
    background: #fee2e2;
}
.lrj-dash__add-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px dashed var(--lrj-gray-300);
    border-radius: var(--lrj-radius-md);
    background: transparent;
    color: var(--lrj-gray-500);
    font-size: 0.85rem;
    font-family: var(--lrj-font-sans);
    cursor: pointer;
    transition: all var(--lrj-transition);
    margin-top: var(--lrj-space-xs);
}
.lrj-dash__add-social:hover {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
    background: rgba(0, 162, 221, 0.04);
}

/* Section divider inside forms */
.lrj-dash__section-title {
    font-family: var(--lrj-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lrj-gray-800);
    padding-top: var(--lrj-space-lg);
    margin-bottom: var(--lrj-space-sm);
    border-top: 1px solid var(--lrj-gray-100);
    grid-column: 1 / -1;
}
.lrj-dash__section-title:first-child {
    border-top: none;
    padding-top: 0;
}

/* Image upload areas */
.lrj-dash__upload-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--lrj-space-sm);
    min-height: 120px;
    border: 2px dashed var(--lrj-gray-200);
    border-radius: var(--lrj-radius-md);
    background: var(--lrj-gray-50);
    color: var(--lrj-gray-400);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--lrj-transition);
}
.lrj-dash__upload-area:hover {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
    background: rgba(0, 162, 221, 0.03);
}

/* Gallery upload */
.lrj-dash__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--lrj-space-sm);
}
.lrj-dash__gallery-item {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: var(--lrj-radius-md);
    overflow: hidden;
    border: 2px solid var(--lrj-gray-200);
    background: var(--lrj-gray-50);
    transition: border-color var(--lrj-transition);
}
.lrj-dash__gallery-item:hover {
    border-color: var(--lrj-primary);
}
.lrj-dash__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lrj-dash__gallery-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--lrj-transition), background var(--lrj-transition);
}
.lrj-dash__gallery-item:hover .lrj-dash__gallery-remove {
    opacity: 1;
}
.lrj-dash__gallery-remove:hover {
    background: var(--lrj-danger);
}
.lrj-dash__gallery-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px dashed var(--lrj-gray-300);
    border-radius: var(--lrj-radius-md);
    background: transparent;
    color: var(--lrj-gray-500);
    font-size: 0.85rem;
    font-family: var(--lrj-font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--lrj-transition);
}
.lrj-dash__gallery-add:hover {
    border-color: var(--lrj-primary);
    color: var(--lrj-primary);
    background: rgba(0, 162, 221, 0.04);
}
.lrj-dash__gallery-add span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   APPLICATION MODULE — Modal + Cards
   ============================================ */

/* Application modal overlay */
.lrj-apply-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--lrj-space-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lrj-apply-modal--open {
    opacity: 1;
}
.lrj-apply-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}
.lrj-apply-modal__content {
    position: relative;
    background: var(--lrj-white);
    border-radius: var(--lrj-radius-xl, 20px);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.lrj-apply-modal--open .lrj-apply-modal__content {
    transform: translateY(0);
}
.lrj-apply-modal__header {
    padding: var(--lrj-space-xl) var(--lrj-space-xl) var(--lrj-space-md);
    border-bottom: 1px solid var(--lrj-gray-100);
    position: relative;
}
.lrj-apply-modal__header h2 {
    font-family: var(--lrj-font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lrj-gray-900);
    margin: 0 0 4px;
}
.lrj-apply-modal__job-title {
    font-size: 0.9rem;
    color: var(--lrj-primary);
    font-weight: 500;
}
.lrj-apply-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--lrj-gray-100);
    border-radius: 50%;
    font-size: 20px;
    color: var(--lrj-gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--lrj-transition);
}
.lrj-apply-modal__close:hover {
    background: var(--lrj-gray-200);
    color: var(--lrj-gray-800);
}

/* Form inside modal */
.lrj-apply-modal form {
    padding: var(--lrj-space-xl);
}
.lrj-apply-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lrj-space-md);
    margin-bottom: var(--lrj-space-md);
}
.lrj-apply-modal__field {
    margin-bottom: var(--lrj-space-md);
}
.lrj-apply-modal__field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lrj-gray-700);
    margin-bottom: 6px;
}
.lrj-apply-modal__req {
    color: var(--lrj-danger);
}
.lrj-apply-modal__field input,
.lrj-apply-modal__field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-md);
    font-size: 0.9rem;
    font-family: var(--lrj-font-sans);
    color: var(--lrj-gray-800);
    transition: border-color var(--lrj-transition), box-shadow var(--lrj-transition);
    background: var(--lrj-white);
    box-sizing: border-box;
}
.lrj-apply-modal__field input:focus,
.lrj-apply-modal__field textarea:focus {
    outline: none;
    border-color: var(--lrj-primary);
    box-shadow: 0 0 0 3px rgba(0, 162, 221, 0.1);
}
.lrj-apply-modal__field textarea {
    resize: vertical;
    min-height: 80px;
}

/* File drop zone */
.lrj-apply-modal__file-drop {
    border: 2px dashed var(--lrj-gray-200);
    border-radius: var(--lrj-radius-md);
    padding: var(--lrj-space-xl) var(--lrj-space-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--lrj-transition);
    background: var(--lrj-gray-50);
}
.lrj-apply-modal__file-drop:hover,
.lrj-apply-modal__file-drop--active {
    border-color: var(--lrj-primary);
    background: rgba(0, 162, 221, 0.04);
}
.lrj-apply-modal__file-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--lrj-gray-400);
}
.lrj-apply-modal__file-placeholder span {
    font-size: 0.9rem;
}
.lrj-apply-modal__file-placeholder strong {
    color: var(--lrj-primary);
}
.lrj-apply-modal__file-placeholder small {
    font-size: 0.75rem;
}
.lrj-apply-modal__file-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--lrj-success, #10b981);
    font-weight: 500;
    font-size: 0.9rem;
}
.lrj-apply-modal__file-remove {
    background: none;
    border: none;
    color: var(--lrj-primary);
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
    font-family: var(--lrj-font-sans);
}

/* Footer */
.lrj-apply-modal__footer {
    border-top: 1px solid var(--lrj-gray-100);
    padding-top: var(--lrj-space-lg);
    margin-top: var(--lrj-space-md);
}
.lrj-apply-modal__consent {
    margin-bottom: var(--lrj-space-md);
    font-size: 0.8rem;
    color: var(--lrj-gray-500);
}
.lrj-apply-modal__consent input {
    margin-right: 6px;
    vertical-align: top;
    margin-top: 3px;
}
.lrj-apply-modal__consent label {
    display: flex;
    align-items: flex-start;
    gap: 0;
    line-height: 1.45;
}
.lrj-apply-modal__required {
    color: #dc3545;
    font-weight: 600;
}
.lrj-apply-modal__submit {
    width: 100%;
    justify-content: center;
}
.lrj-apply-modal__msg {
    margin-top: var(--lrj-space-md);
    padding: 12px 16px;
    border-radius: var(--lrj-radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}
.lrj-apply-modal__msg--success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}
.lrj-apply-modal__msg--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Spinner */
.lrj-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: lrj-spin 0.6s linear infinite;
}
@keyframes lrj-spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   APPLICATION CARDS (Dashboard)
   ============================================ */
.lrj-app-card {
    padding: var(--lrj-space-lg);
    border-top: 1px solid var(--lrj-gray-100);
    transition: background var(--lrj-transition);
}
.lrj-app-card:hover {
    background: var(--lrj-gray-50);
}
.lrj-app-card__header {
    display: flex;
    align-items: flex-start;
    gap: var(--lrj-space-md);
}
.lrj-app-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lrj-primary), var(--lrj-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}
.lrj-app-card__info {
    flex: 1;
    min-width: 0;
}
.lrj-app-card__name {
    font-weight: 700;
    color: var(--lrj-gray-900);
    font-size: 1rem;
    margin-bottom: 4px;
}
.lrj-app-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lrj-space-md);
    font-size: 0.8rem;
    color: var(--lrj-gray-500);
}
.lrj-app-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.lrj-app-card__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}
.lrj-app-card__message {
    margin-top: var(--lrj-space-sm);
    padding: var(--lrj-space-sm) var(--lrj-space-md);
    background: var(--lrj-gray-50);
    border-radius: var(--lrj-radius-md);
    font-size: 0.85rem;
    color: var(--lrj-gray-600);
    line-height: 1.5;
}
.lrj-app-card__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--lrj-space-sm);
    margin-top: var(--lrj-space-md);
}
.lrj-app-card__status-btns {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

/* Dashboard badge (counter) */
.lrj-dash__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--lrj-gray-100);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lrj-gray-600);
}

/* Responsive modal */
@media (max-width: 640px) {
    .lrj-apply-modal {
        padding: 0;
        align-items: flex-end;
    }
    .lrj-apply-modal__content {
        max-height: 95vh;
        border-radius: var(--lrj-radius-xl, 20px) var(--lrj-radius-xl, 20px) 0 0;
    }
    .lrj-apply-modal__grid {
        grid-template-columns: 1fr;
    }
    .lrj-app-card__header {
        flex-wrap: wrap;
    }
    .lrj-app-card__status {
        width: 100%;
        margin-top: var(--lrj-space-xs);
    }
    .lrj-app-card__status-btns {
        margin-left: 0;
        width: 100%;
        flex-wrap: wrap;
    }
}

/* Dashboard responsive */
@media (max-width: 1024px) {
    .lrj-dash__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .lrj-dash__main {
        padding: var(--lrj-space-lg);
    }
}
@media (max-width: 768px) {
    .lrj-dash__sidebar {
        position: fixed;
        left: -280px;
        top: var(--lrj-header-height);
        height: calc(100vh - var(--lrj-header-height));
        z-index: 100;
        transition: left var(--lrj-transition-slow);
        box-shadow: none;
    }
    .lrj-dash__sidebar.is-open {
        left: 0;
        box-shadow: var(--lrj-shadow-xl);
    }
    .lrj-dash__sidebar-toggle {
        display: flex;
    }
    .lrj-dash__sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        top: var(--lrj-header-height);
        background: rgba(0, 0, 0, 0.4);
        z-index: 99;
    }
    .lrj-dash__sidebar.is-open ~ .lrj-dash__sidebar-overlay {
        display: block;
    }
    .lrj-dash__stats {
        grid-template-columns: 1fr 1fr;
    }
    .lrj-dash__form-grid {
        grid-template-columns: 1fr;
    }
    .lrj-dash__main {
        padding: var(--lrj-space-md);
    }
    .lrj-dash__table {
        font-size: 0.8rem;
    }
    .lrj-dash__table th,
    .lrj-dash__table td {
        padding: var(--lrj-space-sm);
    }
    .lrj-dash__social-row {
        flex-wrap: wrap;
    }
    .lrj-dash__social-row select {
        min-width: 120px;
    }
    .lrj-dash__chips {
        gap: 6px;
    }
    .lrj-dash__chip {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* ============================================
   FRONT PAGE — SEO INTRO (Small, left-aligned)
   ============================================ */
.lrj-seo-intro {
    max-width: 1280px;
}
.lrj-seo-intro__title {
    font-family: var(--lrj-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lrj-gray-900);
    margin-bottom: var(--lrj-space-xs);
    line-height: 1.4;
}
.lrj-seo-intro__text {
    font-size: 0.875rem;
    color: var(--lrj-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FRONT PAGE — CATEGORIES GRID
   ============================================ */
.lrj-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--lrj-space-md);
}
.lrj-category-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    padding: var(--lrj-space-lg);
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    text-decoration: none;
    transition: all var(--lrj-transition);
}
.lrj-category-card:hover {
    border-color: var(--lrj-primary);
    box-shadow: var(--lrj-shadow-card-hover);
    transform: translateY(-2px);
}
.lrj-category-card__name {
    font-family: var(--lrj-font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lrj-gray-900);
    margin: 0;
    line-height: 1.3;
}
.lrj-category-card__link {
    font-size: 0.8125rem;
    color: var(--lrj-primary);
    font-weight: 500;
    margin-top: var(--lrj-space-sm);
}
@media (max-width: 1024px) {
    .lrj-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .lrj-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lrj-category-card {
        min-height: 100px;
        padding: var(--lrj-space-md);
    }
}

/* ============================================
   FRONT PAGE — JOB LIST CARDS (1 or 2 col)
   ============================================ */
.lrj-jobs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lrj-space-md);
}
@media (max-width: 900px) {
    .lrj-jobs-list {
        grid-template-columns: 1fr;
    }
}

/* Individual list card */
.lrj-job-list-card {
    display: flex;
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    transition: all var(--lrj-transition);
    overflow: hidden;
}
.lrj-job-list-card:hover {
    border-color: var(--lrj-primary);
    box-shadow: var(--lrj-shadow-card-hover);
}
.lrj-job-list-card--sponsored {
    border-color: rgba(20, 160, 119, 0.25);
    background: linear-gradient(135deg, var(--lrj-secondary-light) 0%, var(--lrj-white) 100%);
}
.lrj-job-list-card--promoted {
    border-color: rgba(0, 162, 221, 0.25);
    background: linear-gradient(135deg, #f0faff 0%, var(--lrj-white) 100%);
}

.lrj-job-list-card__main {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-md);
    padding: var(--lrj-space-lg);
    width: 100%;
}

/* Logo wrap */
.lrj-job-list-card__logo-wrap {
    flex-shrink: 0;
}
.lrj-job-list-card__logo {
    width: 80px;
    height: 80px;
    border-radius: var(--lrj-radius-md);
    object-fit: contain;
    border: 1px solid var(--lrj-gray-200);
    background: var(--lrj-white);
    padding: 6px;
}
.lrj-job-list-card__logo--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lrj-primary);
    background: var(--lrj-primary-light);
    border-color: transparent;
}

/* Info section */
.lrj-job-list-card__info {
    flex: 1;
    min-width: 0;
}
.lrj-job-list-card__department {
    font-size: 0.75rem;
    color: var(--lrj-gray-500);
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.lrj-job-list-card__cat-link {
    color: var(--lrj-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--lrj-transition);
}
.lrj-job-list-card__cat-link:hover {
    color: var(--lrj-primary-dark);
    text-decoration: underline;
}
.lrj-job-list-card__title {
    font-family: var(--lrj-font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lrj-gray-900);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}
.lrj-job-list-card__title a {
    color: inherit;
    text-decoration: none;
}
.lrj-job-list-card__title a:hover {
    color: var(--lrj-primary);
}
.lrj-job-list-card__verified {
    flex-shrink: 0;
}
.lrj-job-list-card__address {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
    margin-bottom: 6px;
}
.lrj-job-list-card__address svg {
    flex-shrink: 0;
    color: var(--lrj-gray-400);
}

/* Tags row */
.lrj-job-list-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Actions (fav + apply) */
.lrj-job-list-card__actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--lrj-space-sm);
    margin-left: auto;
    padding-left: var(--lrj-space-md);
}
.lrj-job-list-card__fav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--lrj-gray-300);
    background: var(--lrj-white);
    cursor: pointer;
    color: var(--lrj-gray-400);
    transition: all var(--lrj-transition);
    padding: 0;
}
.lrj-job-list-card__fav:hover {
    color: #e53e3e;
    border-color: #e53e3e;
    background: #fef2f2;
}
.lrj-job-list-card__fav.is-active {
    color: #e53e3e;
    border-color: #e53e3e;
    background: #fef2f2;
}

/* Responsive list card */
@media (max-width: 640px) {
    .lrj-job-list-card__main {
        flex-wrap: wrap;
        padding: var(--lrj-space-md);
    }
    .lrj-job-list-card__actions {
        flex-direction: row;
        width: 100%;
        padding-left: 0;
        padding-top: var(--lrj-space-sm);
        border-top: 1px solid var(--lrj-gray-100);
        margin-top: var(--lrj-space-sm);
        justify-content: flex-end;
    }
}

/* ============================================
   FRONT PAGE — ENHANCED EMPLOYER CARDS
   ============================================ */
.lrj-employers-grid--enhanced {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--lrj-space-lg);
}
@media (max-width: 900px) {
    .lrj-employers-grid--enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .lrj-employers-grid--enhanced {
        grid-template-columns: 1fr;
    }
}

.lrj-employer-card--enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: var(--lrj-space-xl) var(--lrj-space-lg);
}
.lrj-employer-card--enhanced .lrj-employer-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: var(--lrj-space-md);
}
.lrj-employer-card--enhanced .lrj-employer-card__logo {
    margin: 0;
}
.lrj-employer-card--enhanced .lrj-employer-card__logo--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lrj-primary);
    background: var(--lrj-primary-light);
    border-color: transparent;
}
.lrj-employer-card__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lrj-employer-card--enhanced .lrj-employer-card__name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.lrj-employer-card__address {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
    margin-bottom: var(--lrj-space-sm);
}
.lrj-employer-card__address svg {
    flex-shrink: 0;
    color: var(--lrj-gray-400);
}
.lrj-employer-card__count-btn {
    display: inline-block;
    margin-top: auto;
    padding: 6px 16px;
    background: var(--lrj-primary-light);
    color: var(--lrj-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--lrj-radius-full);
    transition: background var(--lrj-transition);
}
.lrj-employer-card--enhanced:hover .lrj-employer-card__count-btn {
    background: var(--lrj-primary);
    color: var(--lrj-white);
}

/* ============================================
   ADDITIONAL TAG VARIANTS
   ============================================ */
.lrj-tag--promoted {
    background: #e8f7fd;
    color: var(--lrj-primary);
    border: 1px solid rgba(0, 162, 221, 0.3);
}
.lrj-tag--urgent {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
    font-weight: 600;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.lrj-pricing__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--lrj-space-3xl);
}
.lrj-pricing__title {
    font-family: var(--lrj-font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--lrj-gray-900);
    margin-bottom: var(--lrj-space-sm);
}
.lrj-pricing__subtitle {
    font-size: 1.125rem;
    color: var(--lrj-gray-600);
    margin-bottom: var(--lrj-space-md);
}
.lrj-pricing__note {
    font-size: 0.875rem;
    color: var(--lrj-gray-500);
    line-height: 1.6;
}
.lrj-pricing__note a {
    color: var(--lrj-primary);
    font-weight: 500;
}

.lrj-pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--lrj-space-lg);
    align-items: start;
}

.lrj-pricing-card {
    position: relative;
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-xl, 16px);
    padding: var(--lrj-space-2xl) var(--lrj-space-xl);
    display: flex;
    flex-direction: column;
    transition: all var(--lrj-transition-slow);
}
.lrj-pricing-card:hover {
    box-shadow: var(--lrj-shadow-xl);
    transform: translateY(-4px);
}
.lrj-pricing-card--popular {
    border-color: var(--lrj-primary);
    border-width: 2px;
    box-shadow: 0 4px 24px rgba(0, 162, 221, 0.15);
}
.lrj-pricing-card__badge {
    position: absolute;
    top: -12px;
    right: var(--lrj-space-lg);
    background: var(--lrj-primary);
    color: var(--lrj-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--lrj-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lrj-pricing-card__header {
    margin-bottom: var(--lrj-space-xl);
}
.lrj-pricing-card__name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lrj-gray-500);
    margin-bottom: var(--lrj-space-xs);
}
.lrj-pricing-card__price {
    font-family: var(--lrj-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--lrj-gray-900);
}

.lrj-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--lrj-space-2xl);
    flex: 1;
}
.lrj-pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--lrj-gray-700);
    line-height: 1.4;
    border-bottom: 1px solid var(--lrj-gray-100);
}
.lrj-pricing-card__features li:last-child {
    border-bottom: none;
}
.lrj-pricing-card__features li svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.lrj-pricing-card__action {
    margin-top: auto;
}
.lrj-pricing-card__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.lrj-pricing-card--popular .lrj-pricing-card__btn {
    background: var(--lrj-primary);
    color: var(--lrj-white);
    border-color: var(--lrj-primary);
}

.lrj-pricing__disclaimer {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--lrj-gray-400);
    margin-top: var(--lrj-space-2xl);
}

.lrj-pricing__cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--lrj-space-3xl) 0;
}
.lrj-pricing__cta h2 {
    margin-bottom: var(--lrj-space-sm);
}
.lrj-pricing__cta p {
    color: var(--lrj-gray-500);
    margin-bottom: var(--lrj-space-xl);
}

/* Dashboard variant — fits inside panel */
.lrj-pricing__grid--dash {
    grid-template-columns: repeat(4, 1fr);
}
.lrj-pricing-card--current {
    border-color: var(--lrj-secondary);
    border-width: 2px;
    box-shadow: 0 4px 24px rgba(20, 160, 119, 0.12);
}

@media (max-width: 1200px) {
    .lrj-pricing__grid--dash {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1024px) {
    .lrj-pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .lrj-pricing__grid,
    .lrj-pricing__grid--dash {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .lrj-pricing__title {
        font-size: 1.75rem;
    }
}

/* ============================================
   DASHBOARD — Package Info Panel
   ============================================ */
.lrj-dash__package {
    background: var(--lrj-white);
    border: 1px solid var(--lrj-gray-200);
    border-radius: var(--lrj-radius-lg);
    padding: var(--lrj-space-xl);
    margin-bottom: var(--lrj-space-2xl);
}

.lrj-dash__package-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--lrj-space-md);
    margin-bottom: var(--lrj-space-xl);
}
.lrj-dash__package-header--expired {
    margin-bottom: 0;
}

.lrj-dash__package-info {
    display: flex;
    align-items: center;
    gap: var(--lrj-space-sm);
    flex-wrap: wrap;
}
.lrj-dash__package-label {
    font-size: 0.8125rem;
    color: var(--lrj-gray-500);
}
.lrj-dash__package-name {
    font-family: var(--lrj-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lrj-gray-900);
}
.lrj-dash__package-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--lrj-radius-full);
}
.lrj-dash__package-status--active {
    background: #e8f7f2;
    color: var(--lrj-secondary);
}
.lrj-dash__package-status--expired {
    background: #fef2f2;
    color: #dc2626;
}

.lrj-dash__package-expiry {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--lrj-gray-600);
}

.lrj-dash__package-usage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--lrj-space-lg);
    margin-bottom: var(--lrj-space-lg);
}

.lrj-dash__package-meter {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lrj-dash__package-meter-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--lrj-gray-600);
}
.lrj-dash__package-meter-label strong {
    color: var(--lrj-gray-900);
}
.lrj-dash__package-meter small {
    font-size: 0.75rem;
    color: var(--lrj-gray-400);
}

.lrj-dash__package-bar {
    height: 8px;
    background: var(--lrj-gray-100);
    border-radius: 4px;
    overflow: hidden;
}
.lrj-dash__package-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lrj-primary), #00c4ff);
    border-radius: 4px;
    transition: width 0.6s ease;
}
.lrj-dash__package-bar--boost .lrj-dash__package-bar-fill {
    background: linear-gradient(90deg, var(--lrj-secondary), #40d89f);
}

.lrj-dash__package-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lrj-dash__perk {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--lrj-radius-full);
    border: 1px solid var(--lrj-gray-200);
    color: var(--lrj-gray-400);
}
.lrj-dash__perk--active {
    background: var(--lrj-primary-light);
    color: var(--lrj-primary);
    border-color: rgba(0, 162, 221, 0.25);
}

.lrj-dash__package-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--lrj-space-lg);
    flex-wrap: wrap;
}
.lrj-dash__package-empty strong {
    display: block;
    font-size: 1rem;
    color: var(--lrj-gray-900);
    margin-bottom: 4px;
}
.lrj-dash__package-empty p {
    font-size: 0.875rem;
    color: var(--lrj-gray-500);
    margin: 0;
}
