.jis-jobs-section,
.jis-job-single {
    --jis-ink: #111827;
    --jis-muted: #4b5563;
    --jis-line: #e5e7eb;
    --jis-blue-bg: #edf7ff;
    --jis-navy: #071330;
    --jis-yellow: #ffe891;
    --jis-blue: #cfeeff;
    --jis-green: #c9f4d1;
}

.jis-jobs-section {
    color: var(--jis-ink);
    font-family: inherit;
    padding: 72px 20px;
    background: #fff;
}

.jis-jobs-section--archive {
    padding-top: 88px;
}

.jis-jobs-section__inner {
    width: min(100%, 1320px);
    margin: 0 auto;
}

.jis-jobs-heading {
    margin-bottom: 28px;
}

.jis-jobs-heading__kicker {
    display: inline-block;
    position: relative;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.jis-jobs-heading__kicker::after {
    content: "";
    display: block;
    width: 31px;
    height: 4px;
    margin-top: 6px;
    background: #f7d526;
}

.jis-jobs-heading h1,
.jis-jobs-heading h2 {
    margin: 0 0 18px;
    color: var(--jis-ink);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0;
}

.jis-jobs-heading p {
    margin: 0;
    color: var(--jis-muted);
    font-size: 16px;
    line-height: 1.8;
}

.jis-job-search {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 166px;
    gap: 20px;
    align-items: end;
    margin: 0 0 22px;
    padding: 22px;
    border-radius: 8px;
    background: var(--jis-blue-bg);
}

.jis-job-search__field {
    display: block;
    min-width: 0;
    padding: 13px 17px 10px;
    border-radius: 7px;
    background: #fff;
}

.jis-job-search__field span {
    display: block;
    margin-bottom: 4px;
    color: var(--jis-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.jis-job-search__field select {
    width: 100%;
    min-height: 28px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--jis-ink);
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.jis-job-search__button,
.jis-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 62px;
    border-radius: 7px;
    border: 1px solid var(--jis-navy);
    color: var(--jis-ink);
    background: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.jis-job-search__button {
    width: 100%;
    border-color: var(--jis-navy);
    background: var(--jis-navy);
    color: #fff;
}

.jis-button:hover,
.jis-job-search__button:hover,
.jis-job-card__link:hover {
    transform: translateY(-2px);
}

.jis-job-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.jis-job-card {
    overflow: hidden;
    border: 1px solid var(--jis-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .09);
}

.jis-job-card__link {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    transition: transform .18s ease;
}

.jis-job-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6.7;
    overflow: hidden;
    background: #eef2f7;
}

.jis-job-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jis-job-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #edf7ff 0%, #f7fbff 48%, #fff4c4 100%);
}

.jis-job-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 27px 29px;
}

.jis-job-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 16px;
}

.jis-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 4px 14px;
    border-radius: 999px;
    background: var(--jis-green);
    color: #06712b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.jis-tag--yellow {
    background: var(--jis-yellow);
    color: #332900;
}

.jis-tag--blue {
    background: var(--jis-blue);
    color: #0070a8;
}

.jis-tag--green {
    background: var(--jis-green);
    color: #087734;
}

.jis-job-card h3 {
    margin: 0 0 12px;
    color: var(--jis-ink);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
}

.jis-job-card__facility {
    margin: 0 0 14px;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
}

.jis-job-card__meta {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 14px;
    color: #374151;
    font-size: 15px;
    line-height: 1.65;
}

.jis-job-card__meta--pin {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--jis-line);
}

.jis-job-card__meta-label {
    flex: 0 0 auto;
    font-weight: 700;
}

.jis-job-card__salary {
    margin: 0 0 15px;
    color: var(--jis-ink);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.jis-job-card__salary::first-letter {
    font-size: 15px;
    font-weight: 700;
}

.jis-job-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    margin-top: auto;
    padding: 0 23px;
    border: 1px solid #aeb4bd;
    border-radius: 999px;
    color: var(--jis-ink);
    font-size: 16px;
    font-weight: 800;
}

.jis-jobs-section__more {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.jis-button--outline {
    min-width: min(100%, 364px);
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    background: #fff;
}

.jis-button--primary {
    min-width: min(100%, 420px);
    min-height: 64px;
    padding: 0 34px;
    border-color: var(--jis-navy);
    background: var(--jis-navy);
    color: #fff;
}

.jis-jobs-empty {
    margin: 28px 0 0;
    padding: 26px;
    border-radius: 8px;
    background: #f8fafc;
    color: var(--jis-muted);
    text-align: center;
}

.jis-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.jis-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--jis-line);
    border-radius: 6px;
    color: var(--jis-ink);
    text-decoration: none;
}

.jis-pagination .current {
    border-color: var(--jis-navy);
    background: var(--jis-navy);
    color: #fff;
}

.jis-job-single {
    padding: 72px 20px;
    background: #fff;
}

.jis-job-detail {
    width: min(100%, 1080px);
    margin: 0 auto;
}

.jis-job-detail__hero {
    overflow: hidden;
    border: 1px solid var(--jis-line, #e5e7eb);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.jis-job-detail__hero img {
    width: 100%;
    aspect-ratio: 16 / 6;
    object-fit: cover;
    display: block;
}

.jis-job-detail__head {
    padding: 34px 38px 36px;
}

.jis-job-detail__head h1 {
    margin: 0 0 14px;
    color: var(--jis-ink, #111827);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: 0;
}

.jis-job-detail__facility {
    margin: 0;
    color: #374151;
    font-size: 18px;
    line-height: 1.7;
}

.jis-job-detail__body {
    margin-top: 30px;
}

.jis-job-detail__summary,
.jis-job-detail__description {
    border: 1px solid var(--jis-line, #e5e7eb);
    border-radius: 8px;
    background: #fff;
}

.jis-job-detail__row {
    display: grid;
    grid-template-columns: 190px 1fr;
    margin: 0;
    border-bottom: 1px solid var(--jis-line, #e5e7eb);
}

.jis-job-detail__row:last-child {
    border-bottom: 0;
}

.jis-job-detail__row dt,
.jis-job-detail__row dd {
    margin: 0;
    padding: 18px 22px;
    line-height: 1.8;
}

.jis-job-detail__row dt {
    background: #f7fbff;
    color: var(--jis-ink, #111827);
    font-weight: 800;
}

.jis-job-detail__row dd {
    color: #374151;
}

.jis-job-detail__description {
    margin-top: 28px;
    padding: 30px 34px;
}

.jis-job-detail__description h2 {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0;
}

.jis-job-detail__description p {
    margin: 0 0 1em;
    color: #374151;
    line-height: 1.9;
}

.jis-job-detail__apply,
.jis-job-detail__closed {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.jis-job-detail__closed {
    padding: 22px;
    border-radius: 8px;
    background: #f8fafc;
    color: #6b7280;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .jis-jobs-section {
        padding: 58px 20px;
    }

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

    .jis-job-search__button {
        grid-column: 1 / -1;
    }

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

@media (max-width: 640px) {
    .jis-jobs-section,
    .jis-job-single {
        padding: 44px 16px;
    }

    .jis-jobs-heading {
        margin-bottom: 22px;
    }

    .jis-jobs-heading h1,
    .jis-jobs-heading h2 {
        font-size: 31px;
    }

    .jis-job-search {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .jis-job-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jis-job-card__image {
        aspect-ratio: 16 / 8.2;
    }

    .jis-job-card__content {
        padding: 22px 20px 24px;
    }

    .jis-job-card h3 {
        font-size: 21px;
    }

    .jis-job-card__salary {
        font-size: 22px;
    }

    .jis-job-detail__head {
        padding: 26px 22px 28px;
    }

    .jis-job-detail__hero img {
        aspect-ratio: 16 / 9;
    }

    .jis-job-detail__row {
        grid-template-columns: 1fr;
    }

    .jis-job-detail__row dt {
        padding-bottom: 8px;
    }

    .jis-job-detail__row dd {
        padding-top: 8px;
    }

    .jis-job-detail__description {
        padding: 24px 22px;
    }
}
