.wjp-home {
    background: var(--wjp-color-white);
}

.wjp-home h1,
.wjp-home h2,
.wjp-home h3,
.wjp-home p {
    margin-top: 0;
}

.wjp-home h1,
.wjp-home h2,
.wjp-home h3 {
    color: var(--wjp-color-text);
}

.wjp-home-hero {
    position: relative;
    z-index: 3;
    isolation: isolate;
    overflow: visible;
    padding: 56px 0 48px;
    background: var(--wjp-color-primary-soft);
}

.wjp-home-hero__background-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wjp-home-hero--has-image::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: '';
}

.wjp-home-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.wjp-home-hero__layout,
.wjp-home-hero__search-area {
    min-width: 0;
}

.wjp-home-hero__content {
    max-width: 760px;
}

.wjp-home-hero__login-card {
    margin-top: 24px;
}

@media (max-width: 1279px) {
    .wjp-home-hero__login-card {
        display: none;
    }
}

.wjp-home-hero__login-card-content {
    display: none;
}

.wjp-home-hero__login-mobile-trigger,
.wjp-home-hero__google-trigger {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-white);
    color: var(--wjp-color-text);
    font: inherit;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

.wjp-home .wjp-home-hero__login-mobile-trigger:hover,
.wjp-home .wjp-home-hero__login-mobile-trigger:active,
.wjp-home .wjp-home-hero__login-mobile-trigger:focus:not(:focus-visible),
.wjp-home .wjp-home-hero__google-trigger:hover,
.wjp-home .wjp-home-hero__google-trigger:active,
.wjp-home .wjp-home-hero__google-trigger:focus:not(:focus-visible) {
    border-color: var(--wjp-color-primary);
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
    box-shadow: none;
}

.wjp-home .wjp-home-hero__login-actions .wjp-home-button--primary:hover,
.wjp-home .wjp-home-hero__login-actions .wjp-home-button--primary:active,
.wjp-home .wjp-home-hero__login-actions .wjp-home-button--primary:focus:not(:focus-visible) {
    border-color: var(--wjp-color-primary-dark);
    background: var(--wjp-color-primary-dark);
    color: var(--wjp-color-white);
    box-shadow: none;
}

.wjp-home-hero__login-mobile-trigger {
    width: 100%;
}

.wjp-home-hero__login-card h2 {
    margin: 0 0 8px;
    color: var(--wjp-color-text);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

.wjp-home-hero__login-card p {
    margin: 0;
    color: var(--wjp-color-text-muted);
    font-size: 0.875rem;
    line-height: 1.55;
}

.wjp-home-hero__login-actions {
    display: grid;
    gap: 10px;
}

.wjp-home-login-suggestion[hidden] {
    display: none;
}

.wjp-home-login-suggestion {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
}

.wjp-home-login-suggestion__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
}

.wjp-home-login-suggestion__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100%, 480px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border: 1px solid rgba(240, 90, 0, 0.18);
    border-top: 6px solid var(--wjp-color-primary);
    border-radius: var(--wjp-radius-lg);
    background: linear-gradient(145deg, #fff1e8 0%, var(--wjp-color-white) 58%);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
}

.wjp-home-login-suggestion__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: inline-grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--wjp-color-border);
    border-radius: 50%;
    background: var(--wjp-color-white);
    color: var(--wjp-color-text-muted);
    box-shadow: none;
    cursor: pointer;
}

.wjp-home-login-suggestion__close:hover,
.wjp-home-login-suggestion__close:focus-visible {
    border-color: var(--wjp-color-primary);
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
    box-shadow: none;
}

.wjp-home-login-suggestion__close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.wjp-home-login-suggestion__image-wrap {
    display: grid;
    min-height: 156px;
    padding: 14px 56px 0;
    place-items: end center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 90, 0, 0.18) 0%, rgba(255, 255, 255, 0.92) 76%);
}

.wjp-home-login-suggestion__image-wrap img {
    display: block;
    width: min(100%, 220px);
    max-height: 176px;
    object-fit: contain;
    object-position: center bottom;
}

.wjp-home-login-suggestion__content {
    padding: 20px 28px 26px;
    text-align: center;
}

.wjp-home-login-suggestion__eyebrow {
    margin: 0 0 8px;
    color: var(--wjp-color-primary-dark);
    font-size: var(--wjp-text-sm);
    font-weight: 700;
}

.wjp-home-login-suggestion__content h2 {
    margin: 0;
    color: var(--wjp-color-text);
    font-size: 1.25rem;
    line-height: 1.25;
    white-space: nowrap;
}

.wjp-home-login-suggestion__content > p:not(.wjp-home-login-suggestion__eyebrow) {
    margin: 12px auto 22px;
    color: var(--wjp-color-text-muted);
    line-height: 1.55;
}

.wjp-home-login-suggestion__action {
    width: min(100%, 320px);
    justify-content: center;
    gap: 8px;
}

.wjp-home-login-suggestion__action svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.wjp-home-login-suggestion-is-open {
    overflow: hidden;
}

@media (max-width: 479px) {
    .wjp-home-login-suggestion {
        padding: 16px;
    }

    .wjp-home-login-suggestion__dialog {
        max-height: calc(100vh - 32px);
    }

    .wjp-home-login-suggestion__image-wrap {
        min-height: 160px;
    }

    .wjp-home-login-suggestion__content {
        padding: 20px 22px 26px;
    }

    .wjp-home-login-suggestion__content h2 {
        white-space: normal;
    }
}

.wjp-home-eyebrow {
    margin-bottom: 10px;
    color: var(--wjp-color-primary-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wjp-home-hero h1 {
    max-width: 740px;
    margin-bottom: 16px;
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.2;
}

.wjp-home-hero__description {
    max-width: 700px;
    margin-bottom: 28px;
    color: var(--wjp-color-text-muted);
    font-size: 1.0625rem;
}

.wjp-home-search-form {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-lg);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-md);
}

.wjp-home-search-form__field input,
.wjp-home-search-form__field select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-white);
    color: var(--wjp-color-text);
    font: inherit;
}

.wjp-home-search-form__field input::placeholder {
    color: var(--wjp-color-text-light);
    opacity: 1;
}

.wjp-home-search-form__field--keyword {
    position: relative;
}

.wjp-home-keyword-suggestions {
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    left: 0;
    width: min(100%, 360px);
    overflow: hidden;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-md);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-md);
}

.wjp-home-keyword-suggestions[hidden] {
    display: none;
}

.wjp-home-keyword-suggestions__section {
    padding: 12px;
}

.wjp-home-keyword-suggestions__section + .wjp-home-keyword-suggestions__section {
    padding-top: 0;
}

.wjp-home-keyword-suggestions__section h2 {
    margin: 0 0 6px;
    color: var(--wjp-color-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.wjp-home-keyword-suggestions__list {
    display: grid;
    gap: 2px;
}

.wjp-home-search-form .wjp-home-keyword-suggestions__item {
    display: flex;
    min-height: 0;
    padding: 7px 8px;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: var(--wjp-color-text);
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    box-shadow: none;
}

.wjp-home-search-form .wjp-home-keyword-suggestions__item:hover,
.wjp-home-search-form .wjp-home-keyword-suggestions__item:focus-visible {
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
    outline: 0;
    box-shadow: none;
}

.wjp-home-keyword-suggestions__item svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.wjp-home-keyword-suggestions__item--popular svg {
    color: var(--wjp-color-primary);
}

.wjp-home-keyword-suggestions__item--recent svg {
    color: var(--wjp-color-success);
}

.wjp-home-keyword-suggestions__empty {
    margin: 0;
    padding: 7px 8px;
    color: var(--wjp-color-text-muted);
    font-size: 13px;
}

.wjp-home-multiselect,
.wjp-home-location-select,
.wjp-home-multiselect summary,
.wjp-home-location-select summary {
    width: 100%;
}

.wjp-home-multiselect,
.wjp-home-location-select {
    position: relative;
}

.wjp-home-multiselect summary,
.wjp-home-location-select summary {
    display: flex;
    min-height: 48px;
    padding: 0 42px 0 14px;
    align-items: center;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-white);
    color: var(--wjp-color-text);
    cursor: pointer;
    list-style: none;
}

.wjp-home-multiselect summary::-webkit-details-marker,
.wjp-home-location-select summary::-webkit-details-marker {
    display: none;
}

.wjp-home-multiselect summary::after,
.wjp-home-location-select summary::after {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--wjp-color-text-muted);
    border-bottom: 2px solid var(--wjp-color-text-muted);
    content: '';
    transform: translateY(-65%) rotate(45deg);
}

.wjp-home-multiselect__placeholder,
.wjp-home-multiselect__selected {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wjp-home-multiselect__placeholder {
    color: var(--wjp-color-text-light);
}

.wjp-home-location-select:not(.is-has-selection) summary {
    color: var(--wjp-color-text-light);
}

.wjp-home-location-select.is-has-selection summary {
    color: var(--wjp-color-text);
}

.wjp-home-multiselect__selected {
    display: none;
    flex: 1 1 auto;
    gap: 4px;
}

.wjp-home-multiselect.is-has-selection .wjp-home-multiselect__placeholder {
    display: none;
}

.wjp-home-multiselect.is-has-selection .wjp-home-multiselect__selected {
    display: flex;
}

.wjp-home-multiselect__selected-item {
    flex: 0 1 auto;
    min-width: 0;
    padding: 2px 6px;
    border: 1px solid rgba(240, 90, 0, 0.18);
    border-radius: 4px;
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wjp-home-multiselect[open] summary,
.wjp-home-location-select[open] summary {
    border-color: var(--wjp-color-primary);
    box-shadow: 0 0 0 3px rgba(240, 90, 0, 0.12);
}

.wjp-home-multiselect[open],
.wjp-home-location-select[open] {
    z-index: 40;
}

.wjp-home-multiselect summary:focus-visible,
.wjp-home-location-select summary:focus-visible {
    outline: 3px solid var(--wjp-color-primary);
    outline-offset: 3px;
}

.wjp-home-multiselect__options,
.wjp-home-location-select__options {
    position: absolute;
    z-index: 20;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    max-height: 260px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-md);
}

.wjp-home-multiselect__options,
.wjp-home-location-select__options {
    width: min(380px, calc(100vw - 32px));
    max-height: min(320px, calc(100vh - 160px));
}

.wjp-home-multiselect__search,
.wjp-home-location-select__search {
    position: sticky;
    z-index: 2;
    top: 0;
    padding: 8px;
    background: var(--wjp-color-white);
    box-shadow: 0 8px 12px -12px rgba(15, 23, 42, 0.45);
}

.wjp-home-search-form .wjp-home-multiselect__search input,
.wjp-home-search-form .wjp-home-location-select__search input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-white);
    font-size: 14px;
}

.wjp-home-search-form .wjp-home-multiselect__search input:focus,
.wjp-home-search-form .wjp-home-location-select__search input:focus {
    border-color: var(--wjp-color-primary);
    outline: 3px solid rgba(240, 90, 0, 0.12);
}

.wjp-home-multiselect__options label,
.wjp-home-location-select__options label {
    display: flex;
    gap: 8px;
    padding: 9px 8px;
    align-items: center;
    border-radius: 4px;
    color: var(--wjp-color-text);
    font-size: 0.875rem;
    cursor: pointer;
}

.wjp-home-multiselect__options label[hidden],
.wjp-home-location-select__options label[hidden] {
    display: none;
}

.wjp-home-multiselect__options label:hover,
.wjp-home-location-select__options label:hover {
    background: var(--wjp-color-primary-soft);
}

.wjp-home-multiselect__options input,
.wjp-home-location-select__options input {
    width: 16px;
    height: 16px;
    min-height: 0;
    margin: 0;
    padding: 0;
    accent-color: var(--wjp-color-primary);
}

.wjp-home-location-select__options label {
    position: relative;
}

.wjp-home-location-select__options input[type='radio'] {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.wjp-home-multiselect__options label {
    white-space: nowrap;
}

.wjp-home-search-form__field select {
    padding-right: 42px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.wjp-home-search-form__field input:focus,
.wjp-home-search-form__field select:focus {
    border-color: var(--wjp-color-primary);
    outline: 3px solid rgba(240, 90, 0, 0.2);
}

.wjp-home-search-form button,
.wjp-home-button {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-primary);
    color: var(--wjp-color-white);
    font: inherit;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.wjp-home-search-form button:hover,
.wjp-home-button--primary:hover {
    background: var(--wjp-color-primary-dark);
    color: var(--wjp-color-white);
}

.wjp-home-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 20px;
    font-size: 0.875rem;
}

.wjp-home-keywords span {
    color: var(--wjp-color-text-muted);
}

.wjp-home-keywords a {
    color: black;
    font-weight: 600;
}

.wjp-home-industries {
    padding: 32px 0 8px;
}

.wjp-home-industries__layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wjp-home-industries__banner {
    order: 1;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    border-radius: var(--wjp-radius-md);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-sm);
}

.wjp-home-industries__banner img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.wjp-home-industries__banner-link,
.wjp-home-industries__banner picture {
    display: block;
    width: 100%;
}

.wjp-home-industries__banner-link:focus-visible {
    outline: 3px solid var(--wjp-color-primary);
    outline-offset: 3px;
}

.wjp-home-banner-slider {
    position: relative;
    width: 100%;
    --swiper-wrapper-transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.wjp-home-banner-slider__slide {
    min-width: 0;
}

.wjp-home-banner-slider__pagination {
    position: absolute;
    z-index: 10;
    bottom: 10px;
    left: 50%;
    display: flex;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.35);
    width: auto;
    transform: translateX(-50%);
    pointer-events: auto;
}

.wjp-home-banner-slider__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: block;
    flex: 0 0 7px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.88);
    opacity: 1;
    cursor: pointer;
}

.wjp-home-banner-slider__dot.is-active {
    background: var(--wjp-color-primary-light);
}

.wjp-home-banner-slider__dot:focus-visible {
    outline: 2px solid var(--wjp-color-white);
    outline-offset: 3px;
}

.wjp-home-banner-slider:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    transition: transform 420ms ease;
}

.wjp-home-banner-slider:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 100%;
    width: 100%;
}

.wjp-home-industries__list {
    order: 2;
    display: flex;
    min-height: 0;
    padding: 14px;
    flex-direction: column;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-md);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-sm);
}

.wjp-home-industries__list h2 {
    margin: 0 0 9px;
    font-size: 1.125rem;
}

.wjp-home-industries__list ul {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0;
    list-style: none;
}

.wjp-home-industries__list li:not(:last-child) {
    border-bottom: 1px solid var(--wjp-color-border);
}

.wjp-home-industries__list a {
    display: flex;
    min-height: 34px;
    padding: 6px 0;
    align-items: center;

    gap: 6px;
    color: var(--wjp-color-text);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
}

.wjp-home-industries__list a:hover {
    color: var(--wjp-color-primary-dark);
}

.wjp-home-industries__label {
    min-width: 0;
    flex: 1;
    white-space: normal;
}

.wjp-home-industries__arrow {
    flex: 0 0 auto;
    color: var(--wjp-color-primary);
    font-size: 0.875rem;
}

.wjp-home-category-all {
    display: flex;
    width: 100%;
    min-height: 34px;
    margin-top: 4px;
    padding: 9px 4px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--wjp-color-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
}

.wjp-home-category-all__content {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
}

.wjp-home-category-all__grid-icon,
.wjp-home-category-all__chevron {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.wjp-home-category-all__label {
    min-width: 0;
    color: currentcolor;
    text-decoration-line: underline;
    text-decoration-color: currentcolor;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.wjp-home-category-all__chevron {
    transition: transform 160ms ease;
}

.wjp-home-category-all:hover {
    color: var(--wjp-color-primary-dark);
}

.wjp-home-category-all:hover .wjp-home-category-all__chevron {
    transform: translateX(2px);
}

.wjp-home-category-all:focus-visible {
    outline: 3px solid rgba(240, 90, 0, 0.35);
    outline-offset: 3px;
}

.wjp-home-category-all:active .wjp-home-category-all__chevron {
    transform: none;
}

.wjp-home-job-grid,
.wjp-home-company-grid,
.wjp-home-guide-grid {
    display: grid;
    gap: 16px;
}

.wjp-home-job-card,
.wjp-home-company-card,
.wjp-home-guide-card {
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-md);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-sm);
}

.wjp-home-job-card__company,
.wjp-home-company-card p,
.wjp-home-guide-card > p {
    margin-bottom: 0;
    color: var(--wjp-color-text-muted);
    font-size: 0.9375rem;
}

.wjp-home-advertising {
    padding: 40px 0;
}

.wjp-home-advertising__heading {
    display: flex;
    margin-bottom: 20px;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.wjp-home-advertising__heading h2 {
    margin: 0;
    color: var(--wjp-color-text);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
}

.wjp-home-advertising__heading a,
.wjp-home-ad-card__content a {
    color: var(--wjp-color-primary-dark);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
}

.wjp-home-advertising__heading a:hover,
.wjp-home-ad-card__content a:hover {
    color: var(--wjp-color-primary);
    text-decoration: underline;
}

.wjp-home-advertising__grid {
    display: grid;
    gap: 16px;
}

.wjp-home-advertising__slider {
    min-width: 0;
    overflow: hidden;
}

.wjp-home-advertising__slider .swiper-wrapper {
    align-items: stretch;
}

.wjp-home-advertising__slider .swiper-slide {
    height: auto;
}

.wjp-home-advertising__slider .wjp-home-ad-card {
    height: 100%;
}

.wjp-home-advertising__pagination {
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wjp-home-advertising__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #fed7aa;
    cursor: pointer;
    transition:
        width 160ms ease,
        background-color 160ms ease;
}

.wjp-home-advertising__dot:hover,
.wjp-home-advertising__dot.is-active {
    background: var(--wjp-color-primary);
}

.wjp-home-advertising__dot.is-active {
    width: 22px;
}

.wjp-home-advertising__dot:focus-visible {
    outline: 2px solid var(--wjp-color-primary-dark);
    outline-offset: 3px;
}

.wjp-home-ad-card {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-md);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-sm);
}

.wjp-home-ad-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wjp-home-ad-card picture {
    display: block;
    width: 100%;
    height: 100%;
}

.wjp-home-ad-card--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wjp-color-white);
}

.wjp-home-ad-card__placeholder-mark {
    width: min(72%, 220px);
    height: 44%;
    border: 1px dashed #d1d5db;
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-background);
}

.wjp-home-ad-card__content {
    display: flex;
    position: absolute;
    left: 16px;
    bottom: 16px;
}

.wjp-home-ad-card__content a {
    display: inline-flex;
    min-height: 36px;
    padding: 8px 12px;
    align-items: center;
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-sm);
}

.wjp-home-section {
    padding: 40px 0;
}

.wjp-home-section--soft {
    background: var(--wjp-color-background);
}

.wjp-home-locations {
    position: relative;
    isolation: isolate;
    background: var(--wjp-home-locations-background, var(--wjp-color-background));
    background-image: var(--wjp-home-locations-background-image, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wjp-home-locations::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: rgba(248, 250, 252, 0.55);
    content: '';
}

.wjp-home-locations > .wjp-container {
    position: relative;
    z-index: 1;
}

.wjp-home-jobs {
    background-color: #fff1e8;
    background-image: linear-gradient(135deg, #ffe0c7 0%, #fff0e5 48%, #fffaf7 100%);
}

.wjp-home-section-heading {
    display: flex;
    margin-bottom: 24px;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.wjp-home-section-heading__content {
    min-width: 0;
}

.wjp-home-section-eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;
    border: 1px solid rgba(240, 90, 0, 0.18);
    border-radius: 999px;
    background: #fff1e8;
    color: var(--wjp-color-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-transform: uppercase;
}

.wjp-home-section-title {
    margin: 0;
    color: #1f2937;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: currentcolor;
    background-clip: initial;
    color: #1f2937;
}

.wjp-home-section-title--featured {
    color: #d94e00;
    background: linear-gradient(90deg, #d94e00 0%, #f05a00 45%, #ff7a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.wjp-home-section-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wjp-home-section-title-row svg {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    color: var(--wjp-color-primary-light);
}

.wjp-home-section-heading > a,
.wjp-home-job-card__link,
.wjp-home-company-card > a {
    font-weight: 700;
    text-decoration: none;
}

.wjp-home-section-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.wjp-home-section-heading > a svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    stroke-width: 2;
}

.wjp-home-job-card:hover,
.wjp-home-company-card:hover,
.wjp-home-guide-card:hover {
    border-color: var(--wjp-color-primary-light);
    box-shadow: var(--wjp-shadow-md);
}

.wjp-home-section-action {
    display: flex;
    margin-top: 24px;
    justify-content: center;
}

.wjp-home-section-action--mobile {
    display: none;
}

.wjp-home-section-action--mobile a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--wjp-color-primary);
    font-size: var(--wjp-text-sm);
    font-weight: 700;
    text-decoration: none;
}

.wjp-home-section-action--mobile a:hover,
.wjp-home-section-action--mobile a:focus-visible {
    color: var(--wjp-color-primary-dark);
}

.wjp-home-section-action--mobile a:focus-visible {
    outline: 2px solid var(--wjp-color-primary);
    outline-offset: 3px;
}

.wjp-home-section-action--mobile a svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    stroke-width: 2;
}

.wjp-home-company-explore {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 0.875rem;
}

.wjp-home-button--secondary {
    border-color: var(--wjp-color-primary);
    background: var(--wjp-color-white);
    color: var(--wjp-color-primary);
}

.wjp-home-button--secondary:hover {
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
}

.wjp-home-job-card {
    position: relative;
    display: flex;
    padding: 16px;
    flex-direction: column;
}

.wjp-home-job-card__overlay-link {
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
}

.wjp-home-job-card__overlay-link:focus-visible {
    outline: 3px solid var(--wjp-color-primary);
    outline-offset: 3px;
}

.wjp-home .wjp-home-job-card .wjp-home-job-card__save {
    display: inline-grid;
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--wjp-color-white);
    color: var(--wjp-color-primary);
    box-shadow: none;
    cursor: pointer;
}

.wjp-home-job-card__save svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.wjp-home-job-card__save.is-saved svg {
    fill: currentcolor;
}

.wjp-home .wjp-home-job-card .wjp-home-job-card__save:hover,
.wjp-home .wjp-home-job-card .wjp-home-job-card__save:focus-visible,
.wjp-home .wjp-home-job-card .wjp-home-job-card__save.is-saved {
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary);
    box-shadow: none;
}

.wjp-home-job-card__top {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
    align-items: stretch;
    gap: 12px;
}

.wjp-home-job-card__top h3 {
    margin-bottom: 4px;
    overflow: hidden;
    font-size: var(--wjp-text-md);
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wjp-home-job-card__top > div {
    min-width: 0;
    flex: 1;
    padding-right: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wjp-home-job-card__company {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wjp-home-job-card__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 12px 0;
    border-top: 1px solid var(--wjp-color-border);
    border-bottom: 1px solid var(--wjp-color-border);
}

.wjp-home-job-card__meta div {
    min-width: 0;
}

.wjp-home-job-card__meta dt,
.wjp-home-job-card__meta dd {
    overflow: hidden;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wjp-home-job-card__meta dt {
    margin-bottom: 3px;
    color: var(--wjp-color-text-muted);
    font-size: 0.75rem;
}

.wjp-home-job-card__meta dd {
    font-size: 0.8125rem;
    font-weight: 700;
}

.wjp-home-job-card__footer {
    display: flex;
    padding-top: 12px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wjp-home-job-card__deadline {
    display: inline-flex;
    gap: 5px;
    color: var(--wjp-color-text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
}

.wjp-home-job-card__deadline svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.wjp-home-job-card__deadline--urgent {
    color: var(--wjp-color-primary-dark);
}

.wjp-job-card__deadline--healthy {
    color: #15803d;
}

.wjp-job-card__deadline--closing {
    color: #dc2626;
}

.wjp-home-job-card__label {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.wjp-home-job-card__label svg {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}

.wjp-home-job-card__label--hot {
    color: var(--wjp-color-primary);
}

.wjp-home-job-card__label--hot svg {
    fill: currentcolor;
}
.wjp-home-job-card__label--hot i svg {
    fill: currentcolor;
}

.wjp-home-job-card__label--popular {
    color: #7c3aed;
}

.wjp-home-job-empty {
    margin: 20px 0 0;
    border: 1px dashed var(--wjp-color-border);
    border-radius: var(--wjp-radius-md);
    padding: 22px;
    color: var(--wjp-color-text-muted);
    text-align: center;
}

.wjp-home-company-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: var(--wjp-radius-sm);
    color: var(--wjp-color-primary-dark);
    font-size: 0.8125rem;
    font-weight: 700;
}

.wjp-home-company-card h3,
.wjp-home-guide-card h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
    line-height: 1.35;
}

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

.wjp-home-company-mark__image {
    display: block;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    object-position: center;
}

.wjp-home-job-card__top .wjp-home-company-mark {
    box-sizing: border-box;
    width: 65px;
    min-width: 52px;
    height: 65px;
    min-height: 52px;
    padding: 4px;
    flex: 0 0 65px;
    align-self: flex-start;
    overflow: hidden;
    background: var(--wjp-color-white);
}

.wjp-home-company-card {
    padding: 20px;
}

.wjp-home-company-card--logo-only {
    display: flex;
    height: 104px;
    padding: 12px;
    align-items: center;
    justify-content: center;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.wjp-home-company-card--logo-only:hover {
    transform: translateY(-2px);
}

.wjp-home-company-card--logo-only a {
    display: flex;
    width: 100%;
    margin-top: 0;
    flex: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.wjp-home-company-card--logo-only .wjp-company-card__logo-wrap {
    display: flex;
    box-sizing: border-box;
    width: min(170px, 100%);
    height: 56px;
    padding: 0;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.wjp-home-company-card__logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.wjp-home-company-card--logo-only .wjp-company-card__logo-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px dashed #d1d5db;
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-primary-soft);
}

.wjp-home-company-card__jobs {
    display: inline-flex;
    gap: 5px;
    color: var(--wjp-color-text);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
}

.wjp-home-company-card__jobs-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    color: currentColor;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.wjp-home-company-card--logo-only a:hover .wjp-home-company-card__jobs,
.wjp-home-company-card--logo-only a:focus-visible .wjp-home-company-card__jobs {
    color: var(--wjp-color-primary-dark);
}

.wjp-home-guide-card {
    display: flex;
    overflow: hidden;
    padding: 0;
    flex-direction: column;
}

.wjp-home-guide-card:nth-child(n + 4) {
    display: none;
}

.wjp-home-company-card .wjp-home-company-mark {
    margin-bottom: 16px;
}

.wjp-home-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wjp-home-location-list a {
    padding: 10px 14px;
    border: 1px solid var(--wjp-color-border);
    border-radius: 999px;
    background: var(--wjp-color-white);
    color: var(--wjp-color-text);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
}

.wjp-home-location-list a:hover {
    border-color: var(--wjp-color-primary);
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
}

@media (max-width: 767px) {
    .wjp-home-career-jobs-list a:nth-child(n + 8) {
        display: none;
    }

    .wjp-home-section-action--mobile {
        display: flex;
        margin-top: 20px;
    }
}

.wjp-home-guide-card > span,
.wjp-home-guide-card__image {
    display: inline-flex;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0 0 16px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.wjp-home-guide-card__image {
    display: block;
    object-fit: cover;
    object-position: center;
}

.wjp-home-guide-card > p:first-of-type {
    margin: 0 16px 8px;
    color: var(--wjp-color-primary-dark);
    font-size: 0.8125rem;
    font-weight: 700;
}

.wjp-home-guide-card h3 {
    margin: 0 16px 8px;
}

.wjp-home-guide-card > p:not(:first-of-type) {
    margin: 0 16px;
}

.wjp-home-guide-card small {
    display: block;
    margin-top: auto;
    padding: 16px;
    color: var(--wjp-color-text-muted);
}

.wjp-home-employer-cta {
    position: relative;
    isolation: isolate;
    padding: 40px 0 56px;
    background-color: var(--wjp-color-background);
    background-image: var(--wjp-home-employer-cta-background-image, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wjp-home-employer-cta::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: rgba(248, 250, 252, 0.28);
    content: '';
}

.wjp-home-employer-cta > .wjp-home-employer-cta__inner {
    position: relative;
    z-index: 1;
}

.wjp-home-employer-cta__inner {
    display: grid;
    gap: 24px;
    padding: 28px;
    border: 1px solid rgba(240, 90, 0, 0.18);
    border-radius: var(--wjp-radius-lg);
    background: rgba(255, 246, 240, 0.88);
    box-shadow: var(--wjp-shadow-sm);
}

.wjp-home-employer-cta__illustration {
    display: flex;
    min-height: 132px;
    align-items: center;
    justify-content: center;
    border-radius: var(--wjp-radius-md);
    background: rgba(240, 90, 0, 0.08);
    color: var(--wjp-color-primary);
}

.wjp-home-employer-cta__illustration svg {
    width: 104px;
    height: 104px;
}

.wjp-home-employer-cta__content {
    min-width: 0;
}

.wjp-home-employer-cta__eyebrow {
    margin: 0 0 8px;
    color: var(--wjp-color-primary-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.wjp-home-employer-cta h2 {
    margin: 0 0 10px;
    color: var(--wjp-color-text);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.wjp-home-employer-cta__description {
    margin: 0;
    color: var(--wjp-color-text-muted);
}

.wjp-home-employer-cta__benefits {
    display: grid;
    margin: 16px 0 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.wjp-home-employer-cta__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--wjp-color-text-muted);
    font-size: 0.875rem;
}

.wjp-home-employer-cta__benefits svg {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--wjp-color-primary);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.wjp-home-employer-cta__learn-more {
    color: var(--wjp-color-primary-dark);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wjp-home-employer-cta__learn-more:hover {
    color: var(--wjp-color-primary);
}

.wjp-home-employer-cta__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.wjp-home-employer-cta__actions .wjp-home-button {
    margin-bottom: 0;
}

.wjp-home a:focus-visible,
.wjp-home button:focus-visible,
.wjp-home input:focus-visible,
.wjp-home select:focus-visible {
    outline: 3px solid var(--wjp-color-primary);
    outline-offset: 3px;
}

@media (min-width: 768px) {
    .wjp-home-hero {
        padding: 72px 0 64px;
    }

    .wjp-home-hero__layout {
        display: grid;
        gap: 24px;
    }

    .wjp-home-hero__login-card {
        margin-top: 0;
        padding: 20px;
        border: 4px solid var(--wjp-color-primary);
        border-top-width: 8px;
        border-radius: var(--wjp-radius-lg);
        background: var(--wjp-color-white);
        box-shadow: 0 18px 36px rgba(240, 90, 0, 0.2);
    }

    .wjp-home-hero__login-card-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
        align-items: center;
        gap: 20px;
    }

    .wjp-home-hero__login-mobile-trigger {
        display: none;
    }

    .wjp-home-search-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 12px;
    }

    .wjp-home-search-form button {
        width: 100%;
    }

    .wjp-home-advertising__grid,
    .wjp-home-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .wjp-home-company-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wjp-home-employer-cta__inner {
        grid-template-columns: minmax(132px, 0.45fr) minmax(0, 1fr);
        padding: 36px;
        align-items: center;
    }

    .wjp-home-employer-cta__actions {
        grid-column: 2;
    }
}

@media (min-width: 1024px) {
    .wjp-home-industries__layout {
        display: grid;
        grid-template-columns: minmax(210px, 230px) minmax(0, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .wjp-home-industries__list {
        order: 1;
        align-self: stretch;
        height: 100%;
    }

    .wjp-home-industries__banner {
        order: 2;
    }

    .wjp-home-industries__label {
        white-space: nowrap;
    }

    .wjp-home-category-all__label {
        white-space: nowrap;
    }

    .wjp-home-category-all {
        margin-top: auto;
    }

    .wjp-home-search-form {
        grid-template-columns:
            minmax(0, 1.2fr) minmax(160px, 0.8fr) minmax(160px, 0.8fr)
            auto;
    }

    .wjp-home-search-form button {
        width: auto;
        min-width: 132px;
    }

    .wjp-home-section {
        padding: 64px 0;
    }

    .wjp-home-advertising {
        padding: 56px 0;
    }

    .wjp-home-advertising__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .wjp-home-company-grid {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .wjp-home-guide-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wjp-home-employer-cta__inner {
        grid-template-columns: 150px minmax(0, 1fr) auto;
        padding: 32px;
    }

    .wjp-home-employer-cta__actions {
        grid-column: auto;
        justify-self: end;
    }
}

@media (max-width: 479px) {
    .wjp-home-industries__list ul {
        grid-template-columns: 1fr;
    }

    .wjp-home-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .wjp-home-search-form button,
    .wjp-home-button {
        width: 100%;
    }

    .wjp-home-employer-cta__actions .wjp-home-button {
        width: auto;
    }

    .wjp-home-section-action .wjp-home-company-explore {
        width: auto;
    }
}

@media (max-width: 1023px) {
    .wjp-home-multiselect__options {
        left: auto;
        right: 0;
    }
}

/* Shared home typography, aligned with the global front-end scale. */
.wjp-home {
    font-size: var(--wjp-text-base);
    line-height: var(--wjp-line-normal);
}

.wjp-home-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.22;
}

.wjp-home-hero__description {
    font-size: var(--wjp-text-md);
    line-height: var(--wjp-line-normal);
}

.wjp-home-eyebrow,
.wjp-home-section-eyebrow,
.wjp-home-employer-cta__eyebrow,
.wjp-home-guide-card > p:first-of-type {
    font-size: var(--wjp-text-sm);
}

.wjp-home-search-form__field input,
.wjp-home-search-form__field select,
.wjp-home-multiselect summary,
.wjp-home-location-select summary,
.wjp-home-search-form button,
.wjp-home-button,
.wjp-home-keywords,
.wjp-home-location-list a {
    font-size: var(--wjp-text-sm);
}

.wjp-home-keyword-suggestions__section h2,
.wjp-home-search-form .wjp-home-keyword-suggestions__item,
.wjp-home-search-form .wjp-home-multiselect__search input,
.wjp-home-search-form .wjp-home-location-select__search input,
.wjp-home-multiselect__options label,
.wjp-home-location-select__options label {
    font-size: var(--wjp-text-sm);
}

.wjp-home-keyword-suggestions__empty,
.wjp-home-multiselect__selected-item {
    font-size: var(--wjp-text-xs);
}

.wjp-home-industries__list h2,
.wjp-home-company-card h3,
.wjp-home-guide-card h3 {
    font-size: var(--wjp-heading-sm);
    line-height: 1.3;
}

.wjp-home-industries__list a,
.wjp-home-category-all,
.wjp-home-job-card__company,
.wjp-home-company-card p,
.wjp-home-guide-card > p,
.wjp-home-employer-cta__benefits li {
    font-size: var(--wjp-text-sm);
}

.wjp-home-section-title,
.wjp-home-employer-cta h2 {
    font-size: var(--wjp-heading-md);
    line-height: var(--wjp-line-tight);
}

.wjp-home-advertising__heading h2 {
    font-size: var(--wjp-heading-md);
}

.wjp-home-job-card__meta dt,
.wjp-home-job-card__meta dd,
.wjp-home-job-card__deadline,
.wjp-home-company-mark,
.wjp-home-company-card__jobs,
.wjp-home-guide-card small {
    font-size: var(--wjp-text-xs);
}

.wjp-home-advertising__heading a,
.wjp-home-ad-card__content a,
.wjp-home-employer-cta__learn-more,
.wjp-home-company-explore {
    font-size: var(--wjp-text-sm);
}

.wjp-home-job-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.wjp-home-job-pagination[hidden] {
    display: none;
}

.wjp-home-job-grid > .wjp-home-job-card[hidden] {
    display: none;
}

.wjp-home-job-grid.is-page-transitioning {
    will-change: opacity, transform;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: both;
}

.wjp-home-job-grid.is-moving-forward {
    animation-name: wjp-home-job-page-enter-forward;
}

.wjp-home-job-grid.is-moving-backward {
    animation-name: wjp-home-job-page-enter-backward;
}

@keyframes wjp-home-job-page-enter-forward {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

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

@keyframes wjp-home-job-page-enter-backward {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .wjp-home-job-grid.is-page-transitioning {
        animation: none;
    }

    .wjp-home .wjp-home-hero__inner--with-login .wjp-home-hero__login-card {
        animation: none;
        transition: none;
    }
}

.wjp-home-job-pagination__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--wjp-color-border);
    border-radius: 50%;
    background: var(--wjp-color-white);
    color: var(--wjp-color-primary);
    cursor: pointer;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
}

.wjp-home-job-pagination__button svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.wjp-home-job-pagination__button:hover:not(:disabled),
.wjp-home-job-pagination__button:focus-visible:not(:disabled) {
    border-color: #f05a00;
    background: #fff3eb;
    color: #d94e00;
    box-shadow: none;
}

.wjp-home-job-pagination__button:active:not(:disabled) {
    border-color: #d94e00;
    background: #fff3eb;
    color: #d94e00;
    box-shadow: none;
    transform: none;
}

button.wjp-home-job-pagination__button:focus:not(:focus-visible) {
    border-color: var(--wjp-color-border);
    background: var(--wjp-color-white);
    color: var(--wjp-color-primary);
    outline: 0;
    box-shadow: none;
}

button.wjp-home-job-pagination__button:focus-visible {
    outline: 2px solid var(--wjp-color-primary);
    outline-offset: 3px;
}

.wjp-home-job-pagination__button:disabled {
    border-color: var(--wjp-color-border);
    background: #f8fafc;
    color: var(--wjp-color-text-muted);
    cursor: default;
    opacity: 0.7;
}

.wjp-home-job-pagination__status {
    min-width: 42px;
    color: var(--wjp-color-text);
    font-size: var(--wjp-text-sm);
    font-weight: 600;
    text-align: center;
}

@media (min-width: 1280px) {
    .wjp-home-hero__inner--with-login {
        width: min(calc(100% - 48px), var(--wjp-container-width));
        max-width: var(--wjp-container-width);
    }

    .wjp-home-hero__inner--with-login .wjp-home-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 340px);
        gap: 32px;
        align-items: start;
    }

    .wjp-home-hero__inner--with-login .wjp-home-hero__content {
        max-width: 820px;
    }

    .wjp-home-hero__inner--with-login .wjp-home-hero__login-card {
        position: relative;
        margin-top: 30px;
        padding: 28px;
        box-shadow: 0 18px 36px rgba(240, 90, 0, 0.2);
        animation: wjp-home-login-card-intro 480ms ease-out both;
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .wjp-home-hero__inner--with-login .wjp-home-hero__login-card:hover {
        box-shadow: 0 26px 48px rgba(240, 90, 0, 0.42);
        transform: translateY(-6px);
    }

    .wjp-home-hero__inner--with-login .wjp-home-hero__login-card-content {
        display: block;
    }

    .wjp-home-hero__inner--with-login .wjp-home-hero__login-actions {
        margin-top: 20px;
    }
}

@keyframes wjp-home-login-card-intro {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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