.jobs-page {
    min-height: 100vh;
    padding: 56px 20px;
    background: linear-gradient(135deg, #f7fff9, #e9fff1 55%, #fff);
    color: #173e2a
}

.jobs-shell {
    max-width: 1180px;
    margin: auto
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px
}

.jobs-kicker {
    color: #1d9b54;
    font-weight: 700
}

.jobs-header h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 8px 0
}

.jobs-header p {
    color: #668072
}

.jobs-header-icon {
    font-size: 90px;
    color: #38b96d;
    opacity: .35
}

.jobs-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px;
    background: #fff;
    border: 1px solid #dceee3;
    border-radius: 18px;
    box-shadow: 0 16px 40px #1d9b5414;
    margin-bottom: 30px
}

.jobs-filters label:not(.jobs-check) {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 220px;
    border: 1px solid #dceee3;
    border-radius: 10px;
    padding: 10px 14px
}

.jobs-filters input:not([type=checkbox]) {
    border: 0;
    outline: 0;
    width: 100%;
    font: inherit
}

.jobs-check {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 10px
}

.jobs-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    background: #209b55;
    color: #fff;
    text-decoration: none;
    font: inherit;
    cursor: pointer
}

.jobs-button.secondary {
    background: #e8faee;
    color: #1d9751
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px
}

.job-card,
.job-details,
.jobs-empty {
    background: #fff;
    border: 1px solid #dceee3;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 16px 36px #1d9b5412
}

.job-card-top {
    display: flex;
    justify-content: space-between;
    color: #31ab62;
    font-size: 28px;
}

.job-status {
    display: inline-block;
    font-size: 12px;
    background: #e8faee;
    color: #198b4a;
    padding: 10px 10px;
    border-radius: 30px
}

.job-card h2 {
    font-size: 1.35rem;
    margin: 20px 0 5px
}

.job-company {
    font-weight: 700;
    color: #56806a
}

.job-description {
    color: #6b8075;
    line-height: 1.8;
    min-height: 58px
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #597566;
    font-size: .9rem;
    margin: 18px 0
}

.job-meta span {
    display: inline-flex;
    gap: 5px
}

.job-details {
    max-width: 850px;
    margin: 22px auto
}

.job-details-icon {
    font-size: 48px;
    color: #2aa65e
}

.job-details h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin: 15px 0 5px
}

.job-details h2 {
    color: #56806a;
    font-size: 1.2rem
}

.job-details section {
    border-top: 1px solid #e1eee5;
    padding-top: 20px;
    margin-top: 24px;
    line-height: 2
}

.jobs-back {
    color: #198b4a;
    text-decoration: none
}

.jobs-empty {
    text-align: center;
    margin-top: 30px
}

.jobs-empty i {
    font-size: 45px;
    color: #36ad67
}

@media(max-width:600px) {
    .jobs-header-icon {
        display: none
    }

    .jobs-page {
        padding: 32px 14px
    }

    .jobs-button {
        justify-content: center
    }
}