.jobs-heading {
    padding: 10px 0 22px;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 94% 60%, transparent 0 92px, rgba(196, 0, 11, .04) 93px 94px, transparent 95px 122px, rgba(196, 0, 11, .03) 123px 124px, transparent 125px), #fff;
}

.jobs-breadcrumb {
    margin-bottom: 8px;
    color: #8b929d;
    font-size: 12px;
}

.jobs-breadcrumb a {
    color: #8b929d;
}

.jobs-breadcrumb .active {
    color: var(--brand);
}

.jobs-heading-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.jobs-heading h1 {
    margin: 0 0 6px;
    font-size: clamp(2.3rem, 3vw, 3.3rem);
    font-weight: 700;
    letter-spacing: 0;
}

.jobs-heading h1 span {
    color: var(--brand);
}

.jobs-heading p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.jobs-heading-icon {
    color: rgba(196, 0, 11, .28);
}

.jobs-wrap {
    padding: 26px 0 42px;
    background: #fff;
}

.filters-panel {
    overflow: hidden;
}

.filters-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
}

.filters-heading strong {
    font-size: 14px;
}

.filters-heading a {
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
}

.filter-block {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
}

.filter-block h2 {
    margin: 0 0 11px;
    font-size: 13px;
    font-weight: 700;
}

.search-box {
    position: relative;
}

.search-box input {
    height: 40px;
    padding-right: 38px;
    border-color: var(--line);
    font-size: 12px;
}

.search-box svg {
    position: absolute;
    top: 11px;
    right: 12px;
    color: #525a66;
    pointer-events: none;
}

.filter-options {
    display: grid;
    gap: 7px;
}

.filter-options--scroll {
    max-height: 224px;
    padding-right: 5px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.filters-panel .form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 1.25rem;
    margin: 0;
    padding-left: 0;
}

.filters-panel .form-check-input {
    float: none;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin: 1px 0 0;
    border-color: #bfc5cd;
    border-radius: 3px !important;
}

.filters-panel .form-check-input:checked {
    border-color: var(--brand);
    background-color: var(--brand);
}

.filters-panel .form-check-label {
    color: #48505b;
    font-size: 12px;
    line-height: 1.35;
}

.filters-panel .form-check-label small {
    color: #9299a3;
    font-size: 11px;
}

.filter-mobile-button {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
}

.filter-mobile-button strong {
    display: grid;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    place-items: center;
    border-radius: 20px;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
}

.jobs-toolbar {
    min-height: 42px;
    margin-bottom: 14px;
}

.jobs-count {
    margin: 0;
    color: #626a76;
    font-size: 13px;
}

.jobs-count strong {
    color: #202733;
}

.sort-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4f5662;
    font-size: 13px;
}

.sort-select {
    width: 190px;
    height: 38px;
    border-color: var(--line);
    font-size: 12px;
}

.jobs-list {
    display: grid;
    gap: 14px;
}

.job-card {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 155px;
    gap: 20px;
    align-items: center;
    min-height: 128px;
    padding: 20px 22px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 0, 11, .2);
    box-shadow: 0 12px 28px rgba(20, 26, 36, .08);
}

.job-card--featured {
    border-left: 3px solid var(--brand);
}

.job-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
}

.job-title-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 5px;
}

.job-main h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.job-main h2 a {
    color: #151b27;
}

.job-main h2 a:hover {
    color: var(--brand);
}

.job-featured-badge {
    padding: 4px 8px;
    border-radius: 20px;
    background: #fff1cf;
    color: #8b6200;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.job-company {
    margin: 0 0 7px;
    color: #343c48;
    font-size: 12px;
    font-weight: 600;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-bottom: 9px;
    color: #66707d;
    font-size: 11px;
}

.job-meta span {
    position: relative;
}

.job-meta span:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -11px;
    width: 3px;
    height: 3px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #b8bec6;
    content: "";
}

.job-summary {
    margin: 0;
    color: #596270;
    font-size: 12px;
    line-height: 1.55;
}

.job-side {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    color: #838b96;
    font-size: 11px;
    text-align: right;
}

.job-side a {
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
}

.jobs-empty {
    display: grid;
    min-height: 360px;
    padding: 44px 28px;
    place-items: center;
    align-content: center;
    text-align: center;
}

.jobs-empty-icon {
    margin-bottom: 18px;
    color: rgba(196, 0, 11, .55);
}

.jobs-empty h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.jobs-empty p {
    max-width: 480px;
    margin: 0 0 22px;
    color: #68717d;
    font-size: 13px;
}

.jobs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.jobs-pagination a,
.jobs-pagination span {
    display: grid;
    min-width: 35px;
    height: 35px;
    padding: 0 7px;
    place-items: center;
    border-radius: 5px;
    color: #313946;
    font-size: 13px;
}

.jobs-pagination a {
    border: 1px solid var(--line);
    background: #fff;
}

.jobs-pagination a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.jobs-pagination .active {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
}

.jobs-pagination .disabled {
    border: 1px solid #edf0f3;
    color: #b8bec6;
}

.jobs-pagination .ellipsis {
    min-width: 20px;
    padding: 0;
}

.jobs-resume-cta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
    padding: 24px 30px;
    background: linear-gradient(100deg, #fff7f7, #fff);
}

.jobs-resume-icon {
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
}

.jobs-resume-cta > div:nth-child(2) {
    flex: 1;
}

.jobs-resume-cta h2 {
    margin: 0 0 5px;
    font-size: 19px;
}

.jobs-resume-cta p {
    margin: 0;
    color: #596270;
    font-size: 13px;
}

.jobs-resume-cta .btn {
    min-width: 225px;
    justify-content: space-between;
}

@media (max-width: 991.98px) {
    .jobs-heading-content {
        align-items: flex-start;
    }

    .jobs-heading-icon {
        display: none;
    }

    .filter-mobile-button {
        display: flex;
    }

    .filters-panel {
        display: none;
        margin-bottom: 18px;
    }

    .filters-panel.show-mobile {
        display: block;
    }

    .jobs-toolbar {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .job-card {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .job-side {
        grid-column: 2;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .jobs-resume-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .jobs-resume-cta .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .jobs-heading {
        padding-top: 14px;
    }

    .job-card {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 13px;
        padding: 16px;
    }

    .job-icon {
        width: 50px;
        height: 50px;
    }

    .job-icon svg {
        width: 29px;
        height: 29px;
    }

    .job-main h2 {
        font-size: 16px;
    }

    .job-featured-badge {
        font-size: 9px;
    }

    .job-meta {
        gap: 5px 15px;
    }

    .job-meta span:not(:last-child)::after {
        right: -8px;
    }

    .job-side {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sort-label,
    .sort-select {
        width: 100%;
    }

    .sort-label {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .jobs-pagination {
        gap: 4px;
    }

    .jobs-pagination a,
    .jobs-pagination span {
        min-width: 32px;
        height: 32px;
    }

    .jobs-resume-cta {
        padding: 22px;
    }
}
