@font-face {
    font-family: "Ubuntu Local";
    src: url("/fonts/Ubuntu/Ubuntu-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ubuntu Local";
    src: url("/fonts/Ubuntu/Ubuntu-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ubuntu Local";
    src: url("/fonts/Ubuntu/Ubuntu-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ubuntu Local";
    src: url("/fonts/Ubuntu/Ubuntu-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: dark;

    --bg: #050507;
    --surface: #0c0c0e;
    --surface-2: #121215;
    --surface-3: #18181b;
    --surface-soft: rgba(255,255,255,.035);
    --border: rgba(255,255,255,.075);
    --border-strong: rgba(255,255,255,.12);

    --text: #f4f4f5;
    --text-2: #d4d4d8;
    --muted: #a1a1aa;
    --muted-2: #71717a;

    --accent: #f59e0b;
    --accent-2: #fbbf24;
    --green: #22c55e;
    --red: #ef4444;

    --radius: 12px;
    --shadow: none;

    --font: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --kw-hero-display-font: "Ubuntu Local", "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] {
    color-scheme: light;

    --bg: #f5f6f8;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --surface-3: #f1f5f9;
    --surface-soft: rgba(15,23,42,.025);
    --border: rgba(15,23,42,.10);
    --border-strong: rgba(15,23,42,.16);

    --text: #111827;
    --text-2: #1f2937;
    --muted: #667085;
    --muted-2: #98a2b3;

    --accent: #d97706;
    --accent-2: #b45309;
    --green: #16a34a;
    --red: #dc2626;

    --shadow: 0 16px 40px rgba(15,23,42,.055);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 14% 0%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(14,165,233,.06), transparent 28%),
        var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}


/* =====================================================
   GLOBAL HERO CTA SYSTEM
   Shared by Home, About, Legal, Contact and archive heroes
===================================================== */

.kw-hero-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,49,114,.12);
    background: rgba(255,255,255,.90);
    color: #003172;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(0,49,114,.06);
    cursor: pointer;
    transform: none;
    transition:
        border-color .2s ease,
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.kw-hero-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -72%;
    z-index: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.42), transparent);
    transform: skewX(-18deg);
    transition: left .74s ease;
    pointer-events: none;
}

.kw-hero-btn > * {
    position: relative;
    z-index: 1;
}

.kw-hero-btn:hover::after,
.kw-hero-btn:focus-visible::after {
    left: 130%;
}

.kw-hero-btn:hover,
.kw-hero-btn:focus-visible {
    outline: none;
}

.kw-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.kw-hero-btn--primary {
    border-color: #003172;
    background: #003172;
    color: #fff;
    box-shadow: 0 14px 32px rgba(0,49,114,.16);
}

.kw-hero-btn--primary:hover,
.kw-hero-btn--primary:focus-visible {
    box-shadow: 0 16px 34px rgba(0,49,114,.19);
}

.kw-hero-btn--primary::after {
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.40), transparent);
}

.kw-hero-btn--secondary {
    border-color: rgba(0,49,114,.12);
    background: rgba(255,255,255,.90);
    color: #28496d;
}

.kw-hero-btn--secondary::after {
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0) 24%,
        rgba(47,126,219,.07) 40%,
        rgba(255,255,255,.50) 50%,
        rgba(193,255,114,.08) 60%,
        rgba(255,255,255,0) 76%,
        transparent 100%
    );
}

.kw-hero-btn--secondary:hover,
.kw-hero-btn--secondary:focus-visible {
    border-color: rgba(0,49,114,.17);
    background: rgba(255,255,255,.97);
    color: #003172;
    box-shadow: 0 12px 26px rgba(0,49,114,.075);
}

html[data-theme="dark"] .kw-hero-btn--primary {
    border-color: #ffffff;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 14px 32px rgba(255,255,255,.08);
}

html[data-theme="dark"] .kw-hero-btn--primary:hover,
html[data-theme="dark"] .kw-hero-btn--primary:focus-visible {
    box-shadow: 0 16px 34px rgba(255,255,255,.12);
}

html[data-theme="dark"] .kw-hero-btn--primary::after {
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.48), transparent);
}

html[data-theme="dark"] .kw-hero-btn--secondary {
    border-color: rgba(255,255,255,.20);
    background: rgba(255,255,255,.09);
    color: rgba(255,255,255,.92);
    box-shadow: none;
}

html[data-theme="dark"] .kw-hero-btn--secondary::after {
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0) 24%,
        rgba(245,158,11,.08) 40%,
        rgba(255,255,255,.22) 50%,
        rgba(34,197,94,.08) 60%,
        rgba(255,255,255,0) 76%,
        transparent 100%
    );
}

html[data-theme="dark"] .kw-hero-btn--secondary:hover,
html[data-theme="dark"] .kw-hero-btn--secondary:focus-visible {
    border-color: rgba(255,255,255,.26);
    background: rgba(255,255,255,.13);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

@media (max-width: 640px) {
    .kw-hero__actions {
        margin-top: 14px;
    }

    .kw-hero-btn {
        min-height: 38px;
        padding: 0 14px;
        font-size: 12px;
    }
}


/* =====================================================
   GLOBAL HERO SYSTEM
   Shared by Home, About, Legal, Contact, Support, F.A.Q.
   Editorial premium direction: clean typography + soft spotlight.
===================================================== */

.kw-hero {
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: 82px 0 42px;
    background: transparent;
}

.kw-hero::before,
.kw-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    transform: translateX(-50%);
}

.kw-hero::before {
    top: 36px;
    width: min(1040px, 122%);
    height: min(490px, 78vw);
    background:
        radial-gradient(circle at 50% 32%, rgba(52, 125, 209, .095), transparent 46%),
        radial-gradient(circle at 50% 62%, rgba(255, 255, 255, .48), transparent 58%);
    filter: blur(30px);
    opacity: .95;
}

.kw-hero::after {
    top: 76px;
    width: min(780px, 96%);
    height: min(300px, 58vw);
    background:
        radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .72), rgba(255, 255, 255, .20) 40%, transparent 76%);
    filter: blur(20px);
    opacity: .84;
}

.kw-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    margin: 0 auto;
    text-align: center;
}

.kw-hero__title {
    margin: 0 auto;
    max-width: 880px;
    color: #003172;
    font-family: var(--kw-hero-display-font);
    letter-spacing: -0.058em;
    line-height: 1;
    text-align: center;
    text-wrap: balance;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.kw-hero__title-line {
    display: block;
}

.kw-hero__title-line--light {
    color: #062f68;
    font-size: clamp(36px, 4.30vw, 56px);
    font-weight: 650;
    line-height: 1.02;
}

.kw-hero__title-line--strong {
    display: block;
    margin-top: 3px;
    padding-bottom: .18em;
    color: transparent;
    background: linear-gradient(180deg, #1a5da8 0%, #2a72bc 62%, rgba(42, 114, 188, .44) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, .68) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, .68) 100%);
    font-size: clamp(30px, 3.72vw, 50px);
    font-weight: 300;
    line-height: 1.04;
}

.kw-hero-rotator .kw-hero__title-line--strong {
    color: transparent;
    background: linear-gradient(180deg, #1a5da8 0%, #2a72bc 62%, rgba(42, 114, 188, .44) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, .68) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, .68) 100%);
}

.kw-hero__title-prefix,
.kw-hero__rotating-word {
    display: inline-block;
    vertical-align: baseline;
    color: transparent;
    background: linear-gradient(180deg, #1a5da8 0%, #2a72bc 62%, rgba(42, 114, 188, .44) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, .68) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, .68) 100%);
}

.kw-hero__rotating-word {
    min-width: 0;
    margin-left: .14em;
    transform: translateY(0);
    opacity: 1;
}

.kw-hero__rotating-word::after {
    content: "";
    display: inline-block;
    width: .035em;
    height: .78em;
    margin-left: .08em;
    border-radius: 999px;
    background: rgba(0, 49, 114, .50);
    opacity: 0;
    vertical-align: -.06em;
}

.kw-hero__rotating-word.is-typing::after {
    opacity: .45;
    animation: kwHeroCaret 1s steps(2, start) infinite;
}

@keyframes kwHeroCaret {
    0%, 48% { opacity: .45; }
    49%, 100% { opacity: 0; }
}






.kw-hero__lead {
    display: grid;
    justify-items: center;
    gap: 14px;
    width: min(100%, 940px);
    margin: 24px auto 0;
    color: rgba(0,49,114,.64);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    text-align: center;
}

.kw-hero__lead-text {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(0,49,114,.70);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: clamp(15.8px, 1.22vw, 16.8px);
    font-weight: 450;
    line-height: 1.64;
    letter-spacing: -0.012em;
    text-wrap: balance;
}

.kw-hero__lead strong {
    color: rgba(0,49,114,.80);
    font-weight: 620;
}


.kw-hero__lead-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    max-width: 760px;
}

.kw-hero-pill {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 11px;
    border: 1px solid rgba(0,49,114,.11);
    border-radius: 9px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(241,247,255,.78) 68%, rgba(193,255,114,.10)),
        rgba(255,255,255,.78);
    color: rgba(26,93,168,.92);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12.35px;
    font-weight: 580;
    line-height: 1;
    letter-spacing: -0.006em;
    text-decoration: none;
    box-shadow:
        0 8px 20px rgba(0,49,114,.035),
        inset 0 1px 0 rgba(255,255,255,.82);
    transition:
        border-color .18s ease,
        background .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

.kw-hero-pill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -84%;
    z-index: -1;
    width: 44%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.12) 22%, rgba(255,255,255,.72) 48%, rgba(193,255,114,.14) 66%, transparent 100%);
    transform: skewX(-18deg);
    transition: left .72s ease;
}

.kw-hero-pill:hover,
.kw-hero-pill:focus-visible {
    border-color: rgba(0,49,114,.18);
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(235,244,255,.90) 68%, rgba(193,255,114,.16)),
        rgba(255,255,255,.92);
    color: #003172;
    box-shadow:
        0 10px 24px rgba(0,49,114,.065),
        inset 0 1px 0 rgba(255,255,255,.92);
    outline: none;
}

.kw-hero-pill:hover::after,
.kw-hero-pill:focus-visible::after {
    left: 136%;
}

html[data-theme="dark"] .kw-hero::before {
    background:
        radial-gradient(circle at 50% 34%, rgba(255,255,255,.075), transparent 48%),
        radial-gradient(circle at 34% 54%, rgba(245,158,11,.024), transparent 34%),
        radial-gradient(circle at 68% 52%, rgba(34,197,94,.018), transparent 36%);
    filter: blur(34px);
    opacity: .96;
}

html[data-theme="dark"] .kw-hero::after {
    background:
        radial-gradient(circle at 50% 44%, rgba(255,255,255,.065), rgba(255,255,255,.020) 42%, transparent 76%);
    filter: blur(24px);
    opacity: .92;
}

/* Dark hero should stay matte-black; remove the background spotlight/glow layers. */
html[data-theme="dark"] .kw-hero::before,
html[data-theme="dark"] .kw-hero::after {
    display: none;
}

html[data-theme="dark"] .kw-hero__title-line--light {
    color: rgba(248, 249, 252, .94);
    text-shadow: 0 0 24px rgba(255,255,255,.025);
}

html[data-theme="dark"] .kw-hero__title-line--strong {
    background: linear-gradient(180deg, rgba(245, 247, 252, .86) 0%, rgba(226, 232, 240, .72) 62%, rgba(226, 232, 240, .38) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 28px rgba(255,255,255,.035);
}

html[data-theme="dark"] .kw-hero-rotator .kw-hero__title-line--strong,
html[data-theme="dark"] .kw-hero__title-prefix,
html[data-theme="dark"] .kw-hero__rotating-word {
    background: linear-gradient(180deg, rgba(245, 247, 252, .86) 0%, rgba(226, 232, 240, .72) 62%, rgba(226, 232, 240, .38) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

html[data-theme="dark"] .kw-hero__rotating-word::after {
    background: rgba(242, 244, 248, .48);
}

html[data-theme="dark"] .kw-hero__lead {
    color: rgba(230,239,249,.77);
}

html[data-theme="dark"] .kw-hero__lead-text {
    color: rgba(230,239,249,.76);
}

html[data-theme="dark"] .kw-hero__lead strong {
    color: rgba(255,255,255,.92);
}


html[data-theme="dark"] .kw-hero-pill {
    border-color: rgba(255,255,255,.13);
    background: rgba(255,255,255,.055);
    color: rgba(241,244,238,.82);
    box-shadow: none;
}

html[data-theme="dark"] .kw-hero-pill:hover,
html[data-theme="dark"] .kw-hero-pill:focus-visible {
    border-color: rgba(255,255,255,.20);
    background: rgba(255,255,255,.085);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

@media (max-width: 980px) {
    .kw-hero {
        padding-top: 68px;
    }

    .kw-hero__inner {
        width: min(100%, 860px);
    }
}

@media (max-width: 640px) {
    .kw-hero {
        padding: 52px 0 34px;
    }

    .kw-hero::before {
        top: 18px;
        width: min(700px, 140%);
        height: 410px;
    }

    .kw-hero::after {
        top: 42px;
        width: min(560px, 114%);
        height: 260px;
    }

    .kw-hero__inner {
        width: min(100%, 430px);
    }

    .kw-hero__title {
        max-width: 430px;
        letter-spacing: -0.038em;
        line-height: 1;
        text-wrap: balance;
    }

    .kw-hero__title-line--light {
        font-size: clamp(29px, 8.15vw, 37px);
        font-weight: 650;
        line-height: 1.045;
    }

    .kw-hero__title-line--strong {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: center;
        column-gap: .16em;
        row-gap: .02em;
        max-width: 100%;
        margin-top: 2px;
        padding-bottom: .18em;
        font-size: clamp(24px, 6.72vw, 31px);
        font-weight: 300;
        line-height: 1.075;
        letter-spacing: -0.035em;
    }

    .kw-hero__title-prefix,
    .kw-hero__rotating-word {
        display: inline-block;
        max-width: 100%;
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .kw-hero__rotating-word {
        min-width: 0;
        margin-left: 0;
    }

    .kw-hero__rotating-word::after {
        margin-left: .06em;
    }

    .kw-hero__lead {
        width: min(100%, 410px);
        gap: 12px;
        margin-top: 18px;
    }

    .kw-hero__lead-text {
        max-width: 390px;
        font-size: 14.1px;
        line-height: 1.62;
        letter-spacing: -0.01em;
        text-wrap: pretty;
    }

    .kw-hero__lead-links {
        gap: 6px;
        max-width: 360px;
    }

    .kw-hero-pill {
        min-height: 24px;
        padding: 0 9px;
        font-size: 11.6px;
        line-height: 1;
        white-space: nowrap;
    }
}

@media (max-width: 430px) {
    .kw-hero__inner {
        width: min(100%, 404px);
    }

    .kw-hero__title {
        max-width: 404px;
    }

    .kw-hero__title-line--light {
        font-size: clamp(28px, 8vw, 34px);
    }

    .kw-hero__title-line--strong {
        font-size: clamp(23px, 6.65vw, 28.5px);
        line-height: 1.08;
    }

    .kw-hero__lead-text {
        max-width: 368px;
        font-size: 13.9px;
    }
}

@media (max-width: 390px) {
    .kw-hero {
        padding-top: 48px;
    }

    .kw-hero__inner {
        width: min(100%, 366px);
    }

    .kw-hero__title {
        max-width: 366px;
        letter-spacing: -0.034em;
    }

    .kw-hero__title-line--light {
        font-size: clamp(27px, 7.75vw, 31px);
    }

    .kw-hero__title-line--strong {
        font-size: clamp(22px, 6.35vw, 25.5px);
        letter-spacing: -0.03em;
    }

    .kw-hero__lead {
        margin-top: 16px;
    }

    .kw-hero__lead-text {
        max-width: 336px;
        font-size: 13.65px;
        line-height: 1.6;
    }

    .kw-hero__lead-links {
        max-width: 326px;
        gap: 5px;
    }

    .kw-hero-pill {
        min-height: 23px;
        padding: 0 8px;
        font-size: 11.35px;
    }
}

@media (max-width: 360px) {
    .kw-hero__inner {
        width: min(100%, 338px);
    }

    .kw-hero__title {
        max-width: 338px;
        letter-spacing: -0.03em;
    }

    .kw-hero__title-line--light {
        font-size: clamp(26px, 7.45vw, 28.5px);
    }

    .kw-hero__title-line--strong {
        font-size: clamp(21px, 6vw, 23px);
        line-height: 1.1;
    }

    .kw-hero__lead-text {
        max-width: 318px;
        font-size: 13.4px;
        line-height: 1.58;
    }

    .kw-hero__lead-links {
        max-width: 308px;
    }
}

.kw-shell {
    min-height: 100vh;
}

.kw-topbar {
    height: 64px;
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 40;
}

.kw-topbar-inner {
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.kw-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 780;
    letter-spacing: -.025em;
    color: var(--text);
    white-space: nowrap;
}

.kw-brand-mark {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.kw-top-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-width: 0;
}

.kw-nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.kw-nav-link:hover {
    color: var(--text);
}

.kw-theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    height: 34px;
    padding: 3px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: var(--shadow);
}

.kw-theme-btn {
    height: 26px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--muted);
    padding: 0 10px;
    font-size: 11px;
    font-weight: 760;
    cursor: pointer;
}

.kw-theme-btn.is-active {
    background: var(--surface-3);
    color: var(--text);
}

html[data-theme="light"] .kw-theme-btn.is-active {
    background: #111827;
    color: #fff;
}


.kw-page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 72px;
}

.kw-page-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.kw-breadcrumb {
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 650;
    margin-bottom: 10px;
}

.kw-page-title {
    margin: 0;
    color: var(--text);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.12;
    letter-spacing: -.045em;
    font-weight: 640;
}

.kw-page-copy {
    margin: 9px 0 0;
    max-width: 640px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 430;
}

.kw-counter {
    flex: 0 0 auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    border-radius: 10px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 720;
    box-shadow: var(--shadow);
}

.kw-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.kw-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    border-radius: 7px;
    padding: 3px 7px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--muted);
    font-size: 10px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.kw-badge-featured {
    color: var(--accent-2);
    background: color-mix(in srgb, var(--accent) 11%, transparent);
    border-color: color-mix(in srgb, var(--accent) 26%, transparent);
}

.kw-badge-urgent {
    color: #f87171;
    background: rgba(239, 68, 68, .09);
    border-color: rgba(239, 68, 68, .20);
}

html[data-theme="light"] .kw-badge-urgent {
    color: #b91c1c;
}

.kw-badge-new {
    color: #4ade80;
    background: rgba(34, 197, 94, .09);
    border-color: rgba(34, 197, 94, .20);
}

html[data-theme="light"] .kw-badge-new {
    color: #15803d;
}

.kw-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 450;
}

.kw-meta-item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.kw-meta-item + .kw-meta-item::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-right: 14px;
    border-radius: 999px;
    background: var(--muted-2);
    opacity: .55;
}

.kw-audience-tabs {
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
    border: 1px solid rgba(0, 49, 114, .10);
    border-radius: 13px;
    background: rgba(255, 255, 255, .60);
    box-shadow: none;
}

.kw-audience-tab {
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: transparent;
    color: rgba(0, 49, 114, .66);
    font-size: 11.4px;
    font-weight: 560;
    line-height: 1;
    letter-spacing: -.006em;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow:
        0 8px 20px rgba(0,49,114,.035),
        inset 0 1px 0 rgba(255,255,255,.82);
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.kw-audience-label {
    white-space: nowrap;
}

.kw-audience-count {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: rgba(0, 49, 114, .48);
    font-size: 10.6px;
    font-weight: 620;
    line-height: 1;
}

.kw-audience-count::before { content: "("; }
.kw-audience-count::after { content: ")"; }

.kw-audience-tab:hover,
.kw-audience-tab:focus-visible {
    border-color: rgba(0, 49, 114, .10);
    background: rgba(255, 255, 255, .72);
    color: #003172;
    outline: none;
}

.kw-audience-tab.is-active {
    border-color: rgba(0, 49, 114, .14);
    background: rgba(255, 255, 255, .96);
    color: #003172;
    font-weight: 650;
}

.kw-audience-tab.is-active .kw-audience-count {
    color: rgba(0, 49, 114, .68);
}

html[data-theme="dark"] .kw-audience-tabs {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .035);
}

html[data-theme="dark"] .kw-audience-tab {
    color: rgba(255, 255, 255, .66);
}

html[data-theme="dark"] .kw-audience-count {
    color: rgba(255, 255, 255, .45);
}

html[data-theme="dark"] .kw-audience-tab:hover,
html[data-theme="dark"] .kw-audience-tab:focus-visible {
    border-color: rgba(255, 255, 255, .11);
    background: rgba(255, 255, 255, .055);
    color: #ffffff;
}

html[data-theme="dark"] .kw-audience-tab.is-active {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .09);
    color: #ffffff;
}

html[data-theme="dark"] .kw-audience-tab.is-active .kw-audience-count {
    color: rgba(255, 255, 255, .70);
}

.kw-filter-panel {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 14px;
    margin-bottom: 14px;
}

.kw-filter-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(5, minmax(130px, .75fr)) auto;
    gap: 10px;
    align-items: end;
}

.kw-field {
    display: grid;
    gap: 6px;
}

.kw-field label {
    color: var(--muted-2);
    font-size: 10px;
    font-weight: 780;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.kw-input,
.kw-select {
    width: 100%;
    min-height: 38px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--text);
    padding: 0 11px;
    outline: none;
}

.kw-input:focus,
.kw-select:focus {
    border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
}

.kw-input::placeholder {
    color: var(--muted-2);
}

.kw-filter-actions {
    display: flex;
    gap: 8px;
}

.kw-filter-btn,
.kw-clear-btn {
    min-height: 38px;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 780;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kw-filter-btn {
    border: 1px solid color-mix(in srgb, var(--accent) 36%, transparent);
    background: var(--accent);
    color: #111;
}

.kw-clear-btn {
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--muted);
}

.kw-list-panel {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.kw-list-head {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(150px, .55fr) minmax(160px, .6fr) 90px;
    gap: 18px;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--muted-2);
    font-size: 11px;
    font-weight: 780;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.kw-job-row {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(150px, .55fr) minmax(160px, .6fr) 90px;
    gap: 18px;
    align-items: center;
    min-height: 84px;
    padding: 16px 18px;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    transition: background .14s ease;
}

.kw-job-row:last-child {
    border-bottom: 0;
}

.kw-job-row:hover {
    background: var(--surface-2);
}

.kw-job-main {
    min-width: 0;
}

.kw-job-badge-line {
    min-height: 22px;
    margin-bottom: 8px;
}

.kw-job-title {
    display: block;
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: -.015em;
    font-weight: 720;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kw-job-title:hover {
    color: var(--accent-2);
}

.kw-company,
.kw-location,
.kw-posted {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 470;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kw-view {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 0 10px;
    color: var(--text-2);
    background: var(--surface-2);
    font-size: 12px;
    font-weight: 700;
}

.kw-job-row:hover .kw-view {
    border-color: color-mix(in srgb, var(--accent) 24%, var(--border));
    color: var(--accent-2);
}

.kw-empty {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    border-radius: 14px;
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow);
}

.kw-pagination {
    margin-top: 18px;
    color: var(--muted);
}

.kw-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 18px;
    align-items: start;
}

.kw-panel {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.kw-job-single-panel {
    overflow: hidden;
}

.kw-job-head,
.kw-job-single-head {
    padding: 28px 28px 24px;
    border-bottom: 1px solid var(--border);
}

.kw-job-single-head__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-height: 30px;
    margin-bottom: 15px;
}

.kw-job-single-identity {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.kw-job-single-identity__copy {
    min-width: 0;
}

.kw-single-badges {
    min-width: 0;
}

.kw-job-single-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
}

.kw-detail-title {
    margin: 0;
    color: var(--text);
    font-size: clamp(22px, 2.45vw, 30px);
    line-height: 1.13;
    letter-spacing: -.04em;
    font-weight: 735;
    text-wrap: balance;
}

.kw-job-single-employer__logo {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    color: var(--text);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .02em;
}

.kw-job-single-employer__logo.has-image {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.kw-job-single-employer__logo.has-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.kw-job-single-employer__logo.has-image span {
    display: none;
}

.kw-job-single-employer__logo.is-fallback {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(0, 49, 114, .10);
    border-radius: 16px;
    background:
        radial-gradient(circle at 28% 20%, rgba(193, 255, 114, .18), transparent 44%),
        rgba(0, 49, 114, .045);
    color: #003172;
    box-shadow: 0 10px 24px rgba(0, 49, 114, .055);
}

.kw-job-single-employer__logo.is-fallback img {
    display: none;
}

.kw-job-single-employer__logo span {
    position: relative;
    z-index: 1;
}

.kw-job-single-employer__name-row {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
    margin-top: 7px;
}

.kw-job-single-employer__name {
    display: inline-flex;
    min-width: 0;
    color: #003172;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 640;
    letter-spacing: -.012em;
    text-decoration: none;
}

a.kw-job-single-employer__name:hover {
    color: var(--text);
    text-decoration: none;
}

.kw-detail-meta,
.kw-job-single-meta {
    margin-top: 18px;
}

.kw-job-single-meta--inline {
    margin-top: 11px;
}

.kw-job-single-meta {
    gap: 9px 16px;
}

.kw-job-single-meta .kw-meta-item {
    gap: 7px;
    color: var(--muted);
}

.kw-job-single-meta .kw-meta-item + .kw-meta-item::before {
    margin-right: 7px;
}

.kw-job-single-meta svg {
    display: block;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    color: color-mix(in srgb, var(--text) 58%, var(--muted));
    stroke-width: 1.85;
}

.kw-job-single-meta__deadline {
    color: var(--text-2);
}

.kw-job-deadline-copy {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.kw-job-deadline-label {
    color: var(--text-2);
    font-weight: 690;
}

.kw-job-deadline-separator {
    color: var(--muted-2);
    font-weight: 610;
}

.kw-job-deadline-date {
    color: var(--muted);
    font-weight: 590;
}

.kw-job-single-meta__location,
.kw-job-location-parts {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.kw-job-meta-link,
.kw-info-link {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease;
}

.kw-job-meta-link:hover,
.kw-info-link:hover {
    color: var(--text);
    text-decoration: none;
}


.kw-location-comma {
    margin-right: 4px;
}

.kw-tag-list,
.kw-job-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px;
}

.kw-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid color-mix(in srgb, var(--border) 86%, transparent);
    background: color-mix(in srgb, var(--surface-2) 92%, transparent);
    color: color-mix(in srgb, var(--text-2) 70%, var(--muted));
    border-radius: 10px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: .005em;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34);
    transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

a.kw-tag:hover {
    border-color: var(--border-strong);
    background: color-mix(in srgb, var(--surface-3) 88%, transparent);
    color: var(--text-2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .44);
    text-decoration: none;
}

.kw-tag-primary {
    color: color-mix(in srgb, var(--accent-2) 76%, var(--text));
    background: color-mix(in srgb, var(--accent) 11%, var(--surface-2));
    border-color: color-mix(in srgb, var(--accent) 25%, var(--border));
}

.kw-content,
.kw-job-single-content {
    padding: 3px 28px 30px;
}

.kw-section {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
}

.kw-section:first-child {
    border-top: 0;
    margin-top: 0;
}

.kw-section h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -.01em;
    font-weight: 760;
}

.kw-section div {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.78;
    white-space: pre-line;
}

.kw-sidebar,
.kw-job-single-sidebar {
    position: sticky;
    top: 82px;
    padding: 18px;
}

.kw-sidebar-title {
    margin: 0 0 13px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 735;
    letter-spacing: -.01em;
}

.kw-info {
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--surface-3) 46%, transparent), transparent 34%),
        color-mix(in srgb, var(--surface-2) 92%, transparent);
}

.kw-info-row {
    display: grid;
    grid-template-columns: minmax(104px, .88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 11px 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
    background: transparent;
}

.kw-info-row:last-child {
    border-bottom: 0;
}

.kw-label {
    display: block;
    margin-bottom: 0;
    color: var(--muted-2);
    font-size: 10.25px;
    font-weight: 720;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .075em;
}

.kw-value {
    display: block;
    min-width: 0;
    color: var(--text-2);
    font-size: 12.8px;
    line-height: 1.45;
    font-weight: 570;
    text-align: right;
}

.kw-info-row--deadline {
    background: color-mix(in srgb, var(--surface-3) 48%, transparent);
}

.kw-info-row--deadline .kw-label {
    color: var(--text-2);
}

.kw-info-row--deadline .kw-value {
    color: var(--text);
    font-weight: 660;
}

.kw-info-row--published .kw-value {
    color: color-mix(in srgb, var(--text-2) 90%, var(--muted));
}

.kw-apply {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
    min-height: 42px;
    border: 1px solid rgba(0, 49, 114, .14);
    border-radius: 11px;
    background: rgba(255, 255, 255, .98);
    color: #003172;
    box-shadow: 0 8px 18px rgba(0, 49, 114, .055);
    font-size: 12.2px;
    font-weight: 570;
    line-height: 1;
    letter-spacing: .055em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color .18s ease,
        background .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

.kw-apply:hover,
.kw-apply:focus-visible {
    border-color: rgba(0, 49, 114, .23);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(243,248,255,.98));
    color: #003172;
    box-shadow: 0 12px 24px rgba(0, 49, 114, .085);
    text-decoration: none;
    outline: none;
}

.kw-apply:disabled {
    opacity: .58;
    cursor: not-allowed;
    box-shadow: none;
}

.kw-note {
    margin: 11px 0 0;
    color: var(--muted-2);
    font-size: 12px;
    line-height: 1.55;
}

.kw-job-related {
    margin-top: 24px;
}

.kw-job-related__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.kw-job-related__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.15;
    letter-spacing: -.04em;
    font-weight: 760;
}

.kw-job-related__all {
    flex: 0 0 auto;
}

.kw-job-related__grid {
    margin-top: 0;
}

html[data-theme="dark"] .kw-job-single-employer__logo.is-fallback {
    border-color: rgba(255, 255, 255, .12);
    background:
        radial-gradient(circle at 28% 20%, rgba(193, 255, 114, .16), transparent 44%),
        rgba(255, 255, 255, .055);
    color: #ffffff;
    box-shadow: none;
}

html[data-theme="dark"] .kw-job-single-employer__name {
    color: rgba(255, 255, 255, .86);
}

html[data-theme="dark"] .kw-info {
    border-color: rgba(255, 255, 255, .10);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .052), transparent 36%),
        rgba(255, 255, 255, .045);
}

html[data-theme="dark"] .kw-info-row {
    border-bottom-color: rgba(255, 255, 255, .085);
    background: transparent;
}

html[data-theme="dark"] .kw-info-row:last-child {
    border-bottom-color: transparent;
}

html[data-theme="dark"] .kw-info-row--deadline {
    background: rgba(255, 255, 255, .055);
}

html[data-theme="dark"] .kw-info-row--deadline .kw-label,
html[data-theme="dark"] .kw-info-row--deadline .kw-value {
    color: #ffffff;
}

html[data-theme="dark"] .kw-job-deadline-label {
    color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .kw-job-deadline-separator,
html[data-theme="dark"] .kw-job-deadline-date {
    color: rgba(255, 255, 255, .64);
}

html[data-theme="dark"] .kw-tag {
    border-color: rgba(255, 255, 255, .11);
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .68);
    box-shadow: none;
}

html[data-theme="dark"] a.kw-tag:hover {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .085);
    color: #ffffff;
}

html[data-theme="dark"] .kw-apply {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .075);
    color: rgba(255, 255, 255, .94);
    box-shadow: none;
}

html[data-theme="dark"] .kw-apply:hover,
html[data-theme="dark"] .kw-apply:focus-visible {
    border-color: rgba(193, 255, 114, .28);
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    box-shadow: none;
}


.kw-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 13px;
    font-weight: 650;
}

.kw-alert-success {
    color: #86efac;
    border-color: rgba(34,197,94,.22);
    background: rgba(34,197,94,.07);
}

.kw-alert-error {
    color: #fca5a5;
    border-color: rgba(239,68,68,.22);
    background: rgba(239,68,68,.07);
}

html[data-theme="light"] .kw-alert-success {
    color: #15803d;
}

html[data-theme="light"] .kw-alert-error {
    color: #b91c1c;
}

@media (max-width: 420px) {
    .kw-info-row {
        grid-template-columns: 1fr;
        gap: 4px;
        align-items: start;
    }

    .kw-value {
        text-align: left;
    }

    .kw-job-deadline-copy {
        white-space: normal;
        flex-wrap: wrap;
    }
}

@media (max-width: 1180px) {
    .kw-filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kw-filter-actions {
        grid-column: span 3;
    }
}

@media (max-width: 640px) {
    .kw-job-single-identity {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 13px;
    }

    .kw-job-single-employer__logo.has-image {
        width: 58px;
        height: 58px;
    }

    .kw-job-single-employer__logo.is-fallback {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

    .kw-detail-title {
        font-size: clamp(18px, 5.2vw, 22px);
        line-height: 1.18;
    }
}

@media (max-width: 920px) {
    .kw-detail-grid {
        grid-template-columns: 1fr;
    }

    .kw-sidebar,
    .kw-job-single-sidebar {
        position: static;
    }
}

@media (max-width: 860px) {
    .kw-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kw-filter-actions {
        grid-column: span 2;
    }

    .kw-list-head {
        display: none;
    }

    .kw-job-row {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 0;
        padding: 16px;
    }

    .kw-job-title,
    .kw-company,
    .kw-location,
    .kw-posted {
        white-space: normal;
    }

    .kw-view {
        justify-self: stretch;
    }
}

@media (max-width: 720px) {
    .kw-topbar {
        height: auto;
    }

    .kw-topbar-inner,
    .kw-page {
        width: min(100% - 24px, 1180px);
    }

    .kw-topbar-inner {
        min-height: 64px;
        padding: 10px 0;
        flex-wrap: wrap;
    }

    .kw-top-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }

    .kw-nav-link {
        font-size: 12px;
    }

    .kw-page {
        padding-top: 26px;
    }

    .kw-page-head {
        display: block;
    }

    .kw-counter {
        margin-top: 16px;
    }

}

@media (max-width: 640px) {
    .kw-job-head,
    .kw-job-single-head {
        padding: 16px 14px 15px;
    }

    .kw-job-single-head__top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 10px;
    }

    .kw-single-badges,
    .kw-single-badges .kw-badges {
        min-width: 0;
    }

    .kw-single-badges .kw-badges {
        gap: 5px;
    }

    .kw-job-single-actions {
        align-self: start;
        justify-self: end;
        gap: 7px;
    }

    .kw-job-related__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .kw-detail-title {
        font-size: clamp(18px, 5.2vw, 22px);
        line-height: 1.18;
        letter-spacing: -.032em;
    }

    .kw-job-single-employer__name-row {
        margin-top: 6px;
    }

    .kw-job-single-employer__name {
        font-size: 13.2px;
    }

    .kw-job-single-meta--inline {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 10px;
    }

    .kw-job-single-meta .kw-meta-item {
        width: 100%;
        min-height: 20px;
        gap: 7px;
        line-height: 1.42;
    }

    .kw-job-single-meta .kw-meta-item + .kw-meta-item::before {
        content: none;
        display: none;
    }

    .kw-job-deadline-copy {
        white-space: normal;
        flex-wrap: wrap;
    }

    .kw-job-single-tags {
        gap: 6px;
        margin-top: 14px;
    }

    .kw-tag {
        min-height: 27px;
        padding: 0 9px;
        font-size: 10.6px;
    }

    .kw-content,
    .kw-job-single-content {
        padding: 0 14px 22px;
    }

    .kw-job-related__all {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .kw-filter-grid {
        grid-template-columns: 1fr;
    }

    .kw-filter-actions {
        grid-column: span 1;
        flex-direction: column;
    }

    .kw-audience-tabs {
        display: grid;
        grid-template-columns: 1fr;
    }
}



/* =====================================================
   GLOBAL KICKWISE JOB BADGES
   Shared by home, jobs archive and job single.
===================================================== */
.kw-badge,
.kw-home-job-badge {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 22px;
    padding: 0 7px;
    border: 1px solid var(--kw-job-badge-border, rgba(0, 49, 114, .10));
    border-radius: 8px;
    background: var(--kw-job-badge-bg, rgba(0, 49, 114, .045));
    color: var(--kw-job-badge-color, rgba(0, 49, 114, .66));
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 9.6px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .048em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: none;
    transform: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.kw-badge::before,
.kw-home-job-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0) 34%, rgba(255,255,255,.50) 50%, rgba(255,255,255,0) 66%, transparent 100%);
    transform: translateX(-140%);
    transition: transform .64s ease;
    pointer-events: none;
}

.kw-badge > *,
.kw-home-job-badge > * {
    position: relative;
    z-index: 1;
}

.kw-badge-featured,
.kw-home-job-badge--featured {
    --kw-job-badge-color: #8a5a00;
    --kw-job-badge-bg: rgba(231, 130, 0, .074);
    --kw-job-badge-bg-hover: rgba(231, 130, 0, .105);
    --kw-job-badge-border: rgba(231, 130, 0, .16);
    --kw-job-badge-border-hover: rgba(231, 130, 0, .24);
}

.kw-badge-urgent,
.kw-home-job-badge--urgent {
    --kw-job-badge-color: #b42318;
    --kw-job-badge-bg: rgba(180, 35, 24, .064);
    --kw-job-badge-bg-hover: rgba(180, 35, 24, .095);
    --kw-job-badge-border: rgba(180, 35, 24, .14);
    --kw-job-badge-border-hover: rgba(180, 35, 24, .22);
}

.kw-badge-new,
.kw-home-job-badge--new {
    --kw-job-badge-color: #147a50;
    --kw-job-badge-bg: rgba(20, 122, 80, .064);
    --kw-job-badge-bg-hover: rgba(20, 122, 80, .092);
    --kw-job-badge-border: rgba(20, 122, 80, .14);
    --kw-job-badge-border-hover: rgba(20, 122, 80, .22);
}

.kw-badge:hover,
.kw-home-job-badge:hover {
    background: var(--kw-job-badge-bg-hover, rgba(0, 49, 114, .065));
    border-color: var(--kw-job-badge-border-hover, rgba(0, 49, 114, .16));
    color: color-mix(in srgb, var(--kw-job-badge-color, #003172) 88%, #000 12%);
}

.kw-badge:hover::before,
.kw-home-job-badge:hover::before {
    transform: translateX(140%);
}

html[data-theme="dark"] .kw-badge-featured,
html[data-theme="dark"] .kw-home-job-badge--featured {
    --kw-job-badge-color: #f6c56b;
    --kw-job-badge-bg: rgba(231, 130, 0, .12);
    --kw-job-badge-bg-hover: rgba(231, 130, 0, .16);
    --kw-job-badge-border: rgba(231, 130, 0, .22);
    --kw-job-badge-border-hover: rgba(231, 130, 0, .32);
}

html[data-theme="dark"] .kw-badge-urgent,
html[data-theme="dark"] .kw-home-job-badge--urgent {
    --kw-job-badge-color: #fda29b;
    --kw-job-badge-bg: rgba(180, 35, 24, .13);
    --kw-job-badge-bg-hover: rgba(180, 35, 24, .18);
    --kw-job-badge-border: rgba(180, 35, 24, .24);
    --kw-job-badge-border-hover: rgba(180, 35, 24, .34);
}

html[data-theme="dark"] .kw-badge-new,
html[data-theme="dark"] .kw-home-job-badge--new {
    --kw-job-badge-color: #7ee2b8;
    --kw-job-badge-bg: rgba(20, 122, 80, .13);
    --kw-job-badge-bg-hover: rgba(20, 122, 80, .18);
    --kw-job-badge-border: rgba(20, 122, 80, .24);
    --kw-job-badge-border-hover: rgba(20, 122, 80, .34);
}

/* =====================================================
   KICKWISE GLOBAL UI — card CTA, job badges and job grid
   Reusable across home, jobs archive and future modules.
===================================================== */

.kw-card-cta,
.kw-soft-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 31px;
    padding: 6px 12px;
    border-radius: 9px;
    border: 1px solid rgba(0, 49, 114, .16);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    color: #003172;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 10.8px;
    line-height: 1;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 5px 14px rgba(0, 49, 114, .055);
    transform: none !important;
    transition: box-shadow .24s ease, border-color .24s ease, background .24s ease, color .2s ease;
}

.kw-card-cta > *,
.kw-soft-cta > * {
    position: relative;
    z-index: 1;
}

.kw-card-cta svg {
    display: block;
    width: 13.5px;
    height: 13.5px;
    flex: 0 0 13.5px;
    stroke-width: 1.9;
}

.kw-card-cta::before,
.kw-soft-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0) 35%, rgba(255,255,255,.52) 50%, rgba(255,255,255,0) 65%, transparent 100%);
    transform: translateX(-145%);
    transition: transform .72s ease;
    pointer-events: none;
}

.kw-card-cta:hover,
.kw-card-cta:focus,
.kw-soft-cta:hover,
.kw-soft-cta:focus {
    border-color: rgba(0, 49, 114, .22);
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(233,243,255,.94) 66%, rgba(193,255,114,.18));
    color: #003172;
    box-shadow: 0 9px 20px rgba(0, 49, 114, .075);
    text-decoration: none !important;
}

.kw-card-cta:hover::before,
.kw-card-cta:focus::before,
.kw-soft-cta:hover::before,
.kw-soft-cta:focus::before {
    transform: translateX(145%);
}

.kw-badge,
.kw-home-job-badge,
.kw-job-badge {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 22px;
    padding: 0 7px;
    border: 1px solid var(--kw-job-badge-border, rgba(0, 49, 114, .10));
    border-radius: 8px;
    background: var(--kw-job-badge-bg, rgba(0, 49, 114, .045));
    color: var(--kw-job-badge-color, rgba(0, 49, 114, .66));
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 9.6px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .048em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: none;
    transform: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.kw-badge::before,
.kw-home-job-badge::before,
.kw-job-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0) 34%, rgba(255,255,255,.50) 50%, rgba(255,255,255,0) 66%, transparent 100%);
    transform: translateX(-140%);
    transition: transform .64s ease;
    pointer-events: none;
}

.kw-badge::after,
.kw-job-badge::after,
.kw-home-job-badge:not(:has(svg))::after {
    content: "";
    position: relative;
    z-index: 1;
    order: -1;
    display: block;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    background: currentColor;
    opacity: .95;
    -webkit-mask: var(--kw-job-badge-icon) center / contain no-repeat;
    mask: var(--kw-job-badge-icon) center / contain no-repeat;
}

.kw-badge > *,
.kw-home-job-badge > *,
.kw-job-badge > * {
    position: relative;
    z-index: 1;
}

.kw-home-job-badge svg,
.kw-badge svg,
.kw-job-badge svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    stroke-width: 1.9;
}

.kw-badge-featured,
.kw-home-job-badge--featured,
.kw-job-badge--featured {
    --kw-job-badge-color: #8a5a00;
    --kw-job-badge-bg: rgba(231, 130, 0, .074);
    --kw-job-badge-bg-hover: rgba(231, 130, 0, .105);
    --kw-job-badge-border: rgba(231, 130, 0, .16);
    --kw-job-badge-border-hover: rgba(231, 130, 0, .24);
    --kw-job-badge-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2.2 2.8 6.05 6.6.78-4.88 4.5 1.3 6.52L12 16.75 6.18 20.05l1.3-6.52-4.88-4.5 6.6-.78L12 2.2Z'/%3E%3C/svg%3E");
}

.kw-badge-urgent,
.kw-home-job-badge--urgent,
.kw-job-badge--urgent {
    --kw-job-badge-color: #b42318;
    --kw-job-badge-bg: rgba(180, 35, 24, .064);
    --kw-job-badge-bg-hover: rgba(180, 35, 24, .095);
    --kw-job-badge-border: rgba(180, 35, 24, .14);
    --kw-job-badge-border-hover: rgba(180, 35, 24, .22);
    --kw-job-badge-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.4 22 20H2L12 2.4Zm0 5.6c-.7 0-1.2.5-1.2 1.2v4.7c0 .7.5 1.2 1.2 1.2s1.2-.5 1.2-1.2V9.2c0-.7-.5-1.2-1.2-1.2Zm0 9.1a1.35 1.35 0 1 0 0 2.7 1.35 1.35 0 0 0 0-2.7Z'/%3E%3C/svg%3E");
}

.kw-badge-new,
.kw-home-job-badge--new,
.kw-job-badge--new {
    --kw-job-badge-color: #147a50;
    --kw-job-badge-bg: rgba(20, 122, 80, .064);
    --kw-job-badge-bg-hover: rgba(20, 122, 80, .092);
    --kw-job-badge-border: rgba(20, 122, 80, .14);
    --kw-job-badge-border-hover: rgba(20, 122, 80, .22);
    --kw-job-badge-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 13.6 8.35 20 10l-6.4 1.65L12 18l-1.65-6.35L4 10l6.35-1.65L12 2Zm6.3 11.8.7 2.7 2.7.7-2.7.7-.7 2.7-.7-2.7-2.7-.7 2.7-.7.7-2.7Z'/%3E%3C/svg%3E");
}

.kw-badge:hover,
.kw-home-job-badge:hover,
.kw-job-badge:hover {
    background: var(--kw-job-badge-bg-hover, rgba(0, 49, 114, .065));
    border-color: var(--kw-job-badge-border-hover, rgba(0, 49, 114, .16));
    color: color-mix(in srgb, var(--kw-job-badge-color, #003172) 88%, #000 12%);
}

.kw-badge:hover::before,
.kw-home-job-badge:hover::before,
.kw-job-badge:hover::before {
    transform: translateX(140%);
}

.kw-global-job-grid,
.kw-home-job-grid.kw-global-job-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.kw-global-job-card,
.kw-home-job-card.kw-global-job-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 188px;
    padding: 19px;
    border: 1px solid rgba(0, 49, 114, .11);
    border-radius: 21px;
    background:
        radial-gradient(circle at 12% -8%, rgba(2,132,199,.042), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.998), rgba(251,253,255,.994));
    box-shadow: 0 1px 0 rgba(255,255,255,.98) inset;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.kw-global-job-card:hover,
.kw-home-job-card.kw-global-job-card:hover {
    border-color: rgba(0, 49, 114, .17);
    background:
        radial-gradient(circle at 12% -8%, rgba(2,132,199,.065), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,1), rgba(249,252,255,.998));
    box-shadow: 0 18px 44px rgba(0, 49, 114, .075);
}

html[data-theme="dark"] .kw-card-cta,
html[data-theme="dark"] .kw-soft-cta {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .085);
    color: rgba(255, 255, 255, .90);
    box-shadow: none;
}

html[data-theme="dark"] .kw-card-cta:hover,
html[data-theme="dark"] .kw-card-cta:focus,
html[data-theme="dark"] .kw-soft-cta:hover,
html[data-theme="dark"] .kw-soft-cta:focus {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .14);
    color: #ffffff;
    box-shadow: none;
}

html[data-theme="dark"] .kw-card-cta::before,
html[data-theme="dark"] .kw-soft-cta::before {
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0) 35%, rgba(255,255,255,.28) 50%, rgba(255,255,255,0) 65%, transparent 100%);
}

html[data-theme="dark"] .kw-badge-featured,
html[data-theme="dark"] .kw-home-job-badge--featured,
html[data-theme="dark"] .kw-job-badge--featured {
    --kw-job-badge-color: #f6c56b;
    --kw-job-badge-bg: rgba(231, 130, 0, .12);
    --kw-job-badge-bg-hover: rgba(231, 130, 0, .16);
    --kw-job-badge-border: rgba(231, 130, 0, .22);
    --kw-job-badge-border-hover: rgba(231, 130, 0, .32);
}

html[data-theme="dark"] .kw-badge-urgent,
html[data-theme="dark"] .kw-home-job-badge--urgent,
html[data-theme="dark"] .kw-job-badge--urgent {
    --kw-job-badge-color: #fda29b;
    --kw-job-badge-bg: rgba(180, 35, 24, .13);
    --kw-job-badge-bg-hover: rgba(180, 35, 24, .18);
    --kw-job-badge-border: rgba(180, 35, 24, .24);
    --kw-job-badge-border-hover: rgba(180, 35, 24, .34);
}

html[data-theme="dark"] .kw-badge-new,
html[data-theme="dark"] .kw-home-job-badge--new,
html[data-theme="dark"] .kw-job-badge--new {
    --kw-job-badge-color: #7ee2b8;
    --kw-job-badge-bg: rgba(20, 122, 80, .13);
    --kw-job-badge-bg-hover: rgba(20, 122, 80, .18);
    --kw-job-badge-border: rgba(20, 122, 80, .24);
    --kw-job-badge-border-hover: rgba(20, 122, 80, .34);
}

html[data-theme="dark"] .kw-global-job-card,
html[data-theme="dark"] .kw-home-job-card.kw-global-job-card {
    border-color: rgba(255,255,255,.09);
    background: rgba(255,255,255,.055);
    box-shadow: none;
}

html[data-theme="dark"] .kw-global-job-card:hover,
html[data-theme="dark"] .kw-home-job-card.kw-global-job-card:hover {
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.085);
    box-shadow: none;
}

@media (max-width: 980px) {
    .kw-global-job-grid,
    .kw-home-job-grid.kw-global-job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .kw-global-job-grid,
    .kw-home-job-grid.kw-global-job-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kw-global-job-card,
    .kw-home-job-card.kw-global-job-card {
        min-height: 142px;
        padding: 15px;
        border-radius: 17px;
    }

    .kw-badge,
    .kw-home-job-badge,
    .kw-job-badge {
        min-height: 21px;
        padding-inline: 6px;
        font-size: 9px;
    }

    .kw-badge::after,
    .kw-job-badge::after,
    .kw-home-job-badge:not(:has(svg))::after,
    .kw-home-job-badge svg,
    .kw-badge svg,
    .kw-job-badge svg {
        width: 11px;
        height: 11px;
        flex-basis: 11px;
    }
}

/* =====================================================
   KICKWISE GLOBAL JOB BADGES — ICONOIR ONLY
   Use <x-job-badge type="featured|urgent|new" /> everywhere.
   Icons are provided by blade-iconoir components, not CSS masks.
===================================================== */
.kw-badges,
.kw-home-job-card__badges,
.kw-job-badges {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 0;
}

.kw-badge,
.kw-job-badge,
.kw-home-job-badge {
    --kw-job-badge-color: #003172;
    --kw-job-badge-bg: rgba(0, 49, 114, .046);
    --kw-job-badge-bg-hover: rgba(0, 49, 114, .068);
    --kw-job-badge-border: rgba(0, 49, 114, .10);
    --kw-job-badge-border-hover: rgba(0, 49, 114, .15);

    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 22px;
    padding: 0 7px;
    border: 1px solid var(--kw-job-badge-border);
    border-radius: 8px;
    background: var(--kw-job-badge-bg);
    color: var(--kw-job-badge-color);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 9.6px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .048em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: none;
    transform: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.kw-badge::after,
.kw-job-badge::after,
.kw-home-job-badge::after {
    content: none !important;
    display: none !important;
}

.kw-badge::before,
.kw-job-badge::before,
.kw-home-job-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0) 34%, rgba(255,255,255,.50) 50%, rgba(255,255,255,0) 66%, transparent 100%);
    transform: translateX(-140%);
    transition: transform .64s ease;
    pointer-events: none;
}

.kw-badge > *,
.kw-job-badge > *,
.kw-home-job-badge > * {
    position: relative;
    z-index: 1;
}

.kw-badge__icon,
.kw-badge svg,
.kw-job-badge svg,
.kw-home-job-badge svg {
    display: block;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kw-badge-featured,
.kw-job-badge--featured,
.kw-home-job-badge--featured {
    --kw-job-badge-color: #8a5a00;
    --kw-job-badge-bg: rgba(231, 130, 0, .074);
    --kw-job-badge-bg-hover: rgba(231, 130, 0, .105);
    --kw-job-badge-border: rgba(231, 130, 0, .16);
    --kw-job-badge-border-hover: rgba(231, 130, 0, .24);
}

.kw-badge-urgent,
.kw-job-badge--urgent,
.kw-home-job-badge--urgent {
    --kw-job-badge-color: #b42318;
    --kw-job-badge-bg: rgba(180, 35, 24, .064);
    --kw-job-badge-bg-hover: rgba(180, 35, 24, .095);
    --kw-job-badge-border: rgba(180, 35, 24, .14);
    --kw-job-badge-border-hover: rgba(180, 35, 24, .22);
}

.kw-badge-new,
.kw-job-badge--new,
.kw-home-job-badge--new {
    --kw-job-badge-color: #147a50;
    --kw-job-badge-bg: rgba(20, 122, 80, .064);
    --kw-job-badge-bg-hover: rgba(20, 122, 80, .092);
    --kw-job-badge-border: rgba(20, 122, 80, .14);
    --kw-job-badge-border-hover: rgba(20, 122, 80, .22);
}

.kw-badge:hover,
.kw-job-badge:hover,
.kw-home-job-badge:hover {
    background: var(--kw-job-badge-bg-hover);
    border-color: var(--kw-job-badge-border-hover);
    color: color-mix(in srgb, var(--kw-job-badge-color) 88%, #000 12%);
}

.kw-badge:hover::before,
.kw-job-badge:hover::before,
.kw-home-job-badge:hover::before {
    transform: translateX(140%);
}

html[data-theme="dark"] .kw-badge,
html[data-theme="dark"] .kw-job-badge,
html[data-theme="dark"] .kw-home-job-badge {
    --kw-job-badge-bg: rgba(255,255,255,.046);
    --kw-job-badge-bg-hover: rgba(255,255,255,.064);
    --kw-job-badge-border: rgba(255,255,255,.10);
    --kw-job-badge-border-hover: rgba(255,255,255,.15);
    background: var(--kw-job-badge-bg);
    border-color: var(--kw-job-badge-border);
    color: rgba(248,250,252,.76);
}

html[data-theme="dark"] .kw-badge::before,
html[data-theme="dark"] .kw-job-badge::before,
html[data-theme="dark"] .kw-home-job-badge::before {
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0) 34%, rgba(255,255,255,.16) 50%, rgba(255,255,255,0) 66%, transparent 100%);
}

html[data-theme="dark"] .kw-badge-featured,
html[data-theme="dark"] .kw-job-badge--featured,
html[data-theme="dark"] .kw-home-job-badge--featured {
    --kw-job-badge-bg: rgba(255, 184, 77, .075);
    --kw-job-badge-bg-hover: rgba(255, 184, 77, .105);
    --kw-job-badge-border: rgba(255, 184, 77, .16);
    --kw-job-badge-border-hover: rgba(255, 184, 77, .24);
    color: rgba(255, 214, 149, .92);
}

html[data-theme="dark"] .kw-badge-urgent,
html[data-theme="dark"] .kw-job-badge--urgent,
html[data-theme="dark"] .kw-home-job-badge--urgent {
    --kw-job-badge-bg: rgba(255, 108, 96, .068);
    --kw-job-badge-bg-hover: rgba(255, 108, 96, .100);
    --kw-job-badge-border: rgba(255, 108, 96, .15);
    --kw-job-badge-border-hover: rgba(255, 108, 96, .24);
    color: rgba(255, 181, 173, .92);
}

html[data-theme="dark"] .kw-badge-new,
html[data-theme="dark"] .kw-job-badge--new,
html[data-theme="dark"] .kw-home-job-badge--new {
    --kw-job-badge-bg: rgba(76, 211, 143, .064);
    --kw-job-badge-bg-hover: rgba(76, 211, 143, .095);
    --kw-job-badge-border: rgba(76, 211, 143, .15);
    --kw-job-badge-border-hover: rgba(76, 211, 143, .23);
    color: rgba(171, 245, 205, .90);
}


/* =====================================================
   KICKWISE GLOBAL JOB BADGES — EXACT HOME BADGE SYSTEM
   Use <x-job-badge type="featured|urgent|new" /> everywhere.
   Iconoir components only: crown / flash / sparks.
===================================================== */
.kw-badges,
.kw-home-job-card__badges,
.kw-job-badges {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 0;
}

.kw-job-badge,
.kw-home-job-badge,
.kw-badge {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 22px;
    padding: 0 7px;
    border: 1px solid var(--kw-job-badge-border, rgba(0, 49, 114, .10));
    border-radius: 8px;
    background: var(--kw-job-badge-bg, rgba(0, 49, 114, .045));
    color: var(--kw-job-badge-color, rgba(0, 49, 114, .66));
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 9.6px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .048em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: none;
    transform: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.kw-job-badge::before,
.kw-home-job-badge::before,
.kw-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0) 34%, rgba(255,255,255,.50) 50%, rgba(255,255,255,0) 66%, transparent 100%);
    transform: translateX(-140%);
    transition: transform .64s ease;
    pointer-events: none;
}

.kw-job-badge::after,
.kw-home-job-badge::after,
.kw-badge::after {
    content: none !important;
    display: none !important;
}

.kw-job-badge svg,
.kw-home-job-badge svg,
.kw-badge svg,
.kw-job-badge span,
.kw-home-job-badge span,
.kw-badge span {
    position: relative;
    z-index: 1;
}

.kw-job-badge svg,
.kw-home-job-badge svg,
.kw-badge svg {
    display: block;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    stroke-width: 1.9;
}

.kw-job-badge--featured,
.kw-home-job-badge--featured,
.kw-badge-featured {
    --kw-job-badge-color: #8a5a00;
    --kw-job-badge-bg: rgba(231, 130, 0, .074);
    --kw-job-badge-bg-hover: rgba(231, 130, 0, .105);
    --kw-job-badge-border: rgba(231, 130, 0, .16);
    --kw-job-badge-border-hover: rgba(231, 130, 0, .24);
}

.kw-job-badge--urgent,
.kw-home-job-badge--urgent,
.kw-badge-urgent {
    --kw-job-badge-color: #b42318;
    --kw-job-badge-bg: rgba(180, 35, 24, .064);
    --kw-job-badge-bg-hover: rgba(180, 35, 24, .095);
    --kw-job-badge-border: rgba(180, 35, 24, .14);
    --kw-job-badge-border-hover: rgba(180, 35, 24, .22);
}

.kw-job-badge--new,
.kw-home-job-badge--new,
.kw-badge-new {
    --kw-job-badge-color: #147a50;
    --kw-job-badge-bg: rgba(20, 122, 80, .064);
    --kw-job-badge-bg-hover: rgba(20, 122, 80, .092);
    --kw-job-badge-border: rgba(20, 122, 80, .14);
    --kw-job-badge-border-hover: rgba(20, 122, 80, .22);
}

.kw-job-badge:hover,
.kw-home-job-badge:hover,
.kw-badge:hover {
    background: var(--kw-job-badge-bg-hover);
    border-color: var(--kw-job-badge-border-hover);
    color: color-mix(in srgb, var(--kw-job-badge-color) 88%, #000 12%);
}

.kw-job-badge:hover::before,
.kw-home-job-badge:hover::before,
.kw-badge:hover::before {
    transform: translateX(140%);
}

html[data-theme="dark"] .kw-job-badge--featured,
html[data-theme="dark"] .kw-home-job-badge--featured,
html[data-theme="dark"] .kw-badge-featured {
    --kw-job-badge-color: #f6c56b;
    --kw-job-badge-bg: rgba(231, 130, 0, .12);
    --kw-job-badge-bg-hover: rgba(231, 130, 0, .16);
    --kw-job-badge-border: rgba(231, 130, 0, .22);
    --kw-job-badge-border-hover: rgba(231, 130, 0, .32);
}

html[data-theme="dark"] .kw-job-badge--urgent,
html[data-theme="dark"] .kw-home-job-badge--urgent,
html[data-theme="dark"] .kw-badge-urgent {
    --kw-job-badge-color: #fda29b;
    --kw-job-badge-bg: rgba(180, 35, 24, .13);
    --kw-job-badge-bg-hover: rgba(180, 35, 24, .18);
    --kw-job-badge-border: rgba(180, 35, 24, .24);
    --kw-job-badge-border-hover: rgba(180, 35, 24, .34);
}

html[data-theme="dark"] .kw-job-badge--new,
html[data-theme="dark"] .kw-home-job-badge--new,
html[data-theme="dark"] .kw-badge-new {
    --kw-job-badge-color: #7ee2b8;
    --kw-job-badge-bg: rgba(20, 122, 80, .13);
    --kw-job-badge-bg-hover: rgba(20, 122, 80, .18);
    --kw-job-badge-border: rgba(20, 122, 80, .24);
    --kw-job-badge-border-hover: rgba(20, 122, 80, .34);
}

/* =====================================================
   KICKWISE — GLOBAL JOB CARD GRID
   Reuses the homepage Curated Football Roles card system
   outside the homepage carousel context.
===================================================== */

.kw-global-job-grid-section,
.kw-global-job-grid-section * {
    box-sizing: border-box;
}

.kw-global-job-grid-section {
    width: 100%;
}

.kw-global-job-grid-section .kw-home-job-grid,
.kw-home-job-grid.kw-global-job-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    gap: 16px !important;
    width: 100%;
    overflow: visible;
}

.kw-global-job-grid-section .kw-home-job-card {
    width: 100%;
    min-width: 0;
    scroll-snap-align: unset;
}

.kw-global-job-grid-section .kw-home-job-card__badges a,
.kw-global-job-grid-section .kw-home-job-card__badges .kw-home-job-badge {
    text-decoration: none !important;
}

.kw-global-job-grid-section .kw-home-job-card__foot .kw-saved-form,
.kw-global-job-grid-section .kw-home-job-card__foot .kw-share-menu {
    flex: 0 0 auto;
}

.kw-global-job-grid-section .kw-home-job-card__view-link {
    margin-left: auto;
}

@media (max-width: 980px) {
    .kw-global-job-grid-section .kw-home-job-grid,
    .kw-home-job-grid.kw-global-job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .kw-global-job-grid-section .kw-home-job-grid,
    .kw-home-job-grid.kw-global-job-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =====================================================
   KICKWISE — GLOBAL PAGINATION
   Icon-based compact pagination system for archive pages.
   Shared by Jobs, Blog and future archive pages.
===================================================== */
.kw-pagination {
    width: 100%;
    margin: 30px auto 0;
    text-align: center;
}

.kw-pagination-nav {
    display: flex;
    justify-content: center;
}

.kw-pagination-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kw-pagination-link {
    width: 30px;
    min-width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 49, 114, .12);
    border-radius: 8px;
    background: #ffffff;
    color: rgba(15, 23, 42, .68);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 570;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.kw-pagination-link:hover,
.kw-pagination-link:focus-visible {
    border-color: rgba(0, 49, 114, .24);
    background: rgba(0, 49, 114, .045);
    color: #003172;
    outline: none;
}

.kw-pagination-link.is-active {
    border-color: rgba(0, 49, 114, .24);
    background: rgba(0, 49, 114, .075);
    color: #003172;
    font-weight: 680;
}

.kw-pagination-link--arrow,
.kw-pagination-link--arrow:visited,
.kw-pagination-link--arrow.is-disabled {
    width: 27px;
    min-width: 27px;
    height: 30px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(0, 49, 114, .68);
    box-shadow: none;
}

.kw-pagination-link--arrow:hover,
.kw-pagination-link--arrow:focus-visible {
    border: 0;
    background: transparent;
    color: #003172;
    outline: none;
}

.kw-pagination-link--arrow.is-disabled {
    color: rgba(0, 49, 114, .34);
    cursor: default;
    pointer-events: none;
}

.kw-pagination-link--dots {
    width: 22px;
    min-width: 22px;
    border-color: transparent;
    background: transparent;
    color: rgba(71, 85, 105, .60);
    pointer-events: none;
}

.kw-pagination-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.05;
}

.kw-pagination-summary {
    margin: 9px 0 0;
    color: rgba(0, 49, 114, .42);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 11.2px;
    font-weight: 430;
    line-height: 1.45;
    text-align: center;
}

html[data-theme="dark"] .kw-pagination-link {
    border-color: rgba(255, 255, 255, .14);
    background: #101012;
    color: rgba(255, 255, 255, .74);
    box-shadow: none;
}

html[data-theme="dark"] .kw-pagination-link:hover,
html[data-theme="dark"] .kw-pagination-link:focus-visible {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
}

html[data-theme="dark"] .kw-pagination-link.is-active {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .11);
    color: #ffffff;
}

html[data-theme="dark"] .kw-pagination-link--arrow,
html[data-theme="dark"] .kw-pagination-link--arrow:visited,
html[data-theme="dark"] .kw-pagination-link--arrow.is-disabled,
html[data-theme="dark"] .kw-pagination-link--dots {
    border: 0;
    background: transparent;
    box-shadow: none;
}

html[data-theme="dark"] .kw-pagination-link--arrow {
    color: rgba(255, 255, 255, .68);
}

html[data-theme="dark"] .kw-pagination-link--arrow.is-disabled {
    color: rgba(255, 255, 255, .34);
}

html[data-theme="dark"] .kw-pagination-link--arrow:hover,
html[data-theme="dark"] .kw-pagination-link--arrow:focus-visible {
    border: 0;
    background: transparent;
    color: #ffffff;
}

html[data-theme="dark"] .kw-pagination-summary {
    color: rgba(255, 255, 255, .48);
}

/* =====================================================
   KICKWISE GLOBAL UI — verified employer badge
   Reused in home cards, job archive table/list/grid and future modules.
===================================================== */
.kw-employer-name-with-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    max-width: 100%;
    vertical-align: middle;
}

.kw-employer-name-with-verified > a,
.kw-employer-name-with-verified > span:first-child {
    min-width: 0;
}

.kw-employer-verified,
.kw-employer-verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    min-width: 17px;
    min-height: 17px;
    color: #1da1f2;
    line-height: 0;
    vertical-align: middle;
    transform: translateY(1px);
    filter: none;
}

.kw-employer-verified svg,
.kw-employer-verified-badge svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: currentColor;
    stroke: none;
    overflow: visible;
}

html[data-theme="dark"] .kw-employer-verified,
html[data-theme="dark"] .kw-employer-verified-badge {
    color: #36b3ff;
    filter: none;
}



/* =====================================================
   KICKWISE JOB SINGLE — CALM SIDEBAR DETAILS
   One outer panel. Role and football-player information
   are separated by rhythm, spacing and a single divider.
===================================================== */
.kw-job-single-sidebar {
    padding: 22px 22px 20px;
}

.kw-role-summary,
.kw-player-specs {
    min-width: 0;
}

.kw-role-summary__head,
.kw-player-specs__head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
}

.kw-role-summary__head::after,
.kw-player-specs__head::after {
    content: "";
    flex: 1 1 auto;
    min-width: 22px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 49, 114, .15), rgba(0, 49, 114, .035), transparent);
}

.kw-role-summary__head .kw-sidebar-title,
.kw-player-specs__head h3 {
    flex: 0 0 auto;
    margin: 0;
    color: rgba(38, 65, 94, .62);
    font-size: 10.35px;
    line-height: 1.25;
    font-weight: 690;
    letter-spacing: .155em;
    text-transform: uppercase;
}

.kw-job-single-sidecol {
    position: sticky;
    top: 82px;
    display: grid;
    gap: 12px;
    align-self: start;
}

.kw-job-single-sidecol .kw-job-single-sidebar {
    position: static;
    top: auto;
}

.kw-deadline-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 14px;
    min-height: 58px;
    padding: 12px 15px;
    border: 1px solid rgba(0, 49, 114, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .88) inset,
        0 10px 24px rgba(0, 49, 114, .035);
}

.kw-deadline-strip__label {
    align-self: start;
    min-width: 0;
    margin-top: 1px;
    color: rgba(38, 65, 94, .62);
    font-size: 10.35px;
    line-height: 1.25;
    font-weight: 690;
    letter-spacing: .155em;
    text-transform: uppercase;
}

.kw-deadline-strip__timing {
    display: grid;
    justify-items: end;
    gap: 2px;
    min-width: 0;
    text-align: right;
}

.kw-deadline-strip__date {
    color: var(--text);
    font-size: 13.2px;
    line-height: 1.25;
    font-weight: 610;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.kw-deadline-strip__remaining {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.25;
    font-weight: 430;
    letter-spacing: -.005em;
    white-space: nowrap;
}

.kw-role-facts,
.kw-player-specs__list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px 18px;
}

.kw-role-fact,
.kw-player-spec {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.kw-role-fact dt,
.kw-player-spec dt {
    margin: 0 0 4px;
    color: #003172;
    font-size: 12.2px;
    line-height: 1.35;
    font-weight: 650;
    letter-spacing: -.012em;
    text-transform: none;
}

.kw-role-fact dd,
.kw-player-spec dd {
    min-width: 0;
    margin: 0;
    color: var(--text-2);
    font-size: 13.25px;
    line-height: 1.5;
    font-weight: 535;
    letter-spacing: -.006em;
    overflow-wrap: anywhere;
}

.kw-role-fact--salary,
.kw-player-spec--positions {
    grid-column: 1 / -1;
}

.kw-role-fact .kw-info-link,
.kw-player-spec .kw-info-link {
    color: inherit;
    text-decoration: none;
    border-radius: 5px;
    transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.kw-role-fact .kw-info-link:hover,
.kw-player-spec .kw-info-link:hover,
.kw-role-fact .kw-info-link:focus-visible,
.kw-player-spec .kw-info-link:focus-visible {
    color: #003172;
    text-decoration: none;
    background: rgba(0, 49, 114, .055);
    box-shadow: 0 0 0 3px rgba(0, 49, 114, .035);
    outline: none;
}

.kw-player-specs {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
}

.kw-player-position-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
}

.kw-player-position-list span {
    display: inline-flex;
    align-items: center;
    color: var(--text-2);
    font: inherit;
    font-weight: 610;
    line-height: inherit;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.kw-player-position-list span + span::before {
    content: "·";
    display: inline-block;
    margin: 0 7px;
    color: var(--muted-2);
    font-weight: 820;
}

.kw-job-single-application {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
}

html[data-theme="dark"] .kw-player-specs,
html[data-theme="dark"] .kw-job-single-application {
    border-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .kw-deadline-strip {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .045);
    box-shadow: none;
}



html[data-theme="dark"] .kw-role-summary__head .kw-sidebar-title,
html[data-theme="dark"] .kw-player-specs__head h3,
html[data-theme="dark"] .kw-deadline-strip__label {
    color: rgba(226, 232, 240, .60);
}

html[data-theme="dark"] .kw-role-summary__head::after,
html[data-theme="dark"] .kw-player-specs__head::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .045), transparent);
}

html[data-theme="dark"] .kw-deadline-strip__date {
    color: rgba(255, 255, 255, .95);
}

html[data-theme="dark"] .kw-deadline-strip__remaining {
    color: rgba(255, 255, 255, .58);
}

html[data-theme="dark"] .kw-role-fact dt,
html[data-theme="dark"] .kw-player-spec dt {
    color: #b9d3ff;
}


html[data-theme="dark"] .kw-role-fact .kw-info-link:hover,
html[data-theme="dark"] .kw-player-spec .kw-info-link:hover,
html[data-theme="dark"] .kw-role-fact .kw-info-link:focus-visible,
html[data-theme="dark"] .kw-player-spec .kw-info-link:focus-visible {
    color: #e8f1ff;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .035);
}

@media (max-width: 920px) {
    .kw-job-single-sidecol {
        position: static;
        top: auto;
        gap: 12px;
    }

    .kw-job-single-sidebar {
        padding: 21px 20px 19px;
    }

    .kw-role-facts,
    .kw-player-specs__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 22px;
    }
}

@media (max-width: 640px) {
    .kw-job-single-sidebar {
        padding: 20px 18px 18px;
    }

    .kw-role-summary__head,
    .kw-player-specs__head {
        margin-bottom: 15px;
    }
    .kw-deadline-strip {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 5px;
        padding: 12px 13px;
        border-radius: 13px;
    }

    .kw-deadline-strip__label {
        margin-top: 0;
    }

    .kw-deadline-strip__timing {
        justify-items: start;
        text-align: left;
    }

    .kw-deadline-strip__date {
        font-size: 13px;
    }

    .kw-deadline-strip__remaining {
        font-size: 10.8px;
    }


    .kw-role-facts,
    .kw-player-specs__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kw-player-specs {
        margin-top: 22px;
        padding-top: 21px;
    }

    .kw-job-single-application {
        margin-top: 22px;
        padding-top: 20px;
    }
}


/* =====================================================
   JOB SINGLE — ROLE CONTENT
   Shared title language and clean aligned editorial content.
===================================================== */
.kw-job-public-card-head {
    margin: 0 0 18px;
    padding: 0;
}

.kw-job-public-card-title,
.kw-job-side-group-title {
    margin: 0;
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.34;
    font-weight: 690;
    letter-spacing: -.012em;
}

.kw-job-public-card-body {
    padding: 0;
}

.kw-job-public-card--description .kw-job-single-content {
    padding: 0;
}

.kw-job-content-section {
    margin: 0;
    padding: 0;
    border: 0;
}

.kw-job-content-section + .kw-job-content-section {
    margin-top: 24px;
}

.kw-job-content-section h2 {
    margin: 0 0 9px;
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.34;
    font-weight: 690;
    letter-spacing: -.012em;
}

.kw-job-content-section .kw-rich-content {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    white-space: normal;
}

.kw-job-content-section .kw-rich-content p {
    margin: 0 0 13px;
}

.kw-job-content-section .kw-rich-content p:last-child,
.kw-job-content-section .kw-rich-content ul:last-child,
.kw-job-content-section .kw-rich-content ol:last-child {
    margin-bottom: 0;
}

.kw-job-content-section .kw-rich-content ul,
.kw-job-content-section .kw-rich-content ol {
    margin: 0 0 13px;
    padding-left: 19px;
}

.kw-job-content-section .kw-rich-content li {
    margin: 0 0 6px;
    padding-left: 1px;
}

.kw-job-content-section .kw-rich-content strong,
.kw-job-content-section .kw-rich-content b {
    color: var(--text-2);
    font-weight: 720;
}

.kw-job-content-section .kw-rich-content em,
.kw-job-content-section .kw-rich-content i {
    font-style: italic;
}

.kw-job-content-section .kw-rich-content a {
    color: #003172;
    font-weight: 650;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 49, 114, .22);
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.kw-job-content-section .kw-rich-content a:hover,
.kw-job-content-section .kw-rich-content a:focus-visible {
    color: #002452;
    border-bottom-color: rgba(0, 49, 114, .48);
    background: rgba(0, 49, 114, .045);
    outline: none;
}

html[data-theme="dark"] .kw-job-public-card-title,
html[data-theme="dark"] .kw-job-side-group-title,
html[data-theme="dark"] .kw-job-content-section h2 {
    color: rgba(255, 255, 255, .90);
}

html[data-theme="dark"] .kw-job-content-section .kw-rich-content a {
    color: rgba(255, 255, 255, .92);
    border-bottom-color: rgba(255, 255, 255, .22);
}

html[data-theme="dark"] .kw-job-content-section .kw-rich-content a:hover,
html[data-theme="dark"] .kw-job-content-section .kw-rich-content a:focus-visible {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, .46);
    background: rgba(255, 255, 255, .07);
}

@media (max-width: 640px) {
    .kw-job-public-card-head {
        margin-bottom: 16px;
    }

    .kw-job-content-section + .kw-job-content-section {
        margin-top: 22px;
    }
}


/* =====================================================
   JOB SINGLE — APPLICATION NOTE / COVER LETTER
   Optional note submitted with internal Kickwise applications.
===================================================== */
.kw-application-form {
    display: grid;
    gap: 14px;
}

.kw-application-note-field {
    display: grid;
    gap: 7px;
    padding: 13px 13px 12px;
    border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
    border-radius: 14px;
    background: color-mix(in srgb, var(--surface-2) 84%, transparent);
}

.kw-application-note-field__label {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    color: #003172;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -.01em;
}

.kw-application-note-field__label em {
    color: var(--muted-2);
    font-size: 11px;
    font-style: normal;
    font-weight: 520;
}

.kw-application-note-field__hint {
    margin: 0;
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 470;
    line-height: 1.55;
}

.kw-application-note-field__textarea {
    width: 100%;
    min-height: 92px;
    padding: 11px 12px;
    resize: vertical;
    border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    color: var(--text);
    font: inherit;
    font-size: 12.8px;
    font-weight: 470;
    line-height: 1.62;
    outline: none;
    box-shadow:
        0 8px 20px rgba(0,49,114,.035),
        inset 0 1px 0 rgba(255,255,255,.82);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.kw-application-note-field__textarea::placeholder {
    color: var(--muted-2);
}

.kw-application-note-field__textarea:focus {
    border-color: rgba(0, 49, 114, .24);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(0, 49, 114, .075);
}

.kw-application-note-field__textarea.is-invalid {
    border-color: rgba(180, 35, 24, .38);
    box-shadow: 0 0 0 3px rgba(180, 35, 24, .08);
}

.kw-application-note-field__error {
    margin: 0;
    color: #b42318;
    font-size: 11.5px;
    font-weight: 590;
    line-height: 1.45;
}

html[data-theme="dark"] .kw-application-note-field {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

html[data-theme="dark"] .kw-application-note-field__label {
    color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .kw-application-note-field__textarea {
    border-color: rgba(255, 255, 255, .11);
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .94);
}

html[data-theme="dark"] .kw-application-note-field__textarea:focus {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .07);
}

html[data-theme="dark"] .kw-application-note-field__error {
    color: #fda29b;
}

@media (max-width: 760px) {
    .kw-application-note-field {
        padding: 12px;
    }

    .kw-application-note-field__textarea {
        min-height: 98px;
        font-size: 12.6px;
    }
}


/* =====================================================
   JOB SINGLE — APPLICATION NOTE MODAL
   Clean popup shown after Apply is clicked.
===================================================== */
.kw-application-modal-lock {
    overflow: hidden;
}

.kw-application-modal-root {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}

.kw-application-modal-root.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.kw-application-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 16, .48);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.kw-application-modal {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
    border-radius: 22px;
    background: color-mix(in srgb, var(--surface) 98%, transparent);
    box-shadow: 0 26px 74px rgba(0, 0, 0, .24);
    overflow: hidden;
    transform: translateY(10px) scale(.985);
    transition: transform .2s ease;
}

.kw-application-modal-root.is-open .kw-application-modal {
    transform: translateY(0) scale(1);
}

.kw-application-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 22px 16px;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
}

.kw-application-modal__head h2 {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.22;
    font-weight: 680;
    letter-spacing: -.03em;
}

.kw-application-modal__head p {
    margin: 7px 0 0;
    max-width: 420px;
    color: var(--muted);
    font-size: 12.8px;
    line-height: 1.58;
    font-weight: 470;
}

.kw-application-modal__close {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
    border-radius: 11px;
    background: color-mix(in srgb, var(--surface-2) 88%, transparent);
    color: var(--muted);
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.kw-application-modal__close svg {
    width: 14px;
    height: 14px;
    display: block;
}

.kw-application-modal__close:hover,
.kw-application-modal__close:focus-visible {
    border-color: rgba(0, 49, 114, .20);
    background: color-mix(in srgb, var(--surface) 98%, transparent);
    color: #003172;
    outline: none;
}

.kw-application-modal__form {
    display: grid;
    gap: 18px;
    padding: 18px 22px 22px;
}

.kw-application-modal .kw-application-note-field {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.kw-application-modal .kw-application-note-field__label {
    font-size: 12.4px;
}

.kw-application-modal .kw-application-note-field__textarea {
    min-height: 136px;
    border-radius: 14px;
    font-size: 13px;
}

.kw-application-modal__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.kw-application-modal__cancel {
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
    border-radius: 11px;
    background: color-mix(in srgb, var(--surface-2) 88%, transparent);
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.kw-application-modal__cancel:hover,
.kw-application-modal__cancel:focus-visible {
    border-color: rgba(0, 49, 114, .18);
    background: color-mix(in srgb, var(--surface) 98%, transparent);
    color: var(--text);
    outline: none;
}

.kw-application-modal__submit.kw-apply {
    width: auto;
    min-width: 152px;
    margin-top: 0;
}

html[data-theme="dark"] .kw-application-modal-backdrop {
    background: rgba(0, 0, 0, .64);
}

html[data-theme="dark"] .kw-application-modal {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(15, 15, 18, .98);
    box-shadow: 0 28px 78px rgba(0, 0, 0, .48);
}

html[data-theme="dark"] .kw-application-modal__head {
    border-bottom-color: rgba(255, 255, 255, .08);
}

html[data-theme="dark"] .kw-application-modal__close,
html[data-theme="dark"] .kw-application-modal__cancel {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .045);
    color: rgba(255, 255, 255, .68);
}

html[data-theme="dark"] .kw-application-modal__close:hover,
html[data-theme="dark"] .kw-application-modal__close:focus-visible,
html[data-theme="dark"] .kw-application-modal__cancel:hover,
html[data-theme="dark"] .kw-application-modal__cancel:focus-visible {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

@media (max-width: 640px) {
    .kw-application-modal-root {
        padding: 16px;
    }

    .kw-application-modal {
        border-radius: 18px;
    }

    .kw-application-modal__head {
        gap: 12px;
        padding: 18px 18px 14px;
    }

    .kw-application-modal__head h2 {
        font-size: 16px;
    }

    .kw-application-modal__form {
        padding: 16px 18px 18px;
    }

    .kw-application-modal__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .kw-application-modal__cancel,
    .kw-application-modal__submit.kw-apply {
        width: 100%;
    }
}


/* =====================================================
   KICKWISE EARLY ACCESS NOTICE BAR
   Temporary, dismissible product-status notice above public header.
===================================================== */

.kw-early-access-bar,
.kw-early-access-bar * {
    box-sizing: border-box;
    font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kw-early-access-bar {
    position: relative;
    z-index: 99991;
    width: 100%;
    border-bottom: 1px solid rgba(0, 49, 114, .08);
    background: linear-gradient(90deg, rgba(239, 248, 243, .96), rgba(244, 250, 255, .96));
    color: rgba(0, 49, 114, .76);
}

.kw-early-access-bar.is-hidden {
    display: none;
}

.kw-early-access-bar__inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 36px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.kw-early-access-bar__text {
    min-width: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-size: 12.4px;
    font-weight: 520;
    line-height: 1.35;
    letter-spacing: -.004em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kw-early-access-bar__copy {
    min-width: 0;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kw-early-access-bar__notice {
    display: inline;
}

.kw-early-access-bar__notice--mobile {
    display: none;
}

.kw-early-access-bar__title {
    color: #14865a;
    font-weight: 620;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(20, 134, 90, .42);
}

.kw-early-access-bar__body {
    margin-left: 4px;
}

.kw-early-access-bar__link {
    display: inline-flex;
    align-items: center;
    margin-left: 7px;
    color: #003172;
    font-weight: 680;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease, opacity .18s ease;
}

.kw-early-access-bar__link-label {
    display: inline;
}

.kw-early-access-bar__link-label--mobile {
    display: none;
}


.kw-early-access-bar__link:hover,
.kw-early-access-bar__link:focus-visible {
    color: #0f5fb8;
    outline: none;
}

.kw-early-access-bar__close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(0, 49, 114, .58);
    cursor: pointer;
    transition: color .18s ease, opacity .18s ease;
}

.kw-early-access-bar__close:hover,
.kw-early-access-bar__close:focus-visible {
    color: #003172;
    outline: none;
}

.kw-early-access-bar__close svg {
    display: block;
    width: 17px;
    height: 17px;
    stroke-width: 1.8;
}

html[data-theme="dark"] .kw-early-access-bar {
    border-bottom-color: rgba(255, 255, 255, .075);
    background: linear-gradient(90deg, rgba(18, 18, 20, .96), rgba(11, 16, 14, .96));
    color: rgba(238, 242, 239, .76);
}

html[data-theme="dark"] .kw-early-access-bar__title {
    color: #86efac;
    text-decoration-color: rgba(134, 239, 172, .42);
}

html[data-theme="dark"] .kw-early-access-bar__link {
    color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .kw-early-access-bar__link:hover,
html[data-theme="dark"] .kw-early-access-bar__link:focus-visible {
    color: #ffffff;
}

html[data-theme="dark"] .kw-early-access-bar__close {
    color: rgba(255, 255, 255, .58);
}

html[data-theme="dark"] .kw-early-access-bar__close:hover,
html[data-theme="dark"] .kw-early-access-bar__close:focus-visible {
    color: #ffffff;
}

@media (max-width: 1180px) {
    .kw-early-access-bar__inner {
        width: calc(100% - 18px);
        min-height: 34px;
        gap: 10px;
    }

    .kw-early-access-bar__text {
        gap: 7px;
        font-size: 11.8px;
    }
}

@media (max-width: 640px) {
    .kw-early-access-bar__inner {
        min-height: 32px;
    }

    .kw-early-access-bar__notice--desktop {
        display: none;
    }

    .kw-early-access-bar__notice--mobile {
        display: inline;
    }

    .kw-early-access-bar__link {
        margin-left: 6px;
        font-weight: 680;
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-thickness: 1px;
    }

    .kw-early-access-bar__link-label--desktop {
        display: none;
    }

    .kw-early-access-bar__link-label--mobile {
        display: inline;
    }

    .kw-early-access-bar__close {
        width: 26px;
        height: 26px;
    }

    .kw-early-access-bar__close svg {
        width: 16px;
        height: 16px;
    }
}

/* =====================================================
   KICKWISE PUBLIC HEADER SHELL
   Header, account menu, notifications/messages shell,
   drawer, overlay and shared dropdown geometry.
===================================================== */

.kw-public-header,
    .kw-public-header * {
        box-sizing: border-box;
        font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .kw-public-header {
        position: sticky;
        top: 0;
        z-index: 99990;
        width: 100%;
        border-bottom: 1px solid rgba(15, 23, 42, .075);
        background: rgba(255, 255, 255, .88);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    html[data-theme="dark"] .kw-public-header {
        border-bottom-color: rgba(255, 255, 255, .075);
        background: rgba(5, 5, 7, .92);
    }

    .kw-header-overlay {
        position: fixed;
        inset: 0;
        z-index: 100000;
        background: rgba(2, 6, 23, .38);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .18s ease, visibility .18s ease;
    }

    body.kw-header-menu-open .kw-header-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .kw-public-header-inner {
        width: min(1180px, calc(100% - 32px));
        min-height: 64px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 16px;
        min-width: 0;
    }

    .kw-public-mobile-toggle {
        display: none;
        width: 34px;
        height: 34px;
        border: 0;
        background: transparent;
        color: #17243a;
        align-items: center;
        justify-content: center;
        padding: 0;
        cursor: pointer;
    }

    html[data-theme="dark"] .kw-public-mobile-toggle {
        color: #ffffff;
    }

    .kw-public-mobile-toggle-bars {
        width: 18px;
        display: grid;
        gap: 4px;
    }

    .kw-public-mobile-toggle-bars span {
        display: block;
        height: 1.6px;
        border-radius: 999px;
        background: currentColor;
        transition: transform .18s ease, opacity .18s ease;
    }

    .kw-public-header.is-menu-open .kw-public-mobile-toggle-bars span:nth-child(1) {
        transform: translateY(5.6px) rotate(45deg);
    }

    .kw-public-header.is-menu-open .kw-public-mobile-toggle-bars span:nth-child(2) {
        opacity: 0;
    }

    .kw-public-header.is-menu-open .kw-public-mobile-toggle-bars span:nth-child(3) {
        transform: translateY(-5.6px) rotate(-45deg);
    }

    .kw-public-brand {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #003172;
        text-decoration: none;
        min-width: 0;
    }

    html[data-theme="dark"] .kw-public-brand {
        color: #ffffff;
    }

    .kw-public-brand-logo,
    .kw-public-brand-logo img {
        width: 25px;
        height: 25px;
        display: block;
        flex: 0 0 24px;
        object-fit: contain;
    }

    .kw-public-brand-text {
        font-size: 13px;
        font-weight: 760;
        letter-spacing: -.01em;
        line-height: 1;
        color: currentColor;
    }

    .kw-public-nav {
        justify-self: start;
        display: inline-flex;
        align-items: center;
        gap: 20px;
        min-width: 0;
        max-width: 100%;
    }

    .kw-public-nav-link {
        position: relative;
        display: inline-flex;
        align-items: center;
        min-height: 64px;
        color: rgba(52, 64, 84, .82);
        text-decoration: none;
        font-size: 12.5px;
        font-weight: 520;
        line-height: 1;
        white-space: nowrap;
        transition: color .18s ease, opacity .18s ease, font-weight .18s ease;
    }

    .kw-public-nav-link:hover {
        color: #0f172a;
    }

    .kw-public-nav-link.is-active {
        color: #003172;
        font-weight: 680;
        opacity: 1;
    }

    .kw-public-nav-link.is-active::after {
        content: "";
        position: absolute;
        left: 50%;
        right: auto;
        bottom: 0;
        width: 68%;
        height: 2px;
        border-radius: 999px;
        background: #e78200;
        box-shadow: 0 -1px 7px rgba(231, 130, 0, .18);
        transform: translateX(-50%);
    }

    .kw-public-nav-link.is-disabled {
        color: #98a2b3;
        pointer-events: none;
    }

    html[data-theme="dark"] .kw-public-nav-link {
        color: rgba(214, 222, 234, .78);
    }

    html[data-theme="dark"] .kw-public-nav-link:hover {
        color: #ffffff;
    }

    html[data-theme="dark"] .kw-public-nav-link.is-active {
        color: #ffffff;
        font-weight: 680;
    }

    .kw-public-actions {
        justify-self: end;
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        gap: 13px;
        min-width: 0;
        height: 64px;
    }

    .kw-desktop-controls,
    .kw-header-utility-group {
        display: inline-flex;
        align-items: center;
    }

    .kw-desktop-controls {
        gap: 4px;
    }

    .kw-header-utility-group--signals {
        gap: 4px;
    }

    .kw-header-utility-group--account {
        margin-left: 1px;
    }

    .kw-header-theme-toggle {
        width: 50px;
        min-width: 50px;
        height: 28px;
        min-height: 28px;
        padding: 2px;
        border: 1px solid rgba(15, 23, 42, .085);
        border-radius: 9px;
        background: rgba(248, 250, 252, .76);
        display: grid;
        grid-template-columns: 24px 24px;
        align-items: center;
        justify-content: center;
        gap: 0;
        color: #98a2b3;
        line-height: 0;
        cursor: pointer;
        box-shadow: none;
        transition: border-color .16s ease, background .16s ease;
    }

    html[data-theme="dark"] .kw-header-theme-toggle {
        border-color: rgba(255, 255, 255, .10);
        background: rgba(255, 255, 255, .045);
    }

    .kw-header-theme-option {
        position: relative;
        width: 24px;
        height: 24px;
        border-radius: 8px;
        display: grid;
        place-items: center;
        color: #98a2b3;
        line-height: 0;
        overflow: hidden;
    }

    .kw-header-theme-icon {
        width: 14px;
        height: 14px;
        display: block;
        color: currentColor;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.55;
        stroke-linecap: round;
        stroke-linejoin: round;
        vector-effect: non-scaling-stroke;
        transform: none;
        transform-origin: center;
        overflow: visible;
    }

    .kw-header-theme-icon path,
    .kw-header-theme-icon circle {
        fill: none;
        stroke: currentColor;
        stroke-width: inherit;
        stroke-linecap: round;
        stroke-linejoin: round;
        vector-effect: non-scaling-stroke;
    }

    html[data-theme="light"] .kw-header-theme-option-light,
    html[data-theme="dark"] .kw-header-theme-option-dark {
        background: #ffffff;
        color: #003172;
        box-shadow: 0 1px 2px rgba(15, 23, 42, .08);
    }

    html[data-theme="dark"] .kw-header-theme-option-dark {
        background: rgba(255, 255, 255, .12);
        color: #ffffff;
        box-shadow: none;
    }

    .kw-public-auth-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        color: #475467;
        text-decoration: none;
        font-size: 12.5px;
        font-weight: 520;
    }

    html[data-theme="dark"] .kw-public-auth-link {
        color: #d6deea;
    }

    .kw-public-auth-link:hover {
        color: #003172;
    }

    html[data-theme="dark"] .kw-public-auth-link:hover {
        color: #ffffff;
    }



    .kw-public-mobile-toggle-icon,
    .kw-public-auth-icon {
        width: 18px;
        height: 18px;
        display: block;
        flex: 0 0 18px;
        stroke-width: 1.8;
    }

    .kw-public-auth-link {
        gap: 5px;
    }

    .kw-user-menu {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .kw-user-menu-button {
        min-height: 30px;
        border: 0;
        background: transparent;
        color: #475467;
        padding: 0;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        cursor: pointer;
    }

    html[data-theme="dark"] .kw-user-menu-button {
        color: #d6deea;
    }

    .kw-user-avatar {
        width: 26px;
        height: 26px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #003172;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        overflow: hidden;
        flex: 0 0 26px;
    }

    .kw-user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .kw-user-name {
        max-width: 118px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12.5px;
        font-weight: 520;
    }

    .kw-user-caret {
        width: 13px;
        height: 13px;
        opacity: .72;
    }

    .kw-user-dropdown,
    .kw-head-drop-panel,
    .kw-language-menu {
        z-index: 100010 !important;
    }

    .kw-user-dropdown {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 230px;
        padding: 8px;
        border: 1px solid rgba(15, 23, 42, .09);
        border-radius: 15px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        pointer-events: none;
        transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    }

    html[data-theme="dark"] .kw-user-dropdown {
        border-color: rgba(255, 255, 255, .10);
        background: rgba(12, 12, 14, .98);
        box-shadow: 0 18px 42px rgba(0, 0, 0, .44);
    }

    .kw-user-menu.is-open .kw-user-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .kw-user-dropdown-head {
        padding: 8px 9px 10px;
        border-bottom: 1px solid rgba(15, 23, 42, .07);
        margin-bottom: 6px;
    }

    html[data-theme="dark"] .kw-user-dropdown-head {
        border-bottom-color: rgba(255, 255, 255, .075);
    }

    .kw-user-dropdown-name {
        margin: 0;
        color: #0f172a;
        font-size: 13px;
        font-weight: 650;
        line-height: 1.3;
    }

    html[data-theme="dark"] .kw-user-dropdown-name {
        color: #ffffff;
    }

    .kw-user-dropdown-role {
        margin: 3px 0 0;
        color: #667085;
        font-size: 11.5px;
        text-transform: capitalize;
    }

    html[data-theme="dark"] .kw-user-dropdown-role {
        color: #9aa8ba;
    }

    .kw-user-dropdown-link,
    .kw-user-dropdown-button {
        width: 100%;
        min-height: 36px;
        border: 0;
        border-radius: 10px;
        background: transparent;
        color: #344054;
        display: flex;
        align-items: center;
        padding: 0 9px;
        font: inherit;
        font-size: 12.5px;
        font-weight: 520;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
    }

    html[data-theme="dark"] .kw-user-dropdown-link,
    html[data-theme="dark"] .kw-user-dropdown-button {
        color: #d6deea;
    }

    .kw-user-dropdown-link:hover,
    .kw-user-dropdown-button:hover {
        background: rgba(0, 49, 114, .055);
        color: #003172;
    }

    html[data-theme="dark"] .kw-user-dropdown-link:hover,
    html[data-theme="dark"] .kw-user-dropdown-button:hover {
        background: rgba(255, 255, 255, .065);
        color: #ffffff;
    }

    .kw-user-dropdown-link-with-count {
        justify-content: space-between;
        gap: 10px;
    }

    .kw-user-dropdown-count {
        min-width: 20px;
        height: 20px;
        border-radius: 999px;
        background: #003172;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 6px;
        font-size: 10.5px;
        font-weight: 760;
        line-height: 1;
    }

    .kw-user-dropdown-sep {
        height: 1px;
        background: rgba(15, 23, 42, .07);
        margin: 6px 0;
    }

    html[data-theme="dark"] .kw-user-dropdown-sep {
        background: rgba(255, 255, 255, .08);
    }

    .kw-head-drop,
    .kw-head-drop * {
        font-family: inherit !important;
    }

    .kw-head-drop {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .kw-head-drop-trigger {
        position: relative;
        width: 26px;
        height: 26px;
        border: 0;
        border-radius: 8px;
        background: transparent;
        color: #667085;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-decoration: none;
        box-shadow: none;
        transition: background .16s ease, color .16s ease;
    }

    .kw-head-drop-trigger:hover,
    .kw-head-drop.is-open .kw-head-drop-trigger {
        background: rgba(15, 23, 42, .038);
        color: #003172;
    }

    html[data-theme="dark"] .kw-head-drop-trigger {
        color: #d6deea;
    }

    html[data-theme="dark"] .kw-head-drop-trigger:hover,
    html[data-theme="dark"] .kw-head-drop.is-open .kw-head-drop-trigger {
        background: rgba(255, 255, 255, .055);
        color: #ffffff;
    }

    .kw-head-drop-trigger svg {
        width: 17.5px !important;
        height: 17.5px !important;
        display: block;
        flex: 0 0 17.5px;
        stroke-width: 1.48;
    }

    .kw-head-drop-count {
        position: absolute;
        top: -3px;
        right: -3px;
        min-width: 16px;
        height: 16px;
        border-radius: 999px;
        background: #e78200;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        box-shadow: 0 6px 12px rgba(231, 130, 0, .20);
    }

    .kw-head-drop-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 330px;
        max-width: calc(100vw - 24px);
        border: 1px solid rgba(15, 23, 42, .09);
        border-radius: 15px;
        background: rgba(255, 255, 255, .985);
        box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        pointer-events: none;
        transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
        overflow: hidden;
    }

    .kw-head-drop.is-open .kw-head-drop-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    html[data-theme="dark"] .kw-head-drop-panel {
        border-color: rgba(255, 255, 255, .10);
        background: rgba(12, 12, 14, .985);
        box-shadow: 0 18px 42px rgba(0, 0, 0, .44);
    }


    .kw-mobile-drawer {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 100001 !important;
        width: min(336px, 88vw);
        background: rgba(255, 255, 255, .985);
        border-right: 1px solid rgba(15, 23, 42, .075);
        box-shadow: 18px 0 46px rgba(15, 23, 42, .16);
        transform: translateX(-104%);
        transition: transform .22s ease;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    html[data-theme="dark"] .kw-mobile-drawer {
        background: rgba(5, 5, 7, .985);
        border-right-color: rgba(255, 255, 255, .08);
        box-shadow: 18px 0 46px rgba(0, 0, 0, .48);
    }

    body.kw-header-menu-open .kw-mobile-drawer {
        transform: translateX(0);
    }

    .kw-mobile-drawer-head {
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        border-bottom: 1px solid rgba(15, 23, 42, .075);
    }

    html[data-theme="dark"] .kw-mobile-drawer-head {
        border-bottom-color: rgba(255, 255, 255, .08);
    }

    .kw-mobile-drawer-close {
        width: 34px;
        height: 34px;
        border: 0;
        background: transparent;
        color: #344054;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    html[data-theme="dark"] .kw-mobile-drawer-close {
        color: #ffffff;
    }

    .kw-mobile-drawer-close svg {
        width: 20px;
        height: 20px;
    }

    .kw-mobile-drawer-body {
        padding: 14px 18px 20px;
        display: grid;
        gap: 0;
    }

    .kw-mobile-drawer-link {
        min-height: 46px;
        display: flex;
        align-items: center;
        color: #344054;
        text-decoration: none;
        font-size: 13.5px;
        font-weight: 520;
        border-bottom: 1px solid rgba(15, 23, 42, .055);
    }

    .kw-mobile-drawer-link:hover,
    .kw-mobile-drawer-link.is-active {
        color: #003172;
    }

    html[data-theme="dark"] .kw-mobile-drawer-link {
        color: #d6deea;
        border-bottom-color: rgba(255, 255, 255, .06);
    }

    html[data-theme="dark"] .kw-mobile-drawer-link:hover,
    html[data-theme="dark"] .kw-mobile-drawer-link.is-active {
        color: #ffffff;
    }

    .kw-mobile-drawer-section {
        margin-top: 18px;
        padding-top: 12px;
        border-top: 1px solid rgba(15, 23, 42, .075);
    }

    html[data-theme="dark"] .kw-mobile-drawer-section {
        border-top-color: rgba(255, 255, 255, .08);
    }

    .kw-mobile-drawer-title {
        margin: 0 0 8px;
        color: #667085;
        font-size: 10.5px;
        font-weight: 680;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    html[data-theme="dark"] .kw-mobile-drawer-title {
        color: #9aa8ba;
    }

    body.kw-header-menu-open {
        overflow: hidden;
    }

    @media (max-width: 1180px) {
        .kw-public-header {
            position: sticky;
            z-index: 99990;
        }

        .kw-public-header-inner {
            width: calc(100% - 18px);
            min-height: 58px;
            grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
            gap: 8px;
        }

        .kw-public-mobile-toggle {
            display: inline-flex;
            order: 3;
            justify-self: end;
        }

        .kw-public-brand {
            order: 1;
            justify-self: start;
            gap: 6px;
        }

        .kw-public-brand-logo,
        .kw-public-brand-logo img {
            width: 27px;
            height: 27px;
            flex-basis: 27px;
        }

        .kw-public-brand-text {
            font-size: 11.5px;
        }

        .kw-public-nav {
            display: none;
        }

        .kw-public-actions {
            order: 2;
            height: 58px;
            gap: 8px;
            justify-self: end;
        }

        .kw-desktop-controls {
            display: inline-flex;
            gap: 4px;
        }

        .kw-header-utility-group--signals {
            gap: 4px;
        }

        .kw-header-utility-group--account {
            margin-left: 2px;
        }

        .kw-desktop-controls .kw-header-theme-toggle {
            display: none;
        }

        .kw-user-menu-button {
            width: 30px;
            height: 30px;
            min-height: 30px;
            justify-content: center;
        }

        .kw-user-avatar {
            width: 26px;
            height: 26px;
            flex-basis: 26px;
        }

        .kw-user-name,
        .kw-user-caret {
            display: none;
        }

        .kw-head-drop-trigger {
            width: 26px;
            height: 26px;
        }

        .kw-head-drop-trigger svg {
            width: 17.5px !important;
            height: 17.5px !important;
        }

        .kw-user-dropdown,
        .kw-language-menu,
        .kw-head-drop-panel {
            position: fixed !important;
            top: 62px !important;
            right: 9px !important;
            width: min(292px, calc(100vw - 18px)) !important;
            max-width: none !important;
            z-index: 100020 !important;
        }

    }

    @media (max-width: 420px) {
        .kw-public-header-inner {
            width: calc(100% - 14px);
            gap: 6px;
        }

        .kw-public-brand-text {
            max-width: 68px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .kw-public-actions {
            gap: 5px;
        }

        .kw-head-drop-trigger {
            width: 26px;
            min-width: 26px;
        }

        .kw-user-menu-button {
            width: 28px;
            min-width: 28px;
        }
    }

/* =====================================================
   KICKWISE HEADER MESSAGE / NOTIFICATION DROPDOWNS
===================================================== */

.kw-head-drop-open-icon {
                display: none !important;
            }

            .kw-head-drop.is-open .kw-head-drop-closed-icon {
                display: none !important;
            }

            .kw-head-drop.is-open .kw-head-drop-open-icon,
            .kw-head-drop-static-icon,
            .kw-head-drop.is-open .kw-head-drop-static-icon {
                display: block !important;
            }
.kw-head-drop-head,
            .kw-head-drop-foot {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                border-color: rgba(15,23,42,.07);
            }

            .kw-head-drop-head {
                padding: 12px 13px;
                border-bottom: 1px solid rgba(15,23,42,.07);
            }

            .kw-head-drop-foot {
                padding: 9px 10px;
                border-top: 1px solid rgba(15,23,42,.07);
            }

            .kw-head-drop-title {
                margin: 0;
                color: #0f172a;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: -.01em;
                line-height: 1.25;
            }

            .kw-head-drop-sub {
                color: #667085;
                font-size: 11.5px;
                font-weight: 300;
            }

            .kw-head-drop-list {
                display: grid;
                max-height: 354px;
                overflow-y: auto;
                overflow-x: hidden;
            }

            .kw-head-drop-item {
                display: grid;
                grid-template-columns: auto minmax(0,1fr);
                gap: 10px;
                min-width: 0;
                padding: 11px 13px;
                border-bottom: 1px solid rgba(15,23,42,.055);
                text-decoration: none;
                color: inherit;
            }

            .kw-head-drop-item:hover {
                background: rgba(0,49,114,.045);
            }

            .kw-head-drop-item:last-child {
                border-bottom: 0;
            }

            .kw-head-drop-item.is-unread {
                background: linear-gradient(90deg,rgba(0,49,114,.045),rgba(255,255,255,0));
            }

            .kw-head-drop-avatar,
            .kw-head-drop-glyph {
                width: 26px;
                height: 26px;
                border-radius: 11px;
                background: #eef2f7;
                color: #003172;
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                font-size: 10.5px;
                font-weight: 600;
            }

            .kw-head-drop-avatar img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .kw-head-drop-glyph svg {
                width: 18px;
                height: 18px;
                display: block;
            }

            .kw-head-drop-glyph-accepted {
                background: rgba(22,128,60,.10);
                color: #16803c;
            }

            .kw-head-drop-glyph-rejected {
                background: rgba(220,38,38,.10);
                color: #dc2626;
            }

            .kw-head-drop-glyph-info {
                background: rgba(0,49,114,.08);
                color: #003172;
            }

            .kw-head-drop-main {
                display: block;
                width: 100%;
                max-width: 100%;
                min-width: 0;
                overflow: hidden;
            }

            .kw-head-drop-line {
                display: flex;
                align-items: center;
                gap: 8px;
                min-width: 0;
            }

            .kw-head-drop-name {
                display: block;
                width: 100%;
                max-width: 100%;
                min-width: 0;
                margin: 0;
                color: #0f172a;
                font-size: 12.5px;
                font-weight: 600;
                line-height: 1.25;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .kw-head-drop-context,
            .kw-head-drop-body {
                margin: 4px 0 0;
                color: #667085;
                font-size: 11.5px;
                font-weight: 300;
                line-height: 1.42;
            }

            .kw-head-drop-context {
                display: block;
                width: 100%;
                max-width: 100%;
                min-width: 0;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .kw-head-drop-body {
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .kw-head-drop-time {
                display: block;
                margin-top: 5px;
                color: #98a2b3;
                font-size: 10.8px;
                font-weight: 300;
                font-style: italic;
            }

            .kw-head-drop-empty {
                padding: 16px 14px;
                color: #667085;
                font-size: 12px;
                font-weight: 300;
                line-height: 1.5;
            }

            .kw-head-drop-link,
            .kw-head-drop-mark {
                border: 0;
                background: transparent;
                color: #003172;
                text-decoration: none;
                font: inherit;
                font-size: 12px;
                font-weight: 400;
                cursor: pointer;
                padding: 5px 6px;
                border-radius: 8px;
            }

            .kw-head-drop-link:hover,
            .kw-head-drop-mark:hover {
                background: rgba(0,49,114,.055);
            }

            .kw-head-drop-mark-form {
                margin: 0;
            }

            .kw-head-drop-unread {
                min-width: 17px;
                height: 17px;
                border-radius: 999px;
                background: #e78200;
                color: #fff;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                font-weight: 700;
            }

            .kw-head-drop-dot {
                width: 7px;
                height: 7px;
                border-radius: 999px;
                background: #e78200;
                flex: 0 0 auto;
            }
html[data-theme="dark"] .kw-head-drop-head,
            html[data-theme="dark"] .kw-head-drop-foot {
                border-color: rgba(255,255,255,.08);
            }

            html[data-theme="dark"] .kw-head-drop-title,
            html[data-theme="dark"] .kw-head-drop-name {
                color: #fff;
            }

            html[data-theme="dark"] .kw-head-drop-sub,
            html[data-theme="dark"] .kw-head-drop-context,
            html[data-theme="dark"] .kw-head-drop-body,
            html[data-theme="dark"] .kw-head-drop-empty {
                color: #9aa8ba;
            }

            html[data-theme="dark"] .kw-head-drop-time {
                color: #7f8da3;
            }

            html[data-theme="dark"] .kw-head-drop-item {
                border-bottom-color: rgba(255,255,255,.065);
            }

            html[data-theme="dark"] .kw-head-drop-item:hover {
                background: rgba(255,255,255,.055);
            }

            html[data-theme="dark"] .kw-head-drop-item.is-unread {
                background: linear-gradient(90deg,rgba(47,125,225,.10),rgba(255,255,255,0));
            }

            html[data-theme="dark"] .kw-head-drop-avatar,
            html[data-theme="dark"] .kw-head-drop-glyph {
                background: #151922;
                color: #cfe4ff;
            }

            html[data-theme="dark"] .kw-head-drop-glyph-accepted {
                background: rgba(34,197,94,.12);
                color: #7ee29a;
            }

            html[data-theme="dark"] .kw-head-drop-glyph-rejected {
                background: rgba(248,113,113,.13);
                color: #ff9b9b;
            }

            html[data-theme="dark"] .kw-head-drop-glyph-info {
                background: rgba(147,197,253,.12);
                color: #cfe4ff;
            }

            html[data-theme="dark"] .kw-head-drop-link,
            html[data-theme="dark"] .kw-head-drop-mark {
                color: #cfe4ff;
            }

            @media (max-width: 900px) {

                .kw-head-drop-list {
                    max-height: min(390px, calc(100vh - 150px)) !important;
                }
            }
