/* =====================================================
   KICKWISE — PUBLIC HOME PAGE
   Homepage sections; shared hero styles live in kickwise-public.css
===================================================== */

.kw-home-page,
.kw-home-page * {
    box-sizing: border-box;
}

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

/* Search */
.kw-hero-search {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    width: min(100%, 670px);
    margin: 21px auto 0;
    padding: 7px;
    border: 1px solid rgba(0,49,114,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 42px rgba(0,49,114,.10);
}

.kw-hero-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.kw-hero-search__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    color: rgba(0,49,114,.48);
}

.kw-hero-search__icon svg {
    width: 18px;
    height: 18px;
}

.kw-hero-search input {
    width: 100%;
    min-width: 0;
    height: 44px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0f172a;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.kw-hero-search input::placeholder {
    color: rgba(0,49,114,.42);
}

.kw-hero-search__button,
.kw-home-btn,
.kw-home-link {
    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, transform .2s ease;
}

.kw-hero-search__button {
    min-width: 132px;
    border-color: #003172;
    background: #003172;
    color: #fff;
    box-shadow: 0 14px 32px rgba(0,49,114,.18);
}

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

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

.kw-hero-search__button:hover::after,
.kw-home-btn:hover::after,
.kw-home-link:hover::after {
    left: 132%;
}

.kw-hero-search__button-icon {
    display: none;
    width: 18px;
    height: 18px;
}





/* Trusted logos */
.kw-hero-trusted {
    width: min(100%, 800px);
    margin: 30px auto 0;
    padding: 12px 0 0;
}

.kw-hero-trusted__label {
    margin: 0 auto 14px;
    color: rgba(0,49,114,.56);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12.6px;
    font-weight: 560;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-align: center;
}

.kw-hero-trusted__marquee {
    position: relative;
    isolation: isolate;
    width: min(100%, 800px);
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/*
   Edge treatment:
   The rail stays clean and boxless. Logos run slightly desaturated by default,
   while the edge curtains subtly push the left/right zones toward monochrome.
   On rail hover, the curtains fade so the active logo can read in full color.
*/
.kw-hero-trusted__marquee::before,
.kw-hero-trusted__marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: min(148px, 22%);
    pointer-events: none;
    opacity: .92;
    transition: opacity .22s ease;
    -webkit-backdrop-filter: grayscale(1) saturate(.18);
    backdrop-filter: grayscale(1) saturate(.18);
}

.kw-hero-trusted__marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.14), rgba(255,255,255,0));
    -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.88) 38%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.88) 38%, transparent 100%);
}

.kw-hero-trusted__marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,.14), rgba(255,255,255,0));
    -webkit-mask-image: linear-gradient(270deg, #000 0%, rgba(0,0,0,.88) 38%, transparent 100%);
    mask-image: linear-gradient(270deg, #000 0%, rgba(0,0,0,.88) 38%, transparent 100%);
}

.kw-hero-trusted__marquee:hover::before,
.kw-hero-trusted__marquee:hover::after {
    opacity: .28;
}

.kw-hero-trusted__track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: kwHeroMarquee 30s linear infinite;
}

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

.kw-hero-trusted__item {
    flex: 0 0 auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    height: 42px;
    padding: 0 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(0,49,114,.56);
    text-decoration: none;
    box-shadow: none;
    transform: none;
    transition: color .20s ease;
}

.kw-hero-trusted__item img {
    display: block;
    width: auto;
    max-width: 112px;
    max-height: 31px;
    object-fit: contain;
    opacity: .78;
    filter: grayscale(.72) saturate(.58) contrast(.98);
    transform: none;
    transition:
        opacity .22s ease,
        filter .22s ease;
}

.kw-hero-trusted__fallback {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 24px;
    color: rgba(0,49,114,.64);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .06em;
    line-height: 1;
    transform: none;
    transition: color .20s ease;
}

.kw-hero-trusted__item.is-fallback .kw-hero-trusted__fallback {
    display: inline-flex;
}

.kw-hero-trusted__item:hover,
.kw-hero-trusted__item:focus-visible {
    color: #003172;
    outline: none;
}

.kw-hero-trusted__item:hover img,
.kw-hero-trusted__item:focus-visible img {
    opacity: 1;
    filter: grayscale(0) saturate(1) contrast(1);
    transform: none;
}

.kw-hero-trusted__item:hover .kw-hero-trusted__fallback,
.kw-hero-trusted__item:focus-visible .kw-hero-trusted__fallback {
    color: #003172;
    transform: none;
}

@keyframes kwHeroMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =====================================================
   HOME SECTIONS
===================================================== */


/* Reusable section header system */
.kw-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.kw-section-copy {
    min-width: 0;
}

.kw-section-title {
    max-width: 720px;
    margin: 0;
    color: #003172;
    font-family: var(--kw-display-font, "Ubuntu Local", "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: clamp(22px, 2.45vw, 32px);
    line-height: 1.08;
    letter-spacing: -.044em;
    font-weight: 520;
    text-wrap: balance;
}

.kw-section-title__light {
    color: transparent;
    background: linear-gradient(180deg, #003172 0%, #245f9d 58%, rgba(47, 126, 219, .46) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 500;
}

.kw-section-title strong {
    color: #003172;
    font-weight: 760;
}

.kw-section-title__tail {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    white-space: nowrap;
}

.kw-section-title__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: rgba(31, 97, 173, .76);
    vertical-align: -2px;
}

.kw-section-title__mark svg {
    display: block;
    width: 17px;
    height: 17px;
    stroke-width: 1.55;
    transition:
        transform .22s ease,
        stroke-width .22s ease,
        color .22s ease;
}

.kw-section-head:hover .kw-section-title__mark svg,
.kw-section-title:hover .kw-section-title__mark svg {
    transform: scale(1.06);
    stroke-width: 1.75;
}

.kw-section-description {
    max-width: 660px;
    margin: 12px 0 0;
    color: rgba(0, 49, 114, .62);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.68;
    letter-spacing: -0.012em;
}

.kw-section-cta {
    flex: 0 0 auto;
    text-decoration: none !important;
}


.kw-home-kicker {
    margin: 0 0 10px;
    color: #0284c7;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .105em;
    text-transform: uppercase;
}


.kw-home-section--latest .kw-home-section-head {
    margin-bottom: 24px;
}

.kw-home-section {
    margin-top: 66px;
}

.kw-home-section--compact {
    margin-top: 60px;
}

.kw-home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 28px;
}

.kw-home-section-head h2,
.kw-home-final-cta h2 {
    margin: 0;
    color: var(--text, #0f172a);
    font-family: var(--kw-display-font, "Ubuntu Local", "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 700;
}

.kw-home-link {
    min-height: 36px;
    padding: 0 13px;
    white-space: nowrap;
}


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

.kw-home-job-card,
.kw-home-category-card,
.kw-home-empty {
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 34px rgba(15,23,42,.045);
}

.kw-home-job-card {
    padding: 18px;
}

.kw-home-job-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.kw-home-job-card__head span,
.kw-home-job-card__head em {
    color: rgba(0,49,114,.62);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
    font-style: normal;
}

.kw-home-job-card__head em {
    color: #16a34a;
}

.kw-home-job-card h3 {
    margin: 0;
    color: #003172;
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16.5px;
    line-height: 1.28;
    letter-spacing: -.026em;
    font-weight: 650;
}

.kw-home-job-card h3 a {
    color: inherit;
    text-decoration: none;
}

.kw-home-job-card p {
    margin: 10px 0 0;
    color: rgba(17,24,39,.60);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.55;
}

.kw-home-job-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,49,114,.07);
}





.kw-home-job-carousel {
    position: relative;
    margin-inline: -48px;
    padding-inline: 48px;
}

.kw-home-job-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 8px;
}

.kw-home-job-scroll::-webkit-scrollbar {
    display: none;
}

.kw-home-section--latest .kw-home-job-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 32px) / 3);
    grid-template-columns: none;
    gap: 16px;
}

.kw-home-section--latest .kw-home-job-card {
    scroll-snap-align: start;
}

.kw-home-job-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 49, 114, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    color: rgba(0, 49, 114, .62);
    box-shadow: 0 10px 26px rgba(0, 49, 114, .07);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kw-home-job-arrow:hover {
    border-color: rgba(0,49,114,.16);
    background: rgba(255, 255, 255, .98);
    color: #003172;
    box-shadow: 0 16px 34px rgba(0,49,114,.11);
    transform: translateY(-50%) scale(1.03);
}

.kw-home-job-arrow svg {
    width: 17px;
    height: 17px;
}

.kw-home-job-arrow--prev {
    left: 6px;
}

.kw-home-job-arrow--next {
    right: 6px;
}

.kw-home-job-swipe-peek {
    display: none;
}

/* latest card additions */
.kw-home-job-card__main {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
}

.kw-home-section--latest .kw-home-job-card__main {
    flex: 1 1 auto;
}

.kw-home-job-card__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    overflow: hidden;
    box-shadow: none;
}

.kw-home-job-card__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kw-home-job-card__logo.has-image span {
    display: none;
}

.kw-home-job-card__logo.is-fallback {
    background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(239,246,255,.82));
    box-shadow: inset 0 0 0 1px rgba(0,49,114,.055);
}

.kw-home-job-card__logo.is-fallback span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: rgba(0,49,114,.58);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .045em;
    background: rgba(255,255,255,.64);
}

.kw-home-job-card__content {
    min-width: 0;
}

.kw-home-job-card__badges {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    min-width: 0;
    margin: 0;
}

.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-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-home-job-badge svg,
.kw-home-job-badge span {
    position: relative;
    z-index: 1;
}

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

.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-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-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-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-home-job-badge:hover::before {
    transform: translateX(140%);
}

/* Latest job cards — premium card surface */
.kw-home-section--latest .kw-home-job-grid {
    gap: 16px;
    align-items: stretch;
}

.kw-home-section--latest .kw-home-job-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    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-home-section--latest .kw-home-job-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 72%;
    height: 58%;
    pointer-events: none;
    opacity: .72;
    background:
        linear-gradient(rgba(0, 49, 114, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 49, 114, .026) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: -1px -1px;
    -webkit-mask-image: linear-gradient(135deg, #000 0%, rgba(0,0,0,.72) 32%, rgba(0,0,0,.22) 58%, transparent 82%);
    mask-image: linear-gradient(135deg, #000 0%, rgba(0,0,0,.72) 32%, rgba(0,0,0,.22) 58%, transparent 82%);
}

.kw-home-section--latest .kw-home-job-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,49,114,.13), rgba(193,255,114,.10), transparent);
    opacity: .62;
    pointer-events: none;
}

.kw-home-section--latest .kw-home-job-card > * {
    position: relative;
    z-index: 1;
}

.kw-home-section--latest .kw-home-job-card:hover {
    border-color: rgba(0, 49, 114, .18);
    background:
        radial-gradient(circle at 12% -8%, rgba(2,132,199,.052), transparent 34%),
        linear-gradient(180deg, #ffffff, rgba(247,251,255,.998));
    box-shadow:
        0 0 0 1px rgba(255,255,255,.92) inset,
        0 8px 18px rgba(0, 49, 114, .038);
}

.kw-home-job-card__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
    margin-bottom: 14px;
}

.kw-home-job-card__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.kw-home-job-card__published {
    flex: 0 0 auto;
    margin-left: auto;
    color: rgba(0, 49, 114, .47);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 11.8px;
    font-weight: 560;
    line-height: 1;
    white-space: nowrap;
}

.kw-home-job-card__category {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 18px;
    overflow: hidden;
    color: rgba(0,49,114,.42);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .055em;
    line-height: 1;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kw-home-job-card__title {
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    color: #003172;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.18;
    letter-spacing: -.035em;
    font-weight: 650;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.kw-home-job-card__title a {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kw-home-job-card__title a:hover {
    color: #0b57a4;
}

.kw-home-job-card__employer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    color: #003172;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12.6px;
    line-height: 1.35;
    font-weight: 600;
}

.kw-home-job-card__employer-link {
    color: inherit;
    text-decoration: none !important;
    transition: color .18s ease;
}

.kw-home-job-card__employer-link:hover {
    color: #003172;
}

.kw-home-job-card__location-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 4px;
    color: rgba(0, 49, 114, .66);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 550;
    line-height: 1.35;
}

.kw-home-job-card__location,
.kw-home-job-card__location-row a {
    color: rgba(0, 49, 114, .66);
    font-weight: 550;
    text-decoration: none !important;
    transition: color .18s ease;
}

.kw-home-job-card__location:hover,
.kw-home-job-card__location-row a:hover {
    color: #0b57a4;
}

.kw-home-job-card__location-separator {
    margin-right: 4px;
    color: rgba(0, 49, 114, .66);
    font-weight: 550;
}

.kw-employer-verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
    color: #0284c7;
    line-height: 0;
    vertical-align: middle;
    transform: translateY(-.5px);
    filter: drop-shadow(0 2px 5px rgba(2, 132, 199, .16));
}

.kw-employer-verified-badge svg {
    display: block;
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

html[data-theme="dark"] .kw-employer-verified-badge {
    color: #38bdf8;
    filter: drop-shadow(0 2px 7px rgba(56, 189, 248, .14));
}

.kw-home-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin-top: 11px;
    color: rgba(0,49,114,.47);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.kw-home-job-card__meta span,
.kw-home-job-card__meta a {
    position: relative;
}

.kw-home-job-card__meta a {
    color: inherit;
    text-decoration: none !important;
    transition: color .18s ease;
}

.kw-home-job-card__meta a:hover {
    color: #003172;
}

.kw-home-job-card__meta a + span::before,
.kw-home-job-card__meta span + span::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: rgba(0,49,114,.22);
    transform: translateY(-50%);
}

.kw-home-section--latest .kw-home-job-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(0,49,114,.065);
}

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

.kw-home-category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.kw-home-category-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: block;
    height: 96px;
    min-height: 96px;
    border: 1px solid rgba(0,49,114,.10);
    border-radius: 18px;
    background: rgba(0,49,114,.045);
    color: #ffffff;
    text-decoration: none;
    box-shadow:
        0 1px 0 rgba(255,255,255,.14) inset,
        0 10px 24px rgba(0,49,114,.045);
    transform: none;
    transition:
        border-color .22s ease,
        box-shadow .22s ease;
}

.kw-home-category-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .96;
    filter: saturate(.94) contrast(1.02);
    transform: scale(1);
    transition:
        opacity .24s ease,
        filter .24s ease,
        transform .34s ease;
}

.kw-home-category-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background:
        linear-gradient(180deg, rgba(3, 19, 42, .42) 0%, rgba(3, 19, 42, .14) 38%, rgba(3, 19, 42, .14) 58%, rgba(3, 19, 42, .58) 100%);
    transition: background .24s ease;
}

.kw-home-category-card__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    min-width: 0;
}

.kw-home-category-card__name {
    position: absolute;
    top: 11px;
    right: 12px;
    left: 12px;
    display: block;
    max-width: calc(100% - 24px);
        color: #ffffff;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 720;
    line-height: 1.18;
    letter-spacing: -.018em;
    text-align: left;
    text-wrap: balance;
    text-shadow: 0 1px 10px rgba(0,0,0,.50);
}

.kw-home-category-card__jobs {
    position: absolute;
    left: 12px;
    bottom: 10px;
    display: grid;
    justify-items: start;
    gap: 1px;
    width: fit-content;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    text-align: left;
    text-shadow: 0 1px 12px rgba(0,0,0,.56);
}

.kw-home-category-card__jobs::before {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 3px;
    width: 1px;
    height: 26px;
    border-radius: 999px;
    background: rgba(255,255,255,.42);
    transition: background .22s ease, height .22s ease;
}

.kw-home-category-card__jobs-count {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 760;
    line-height: .96;
    letter-spacing: -.035em;
}

.kw-home-category-card__jobs-label {
    display: block;
    color: rgba(255,255,255,.88);
    font-size: 8.7px;
    font-weight: 720;
    line-height: 1.05;
    letter-spacing: .115em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .22s ease;
}



.kw-home-category-card:hover,
.kw-home-category-card:focus-visible {
    border-color: rgba(0,49,114,.20);
    box-shadow:
        0 1px 0 rgba(255,255,255,.18) inset,
        0 14px 30px rgba(0,49,114,.085);
    text-decoration: none;
    outline: none;
}

.kw-home-category-card:hover .kw-home-category-card__image,
.kw-home-category-card:focus-visible .kw-home-category-card__image {
    opacity: 1;
    filter: saturate(1.06) contrast(1.05);
    transform: scale(1.025);
}

.kw-home-category-card:hover .kw-home-category-card__overlay,
.kw-home-category-card:focus-visible .kw-home-category-card__overlay {
    background:
        linear-gradient(180deg, rgba(3, 19, 42, .36) 0%, rgba(3, 19, 42, .10) 38%, rgba(3, 19, 42, .10) 58%, rgba(3, 19, 42, .54) 100%);
}

.kw-home-category-card:hover .kw-home-category-card__jobs::before,
.kw-home-category-card:focus-visible .kw-home-category-card__jobs::before {
    height: 30px;
    background: rgba(255,255,255,.78);
}

.kw-home-category-card:hover .kw-home-category-card__jobs-label,
.kw-home-category-card:focus-visible .kw-home-category-card__jobs-label {
    color: #ffffff;
}


.kw-home-category-card:focus-visible {
    box-shadow:
        0 0 0 3px rgba(2,132,199,.13),
        0 14px 30px rgba(0,49,114,.085);
}


.kw-home-blog-section {
    padding-top: 4px;
}

.kw-home-empty {
    grid-column: 1 / -1;
    padding: 24px;
    color: rgba(17,24,39,.60);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 13px;
}

@keyframes kwHomeJobSwipePeekCard {
    0%,
    16% {
        transform: translateX(0);
    }

    40%,
    70% {
        transform: translateX(-96px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes kwHomeJobSwipePeekLabel {
    0%,
    24% {
        opacity: 0;
        transform: translateY(-50%) translateX(10px) scale(.96);
    }

    42%,
    72% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(10px) scale(.96);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kw-home-job-carousel.is-swipe-peek .kw-home-job-swipe-peek,
    .kw-home-job-carousel.is-swipe-peek .kw-home-job-grid .kw-home-job-card:first-child {
        animation: none;
    }
}

/* =====================================================
   DARK MODE
===================================================== */

html[data-theme="dark"] .kw-hero-search {
    border-color: rgba(255,255,255,.10);
    background: rgba(255,255,255,.065);
    box-shadow: 0 18px 42px rgba(0,0,0,.26);
}

html[data-theme="dark"] .kw-hero-search__icon,
html[data-theme="dark"] .kw-hero-search input::placeholder {
    color: rgba(226,232,240,.54);
}

html[data-theme="dark"] .kw-hero-search input {
    color: #ffffff;
}

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

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




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

html[data-theme="dark"] .kw-section-title__light {
    color: transparent;
    background: linear-gradient(180deg, #f8fafc 0%, rgba(232, 235, 241, .80) 60%, rgba(232, 235, 241, .42) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

html[data-theme="dark"] .kw-section-title__mark {
    color: rgba(248,250,252,.68);
}

html[data-theme="dark"] .kw-section-title strong {
    color: #ffffff;
}

html[data-theme="dark"] .kw-section-description {
    color: rgba(226,232,240,.68);
}

html[data-theme="dark"] .kw-home-kicker {
    color: rgba(248,250,252,.64);
}

html[data-theme="dark"] .kw-hero-trusted__label {
    color: rgba(226,232,240,.60);
}

html[data-theme="dark"] .kw-hero-trusted__marquee::before {
    background: linear-gradient(90deg, rgba(5,5,7,.22), rgba(5,5,7,0));
}

html[data-theme="dark"] .kw-hero-trusted__marquee::after {
    background: linear-gradient(270deg, rgba(5,5,7,.22), rgba(5,5,7,0));
}

html[data-theme="dark"] .kw-hero-trusted__item {
    color: rgba(226,232,240,.70);
}

html[data-theme="dark"] .kw-hero-trusted__item img {
    opacity: .80;
    filter: grayscale(.76) saturate(.56) brightness(1.10) contrast(.99);
}

html[data-theme="dark"] .kw-hero-trusted__item:hover img,
html[data-theme="dark"] .kw-hero-trusted__item:focus-visible img {
    opacity: 1;
    filter: grayscale(0) saturate(1) brightness(1.02) contrast(1);
}

html[data-theme="dark"] .kw-hero-trusted__fallback {
    color: rgba(226,232,240,.74);
}

html[data-theme="dark"] .kw-hero-trusted__item:hover .kw-hero-trusted__fallback,
html[data-theme="dark"] .kw-hero-trusted__item:focus-visible .kw-hero-trusted__fallback {
    color: #ffffff;
}

html[data-theme="dark"] .kw-home-job-card,
html[data-theme="dark"] .kw-home-category-card,
html[data-theme="dark"] .kw-home-empty,
html[data-theme="dark"] .kw-home-job-card h3,
html[data-theme="dark"] .kw-home-category-card span {
    color: #f8fafc;
}

html[data-theme="dark"] .kw-home-job-card p,
html[data-theme="dark"] .kw-home-final-cta p:not(.kw-home-kicker),
html[data-theme="dark"] .kw-home-category-card strong {
    color: rgba(226,232,240,.62);
}

html[data-theme="dark"] .kw-home-category-card {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    box-shadow:
        0 1px 0 rgba(255,255,255,.08) inset,
        0 12px 28px rgba(0,0,0,.20);
}

html[data-theme="dark"] .kw-home-category-card__image {
    opacity: .90;
    filter: grayscale(1) saturate(.14) brightness(.84) contrast(1.08);
}

html[data-theme="dark"] .kw-home-category-card:hover .kw-home-category-card__image,
html[data-theme="dark"] .kw-home-category-card:focus-visible .kw-home-category-card__image {
    opacity: 1;
    filter: grayscale(0) saturate(1.06) brightness(1) contrast(1.05);
}

html[data-theme="dark"] .kw-home-category-card:hover,
html[data-theme="dark"] .kw-home-category-card:focus-visible {
    border-color: rgba(255,255,255,.22);
    box-shadow:
        0 1px 0 rgba(255,255,255,.10) inset,
        0 16px 34px rgba(0,0,0,.28);
}

html[data-theme="dark"] .kw-home-category-card__overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.16) 38%, rgba(0,0,0,.16) 58%, rgba(0,0,0,.66) 100%);
}

html[data-theme="dark"] .kw-home-category-card:hover .kw-home-category-card__overlay,
html[data-theme="dark"] .kw-home-category-card:focus-visible .kw-home-category-card__overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 38%, rgba(0,0,0,.12) 58%, rgba(0,0,0,.62) 100%);
}

html[data-theme="dark"] .kw-home-category-card__jobs::before {
    background: rgba(255,255,255,.44);
}

html[data-theme="dark"] .kw-home-category-card__jobs-label {
    color: rgba(255,255,255,.88);
}

html[data-theme="dark"] .kw-home-category-card:hover .kw-home-category-card__jobs::before,
html[data-theme="dark"] .kw-home-category-card:focus-visible .kw-home-category-card__jobs::before {
    background: rgba(255,255,255,.84);
}

html[data-theme="dark"] .kw-home-category-card:hover .kw-home-category-card__jobs-label,
html[data-theme="dark"] .kw-home-category-card:focus-visible .kw-home-category-card__jobs-label {
    color: #ffffff;
}



html[data-theme="dark"] .kw-home-btn,
html[data-theme="dark"] .kw-home-link {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #eaf1fb;
    box-shadow: none;
}

html[data-theme="dark"] .kw-home-btn--primary {
    border-color: #ffffff;
    background: #ffffff;
    color: #003172;
}



html[data-theme="dark"] .kw-home-section--latest .kw-home-job-card {
    border-color: rgba(255,255,255,.095);
    background:
        radial-gradient(circle at 12% -8%, rgba(255,255,255,.032), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.034));
    box-shadow:
        0 1px 2px rgba(0,0,0,.20),
        0 1px 0 rgba(255,255,255,.052) inset;
}

html[data-theme="dark"] .kw-home-section--latest .kw-home-job-card::before {
    width: 76%;
    height: 60%;
    opacity: .48;
    background:
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
    background-size: 38px 38px;
    background-position: -1px -1px;
    -webkit-mask-image: linear-gradient(135deg, #000 0%, rgba(0,0,0,.64) 30%, rgba(0,0,0,.18) 56%, transparent 80%);
    mask-image: linear-gradient(135deg, #000 0%, rgba(0,0,0,.64) 30%, rgba(0,0,0,.18) 56%, transparent 80%);
}

html[data-theme="dark"] .kw-home-section--latest .kw-home-job-card:hover {
    border-color: rgba(255,255,255,.135);
    background:
        radial-gradient(circle at 12% -8%, rgba(255,255,255,.040), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.064), rgba(255,255,255,.044));
    box-shadow:
        0 0 0 1px rgba(255,255,255,.034) inset,
        0 10px 22px rgba(0,0,0,.22);
}

html[data-theme="dark"] .kw-home-job-card__category {
    color: rgba(226,232,240,.52);
}

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-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-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-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-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);
}

html[data-theme="dark"] .kw-home-job-badge:hover {
    background: var(--kw-job-badge-bg-hover);
    border-color: var(--kw-job-badge-border-hover);
}

html[data-theme="dark"] .kw-home-job-badge--featured:hover {
    color: rgba(255, 225, 171, .98);
}

html[data-theme="dark"] .kw-home-job-badge--urgent:hover {
    color: rgba(255, 198, 191, .98);
}

html[data-theme="dark"] .kw-home-job-badge--new:hover {
    color: rgba(190, 255, 220, .98);
}

html[data-theme="dark"] .kw-home-job-card__title,
html[data-theme="dark"] .kw-home-job-card__title a {
    color: #ffffff;
}

html[data-theme="dark"] .kw-home-job-card__published {
    color: rgba(255, 255, 255, .62);
}

html[data-theme="dark"] .kw-home-job-card__employer,
html[data-theme="dark"] .kw-home-job-card__employer-link {
    color: rgba(236, 244, 255, .90);
}

html[data-theme="dark"] .kw-home-job-card__location-row,
html[data-theme="dark"] .kw-home-job-card__location,
html[data-theme="dark"] .kw-home-job-card__location-row a,
html[data-theme="dark"] .kw-home-job-card__location-separator {
    color: rgba(236, 244, 255, .66);
}

html[data-theme="dark"] .kw-home-job-card__employer-link:hover,
html[data-theme="dark"] .kw-home-job-card__location:hover,
html[data-theme="dark"] .kw-home-job-card__location-row a:hover {
    color: #ffffff;
}

html[data-theme="dark"] .kw-home-section--latest .kw-home-job-card__foot {
    border-top-color: rgba(255,255,255,.075);
}





html[data-theme="dark"] .kw-home-job-arrow {
    border-color: rgba(255,255,255,.11);
    background: rgba(255,255,255,.075);
    color: rgba(255,255,255,.66);
    box-shadow: 0 14px 30px rgba(0,0,0,.20);
}

html[data-theme="dark"] .kw-home-job-arrow:hover {
    border-color: rgba(255,255,255,.20);
    background: rgba(255,255,255,.13);
    color: #fff;
}

html[data-theme="dark"] .kw-home-job-card__logo {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

html[data-theme="dark"] .kw-home-job-card__logo.is-fallback {
    background: rgba(255,255,255,.055);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.075);
}

html[data-theme="dark"] .kw-home-job-card__logo.is-fallback span {
    color: rgba(226,232,240,.82);
    background: rgba(255,255,255,.045);
}


/* Home section label and subscription module */
.kw-section-label {
    display: inline-flex;
    margin: 0 0 10px;
    color: rgba(0, 49, 114, .52);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.kw-section-description--wide {
    max-width: 820px;
}

.kw-home-subscribe-section {
    margin-top: 68px;
}

.kw-home-subscribe-card {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.kw-section-head--subscribe {
    margin-bottom: 22px;
}

.kw-subscribe-form {
    max-width: 760px;
}

.kw-subscribe-form__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 7px;
    border: 1px solid rgba(0,49,114,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 14px 34px rgba(0,49,114,.06);
}

.kw-subscribe-form__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.kw-subscribe-form input[type="email"] {
    width: 100%;
    min-width: 0;
    height: 44px;
    border: 0;
    outline: 0;
    padding: 0 14px;
    background: transparent;
    color: #0f172a;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.kw-subscribe-form input[type="email"]::placeholder {
    color: rgba(0,49,114,.42);
}

.kw-subscribe-form__button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #003172;
    border-radius: 12px;
    background: #003172;
    color: #ffffff;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0,49,114,.16);
}

.kw-subscribe-form__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -76%;
    z-index: -1;
    width: 46%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.52), transparent);
    transform: skewX(-18deg);
    transition: left .64s ease;
}

.kw-subscribe-form__button:hover::after {
    left: 132%;
}

.kw-subscribe-form__note,
.kw-subscribe-form__message {
    margin: 12px 0 0;
    color: rgba(0,49,114,.52);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 12.2px;
    line-height: 1.55;
}

.kw-subscribe-form__message--success {
    color: #147a50;
    font-weight: 600;
}

.kw-subscribe-form__message--error {
    color: #b42318;
    font-weight: 600;
}

html[data-theme="dark"] .kw-section-label {
    color: rgba(248,250,252,.52);
}

html[data-theme="dark"] .kw-home-subscribe-card {
    border: 0;
    background: transparent;
    box-shadow: none;
}

html[data-theme="dark"] .kw-subscribe-form__fields {
    border-color: rgba(255,255,255,.10);
    background: rgba(255,255,255,.065);
    box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

html[data-theme="dark"] .kw-subscribe-form input[type="email"] {
    color: #ffffff;
}

html[data-theme="dark"] .kw-subscribe-form input[type="email"]::placeholder,
html[data-theme="dark"] .kw-subscribe-form__note {
    color: rgba(226,232,240,.54);
}

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

html[data-theme="dark"] .kw-subscribe-form__message--success {
    color: #8ff0bd;
}

html[data-theme="dark"] .kw-subscribe-form__message--error {
    color: #ffb4ab;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 980px) {
    .kw-section-head {
        align-items: flex-end;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px 18px;
    }

    .kw-section-copy {
        flex: 1 1 480px;
    }

    .kw-section-cta {
        margin-left: auto;
        align-self: flex-end;
    }

    .kw-home-job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kw-home-job-carousel {
        margin-inline: 0;
        padding-inline: 40px;
    }

    .kw-home-job-arrow--prev {
        left: 4px;
    }

    .kw-home-job-arrow--next {
        right: 4px;
    }

    .kw-home-category-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(214px, 31vw);
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding: 2px 1px 10px;
    }

    .kw-home-category-grid::-webkit-scrollbar {
        display: none;
    }

    .kw-home-category-card {
        scroll-snap-align: start;
    }

    /* Home latest jobs stays a real carousel: two cards visible on tablet. */
    .kw-home-section--latest .kw-home-job-grid {
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 16px) / 2);
        grid-template-columns: none;
        gap: 16px;
    }

    .kw-home-final-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .kw-home-page {
        width: min(100% - 22px, 1180px);
    }

    .kw-hero-search {
        grid-template-columns: 38px minmax(0, 1fr) 42px;
        gap: 0;
        width: min(100%, 360px);
        margin-top: 22px;
        padding: 5px;
        border-radius: 14px;
    }

    .kw-hero-search input {
        height: 40px;
        font-size: 12.5px;
    }

    .kw-hero-search__button {
        min-width: 0;
        width: 38px;
        height: 38px;
        min-height: 38px;
        padding: 0;
        border-radius: 11px;
    }

    .kw-hero-search__button-text {
        display: none;
    }

    .kw-hero-search__button-icon {
        display: block;
    }



    .kw-hero-trusted {
        margin-top: 28px;
    }

    .kw-hero-trusted__label {
        font-size: 12.2px;
        max-width: 280px;
    }

    .kw-hero-trusted__track {
        gap: 28px;
    }


    .kw-section-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px 16px;
        margin-bottom: 22px;
    }

    .kw-section-copy {
        flex: 1 1 100%;
    }

    .kw-section-title {
        font-size: clamp(24px, 8vw, 30px);
    }

    .kw-section-description {
        margin-top: 10px;
        font-size: 13.4px;
        line-height: 1.62;
    }

    .kw-section-cta {
        margin-top: 0;
        margin-left: auto;
        align-self: flex-end;
    }

    .kw-home-job-carousel {
        margin-inline: 0;
        padding-inline: 0;
    }

    .kw-home-section-head {
        display: block;
    }

    .kw-home-link {
        margin-top: 14px;
    }

    /* Mobile remains a one-card carousel; 12 jobs never stack vertically. */
    .kw-home-section--latest .kw-home-job-grid {
        grid-auto-flow: column;
        grid-auto-columns: 100%;
        grid-template-columns: none;
        gap: 12px;
    }

    .kw-home-job-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding: 2px 2px 8px;
    }

    .kw-home-job-scroll::-webkit-scrollbar {
        display: none;
    }

    .kw-home-job-arrow {
        display: none;
    }

    .kw-home-job-swipe-peek {
        position: absolute;
        top: 50%;
        right: 8px;
        z-index: 5;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 96px;
        min-height: 82px;
        padding: 0;
        color: rgba(0,49,114,.76);
        font-family: "Manrope", "Inter", Arial, sans-serif;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-50%) translateX(10px) scale(.96);
        transition: opacity .22s ease, transform .22s ease;
    }

    .kw-home-job-swipe-peek__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 37px;
        height: 37px;
        color: rgba(0,49,114,.80);
        filter: drop-shadow(0 8px 16px rgba(0,49,114,.10));
    }

    .kw-home-job-swipe-peek__icon svg {
        display: block;
        width: 32px;
        height: 32px;
        stroke-width: 1.18;
    }

    .kw-home-job-swipe-peek__text {
        display: block;
        max-width: 84px;
        font-size: 9.8px;
        font-weight: 560;
        line-height: 1.18;
        letter-spacing: .065em;
        text-align: center;
        text-transform: uppercase;
        text-wrap: balance;
        text-shadow: 0 1px 0 rgba(255,255,255,.72);
    }

    .kw-home-job-carousel.is-swipe-peek .kw-home-job-swipe-peek {
        animation: kwHomeJobSwipePeekLabel 2.45s ease both;
    }

    .kw-home-job-carousel.is-swipe-peek .kw-home-job-grid .kw-home-job-card:first-child {
        animation: kwHomeJobSwipePeekCard 2.45s cubic-bezier(.22,.84,.18,1) both;
    }

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

    .kw-home-job-card__main {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 11px;
    }

    .kw-home-job-card__logo {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .kw-home-job-card__top {
        margin-bottom: 12px;
    }

    .kw-home-job-card__category {
        font-size: 9.8px;
        min-height: 18px;
    }

    .kw-home-job-card__title {
        font-size: 15.5px;
        line-height: 1.18;
    }

    .kw-home-job-card__employer {
        margin-top: 8px;
        font-size: 12.2px;
    }

    .kw-home-job-card__location-row {
        margin-top: 4px;
        font-size: 11.8px;
    }

    .kw-home-job-card__published {
        font-size: 11.4px;
    }

    .kw-home-job-card__meta {
        margin-top: 10px;
        font-size: 11.5px;
    }

    .kw-home-section--latest .kw-home-job-card__foot {
        margin-top: auto;
        padding-top: 12px;
    }

    .kw-home-job-card__title {
        font-size: 17px;
    }

    .kw-soft-cta {
        min-height: 31px;
        padding: 7px 12px;
        font-size: 11.2px;
    }

    .kw-home-job-grid {
        grid-template-columns: 1fr;
    }

    .kw-home-category-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(214px, 76vw);
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding: 2px 1px 10px;
        margin-right: -11px;
    }

    .kw-home-category-grid::-webkit-scrollbar {
        display: none;
    }

    .kw-home-category-card {
        height: 104px;
        min-height: 104px;
        scroll-snap-align: start;
    }

    .kw-home-category-card__name {
        top: 12px;
        right: 13px;
        left: 13px;
        max-width: calc(100% - 26px);
        font-size: 14px;
    }

    .kw-home-category-card__jobs {
        right: 13px;
        bottom: 11px;
    }

    .kw-home-category-card__jobs-count {
        font-size: 15.5px;
    }

    .kw-home-category-card__jobs-label {
        font-size: 8.9px;
    }


    .kw-home-subscribe-card {
        padding: 0;
        border-radius: 0;
    }

    .kw-subscribe-form__fields {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    html[data-theme="dark"] .kw-subscribe-form__fields {
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .kw-subscribe-form input[type="email"] {
        height: 44px;
        padding: 0 14px;
        border: 1px solid rgba(0,49,114,.10);
        border-radius: 14px;
        background: rgba(255,255,255,.86);
        box-shadow: 0 12px 28px rgba(0,49,114,.055);
        text-align: center;
    }

    html[data-theme="dark"] .kw-subscribe-form input[type="email"] {
        border-color: rgba(255,255,255,.10);
        background: rgba(255,255,255,.065);
        box-shadow: 0 18px 42px rgba(0,0,0,.22);
    }

    .kw-subscribe-form__button {
        width: 100%;
        min-height: 40px;
    }

    .kw-home-final-cta {
        padding: 22px;
    }
}



@media (max-width: 640px) {
    .kw-home-job-card__top {
        align-items: flex-start;
    }

    .kw-home-job-card__badges {
        gap: 4px;
    }

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

    .kw-home-job-badge svg {
        width: 11px;
        height: 11px;
        flex-basis: 11px;
    }
}

/* Bottom image-only action links */
.kw-home-image-links-section {
    margin-top: 64px;
}

.kw-home-image-links {
    display: grid;
    grid-template-columns: repeat(3, 368px);
    gap: 22px;
    justify-content: center;
    align-items: start;
    width: 100%;
}

.kw-home-image-link {
    position: relative;
    display: block;
    width: 368px;
    height: 210px;
    max-width: 100%;
    overflow: hidden !important;
    isolation: isolate;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transform: translateZ(0);
}

.kw-home-image-link::before,
.kw-home-image-link::after {
    display: none !important;
    content: none !important;
}

.kw-home-image-link img {
    position: absolute;
    inset: 0;
    display: block;
    width: 368px !important;
    height: 210px !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 368px !important;
    min-height: 210px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    object-fit: cover;
    object-position: center;
    opacity: .80;
    filter: grayscale(22%) saturate(.72) contrast(.96);
    transform: scale(1);
    transform-origin: center;
    transition: opacity .24s ease, filter .24s ease, transform .24s ease;
}

.kw-home-image-link:hover img,
.kw-home-image-link:focus-visible img {
    opacity: 1;
    filter: grayscale(0) saturate(1) contrast(1);
    transform: scale(1.012);
}

@keyframes kwHomeImageLinkColorCycle {
    0%,
    13%,
    100% {
        opacity: .80;
        filter: grayscale(22%) saturate(.72) contrast(.96);
        transform: scale(1);
    }

    22%,
    38% {
        opacity: 1;
        filter: grayscale(0) saturate(1) contrast(1);
        transform: scale(1.012);
    }

    47% {
        opacity: .80;
        filter: grayscale(22%) saturate(.72) contrast(.96);
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .kw-home-image-link img {
        animation: kwHomeImageLinkColorCycle 10.5s ease-in-out infinite;
    }

    .kw-home-image-link--jobs img {
        animation-delay: 0s;
    }

    .kw-home-image-link--insights img {
        animation-delay: 3.5s;
    }

    .kw-home-image-link--network img {
        animation-delay: 7s;
    }

    .kw-home-image-link:hover img,
    .kw-home-image-link:focus-visible img {
        animation: none;
    }
}

.kw-home-image-link:focus-visible {
    outline: 2px solid rgba(0,49,114,.22);
    outline-offset: 3px;
}

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

    .kw-home-image-link {
        width: 100%;
        height: auto;
        aspect-ratio: 368 / 210;
    }

    .kw-home-image-link img {
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
    }
}

@media (max-width: 900px) {
    .kw-home-image-links {
        gap: 14px;
    }
}

@media (max-width: 760px) {
    .kw-home-image-links {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
    }

    .kw-home-image-link {
        width: min(368px, 100%);
        height: auto;
        aspect-ratio: 368 / 210;
    }
}




/* =====================================================
   SHARED FEATURED JOB GRID EFFECT
   Home Featured Jobs and Jobs Archive Grid stay identical.
===================================================== */
.kw-home-job-grid .kw-home-job-card:has(.kw-home-job-badge--featured),
.kw-home-job-grid .kw-home-job-card:has(.kw-badge-featured),
.kw-global-job-grid .kw-global-job-card:has(.kw-home-job-badge--featured),
.kw-global-job-grid .kw-global-job-card:has(.kw-badge-featured) {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-color: rgba(245, 158, 11, .24);
    background:
        linear-gradient(156deg, rgba(245, 158, 11, .046) 0%, rgba(245, 158, 11, .026) 22%, rgba(245, 158, 11, .010) 46%, rgba(245, 158, 11, 0) 68%),
        linear-gradient(135deg, rgba(255,255,255,.995) 0%, rgba(255,255,255,.995) 100%);
}

.kw-home-job-grid .kw-home-job-card:has(.kw-home-job-badge--featured)::before,
.kw-home-job-grid .kw-home-job-card:has(.kw-badge-featured)::before,
.kw-global-job-grid .kw-global-job-card:has(.kw-home-job-badge--featured)::before,
.kw-global-job-grid .kw-global-job-card:has(.kw-badge-featured)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    width: auto;
    height: auto;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(ellipse 210px 130px at 94% 7%, rgba(251, 191, 36, .030) 0%, rgba(245, 158, 11, .014) 36%, rgba(245, 158, 11, 0) 68%),
        linear-gradient(156deg, rgba(251, 191, 36, .040) 0%, rgba(245, 158, 11, .022) 28%, rgba(245, 158, 11, .008) 52%, rgba(245, 158, 11, 0) 72%);
    opacity: .52;
    -webkit-mask-image: linear-gradient(156deg, #000 0%, rgba(0,0,0,.55) 30%, rgba(0,0,0,.16) 58%, transparent 82%);
    mask-image: linear-gradient(156deg, #000 0%, rgba(0,0,0,.55) 30%, rgba(0,0,0,.16) 58%, transparent 82%);
}

.kw-home-job-grid .kw-home-job-card:has(.kw-home-job-badge--featured) > *,
.kw-home-job-grid .kw-home-job-card:has(.kw-badge-featured) > *,
.kw-global-job-grid .kw-global-job-card:has(.kw-home-job-badge--featured) > *,
.kw-global-job-grid .kw-global-job-card:has(.kw-badge-featured) > * {
    position: relative;
    z-index: 1;
}

.kw-home-job-grid .kw-home-job-card:has(.kw-home-job-badge--featured):hover,
.kw-home-job-grid .kw-home-job-card:has(.kw-badge-featured):hover,
.kw-global-job-grid .kw-global-job-card:has(.kw-home-job-badge--featured):hover,
.kw-global-job-grid .kw-global-job-card:has(.kw-badge-featured):hover {
    border-color: rgba(245, 158, 11, .30);
    background:
        linear-gradient(156deg, rgba(245, 158, 11, .052) 0%, rgba(245, 158, 11, .030) 24%, rgba(245, 158, 11, .012) 48%, rgba(245, 158, 11, 0) 70%),
        linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(250,253,255,1) 100%);
}

html[data-theme="dark"] .kw-home-job-grid .kw-home-job-card:has(.kw-home-job-badge--featured),
html[data-theme="dark"] .kw-home-job-grid .kw-home-job-card:has(.kw-badge-featured),
html[data-theme="dark"] .kw-global-job-grid .kw-global-job-card:has(.kw-home-job-badge--featured),
html[data-theme="dark"] .kw-global-job-grid .kw-global-job-card:has(.kw-badge-featured) {
    border-color: rgba(251, 191, 36, .32);
    background:
        linear-gradient(156deg, rgba(251, 191, 36, .078) 0%, rgba(245, 158, 11, .044) 24%, rgba(245, 158, 11, .016) 50%, rgba(245, 158, 11, 0) 72%),
        linear-gradient(135deg, rgba(255,255,255,.052) 0%, rgba(255,255,255,.040) 100%);
}

html[data-theme="dark"] .kw-home-job-grid .kw-home-job-card:has(.kw-home-job-badge--featured)::before,
html[data-theme="dark"] .kw-home-job-grid .kw-home-job-card:has(.kw-badge-featured)::before,
html[data-theme="dark"] .kw-global-job-grid .kw-global-job-card:has(.kw-home-job-badge--featured)::before,
html[data-theme="dark"] .kw-global-job-grid .kw-global-job-card:has(.kw-badge-featured)::before {
    background:
        radial-gradient(ellipse 220px 140px at 94% 7%, rgba(251, 191, 36, .055) 0%, rgba(245, 158, 11, .024) 38%, rgba(245, 158, 11, 0) 70%),
        linear-gradient(156deg, rgba(251, 191, 36, .072) 0%, rgba(245, 158, 11, .034) 30%, rgba(245, 158, 11, .012) 54%, rgba(245, 158, 11, 0) 74%);
    opacity: .58;
}

html[data-theme="dark"] .kw-home-job-grid .kw-home-job-card:has(.kw-home-job-badge--featured):hover,
html[data-theme="dark"] .kw-home-job-grid .kw-home-job-card:has(.kw-badge-featured):hover,
html[data-theme="dark"] .kw-global-job-grid .kw-global-job-card:has(.kw-home-job-badge--featured):hover,
html[data-theme="dark"] .kw-global-job-grid .kw-global-job-card:has(.kw-badge-featured):hover {
    border-color: rgba(251, 191, 36, .38);
    background:
        linear-gradient(156deg, rgba(251, 191, 36, .086) 0%, rgba(245, 158, 11, .050) 26%, rgba(245, 158, 11, .018) 52%, rgba(245, 158, 11, 0) 74%),
        linear-gradient(135deg, rgba(255,255,255,.064) 0%, rgba(255,255,255,.052) 100%);
}


html[data-theme="dark"] .kw-home-job-swipe-peek {
    color: rgba(248,250,252,.82);
}

html[data-theme="dark"] .kw-home-job-swipe-peek__icon {
    color: rgba(248,250,252,.88);
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}

html[data-theme="dark"] .kw-home-job-swipe-peek__text {
    text-shadow: 0 1px 0 rgba(0,0,0,.40);
}


/* =====================================================
   TEMPORARY HOME EARLY ACCESS POPUP
   Remove this block together with the matching Blade markup and JS initializer.
===================================================== */
.kw-early-access {
    position: fixed;
    inset: 0;
    z-index: 9990;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .20s ease;
}

.kw-early-access.is-visible {
    display: flex;
}

.kw-early-access.is-open {
    opacity: 1;
    pointer-events: auto;
}

.kw-early-access__overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 251, 255, .48);
    -webkit-backdrop-filter: blur(7px) saturate(1.02);
    backdrop-filter: blur(7px) saturate(1.02);
}

.kw-early-access__dialog {
    position: relative;
    isolation: isolate;
    width: min(100%, 440px);
    overflow: visible;
    padding: 30px 30px 28px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 24px;
    background: rgba(255, 255, 255, .68);
    color: #0f172a;
    box-shadow: 0 18px 54px rgba(0, 49, 114, .105);
    -webkit-backdrop-filter: blur(22px) saturate(1.10);
    backdrop-filter: blur(22px) saturate(1.10);
    transform: translateY(8px) scale(.99);
    transition: transform .22s ease;
}

.kw-early-access.is-open .kw-early-access__dialog {
    transform: translateY(0) scale(1);
}

.kw-early-access__close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(0,49,114,.54);
    box-shadow: none;
    cursor: pointer;
    transition: color .18s ease, opacity .18s ease;
}

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

.kw-early-access__close:focus-visible {
    box-shadow: 0 0 0 3px rgba(2,132,199,.14);
    border-radius: 8px;
}

.kw-early-access__close svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.75;
}


.kw-early-access__title {
    max-width: 390px;
    margin: 0;
    color: #003172;
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: clamp(16px, 2.55vw, 20px);
    font-weight: 680;
    line-height: 1.24;
    letter-spacing: .045em;
    text-transform: uppercase;
    text-wrap: balance;
}

.kw-early-access__description {
    max-width: 410px;
    margin: 12px 0 0;
    color: rgba(15, 23, 42, .66);
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.66;
    letter-spacing: -.006em;
}

.kw-early-access__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 21px;
}

.kw-early-access__link.kw-card-cta {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 12.3px;
    font-weight: 560;
    letter-spacing: -.006em;
}

.kw-early-access__link svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.8;
}

body.kw-early-access-open {
    overflow: hidden;
}

html[data-theme="dark"] .kw-early-access__overlay,
[data-theme="dark"] .kw-early-access__overlay {
    background: rgba(0, 0, 0, .48);
}

html[data-theme="dark"] .kw-early-access__dialog,
[data-theme="dark"] .kw-early-access__dialog {
    border-color: rgba(255,255,255,.12);
    background: rgba(10, 10, 10, .70);
    color: rgba(255,255,255,.90);
    box-shadow: 0 22px 64px rgba(0, 0, 0, .46);
}

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

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


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

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

html[data-theme="dark"] .kw-early-access__link.kw-card-cta,
[data-theme="dark"] .kw-early-access__link.kw-card-cta {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.075);
    color: rgba(255,255,255,.92);
    box-shadow: 0 14px 34px rgba(0,0,0,.20);
}

html[data-theme="dark"] .kw-early-access__link.kw-card-cta:hover,
html[data-theme="dark"] .kw-early-access__link.kw-card-cta:focus-visible,
[data-theme="dark"] .kw-early-access__link.kw-card-cta:hover,
[data-theme="dark"] .kw-early-access__link.kw-card-cta:focus-visible {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.11);
    color: #fff;
}

@media (max-width: 640px) {
    .kw-early-access {
        align-items: flex-end;
        padding: 14px;
    }

    .kw-early-access__dialog {
        width: 100%;
        padding: 28px 22px 23px;
        border-radius: 22px;
    }

    .kw-early-access__close {
        top: 14px;
        right: 14px;
    }

    .kw-early-access__title {
        max-width: 310px;
        font-size: clamp(15px, 4.7vw, 18px);
        line-height: 1.28;
    }

    .kw-early-access__description {
        font-size: 13.2px;
        line-height: 1.62;
    }

    .kw-early-access__actions,
    .kw-early-access__link.kw-card-cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kw-early-access,
    .kw-early-access__dialog {
        transition: none;
    }
}

