.jobs-hero {
    padding: 10px 0 10px;
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(39, 136, 59, 0.1),
            rgba(39, 136, 59, 0.1) 55%
        ),
        linear-gradient(180deg, rgba(240, 245, 244, 0.95), #ffffff);
}

.jobs-hero__content {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.jobs-hero__title {
    margin: 0 0 12px;
    font-size: 38px;
    font-weight: 800;
    color: #111;
}

.jobs-hero__subtitle {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.jobs-hero__search {
    margin: 0;
}

.jobs-searchbar {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.jobs-searchbar__group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 12px;
    min-height: 54px;
}

.jobs-searchbar__icon {
    color: #9ca3af;
    font-size: 16px;
    margin-right: 10px;
}

.jobs-searchbar__input.form-control {
    border: 0;
    box-shadow: none;
    height: 54px;
    padding: 0;
    font-size: 14px;
}

.jobs-searchbar__divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.jobs-searchbar__btnwrap {
    padding: 8px;
    display: flex;
    align-items: center;
}

.jobs-searchbar__btn.btn {
    height: 38px;
    padding: 0 22px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.jobs-list {
    padding: 20px 0 20px;
    background: #f5fafd;
}

.jobs-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #fbfcfe;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 18px;
}

.jobs-toolbar__left,
.jobs-toolbar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jobs-toolbar__count {
    color: #6b7280;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.jobs-filter {
    position: relative;
}

.jobs-filter__icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    pointer-events: none;
}

.jobs-filter__control.form-control {
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    padding-left: 34px;
    font-size: 13px;
    min-width: 160px;
    box-shadow: none;
}

.jobs-filter--sort .jobs-filter__control.form-control {
    min-width: 180px;
    padding-left: 12px;
}

.job-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    transition:
        box-shadow 220ms ease,
        transform 220ms ease,
        border-color 220ms ease;
}

.job-card__accent {
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: #27883b;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 220ms ease;
}

.job-card__logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(39, 136, 59, 0.12);
    color: #27883b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.job-card__main {
    flex: 1;
    min-width: 0;
}

.job-card__titlewrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.job-card__title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
}

.job-card__title:hover,
.job-card__title:focus {
    color: #27883b;
    text-decoration: none;
}

.job-card__company {
    margin-top: 6px;
    color: #6b7280;
    font-size: 13px;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-dot {
    margin: 0 6px;
    color: #c1c7d0;
}

.job-badge {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.job-badge--new {
    background: green;
    color: white;
}

.job-badge--featured {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.job-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.job-card__meta .job-pill {
    background: green;
    color: white;
}

.job-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: green;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.job-pill i {
    font-size: 12px;
    color: white;
}

.job-card__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
}

.job-card__bookmark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.job-card__bookmark:hover,
.job-card__bookmark:focus {
    background: rgba(39, 136, 59, 0.1);
    color: #27883b;
    text-decoration: none;
}

.job-card:hover {
    transform: translateY(-1px);
    border-color: rgba(39, 136, 59, 0.25);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.job-card:hover .job-card__accent {
    opacity: 1;
}

.job-details-hero {
    padding: 4px 0 4px;
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(39, 136, 59, 0.1),
            rgba(39, 136, 59, 0.04) 55%
        ),
        linear-gradient(180deg, rgba(245, 250, 253, 0.96), #ffffff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.job-details-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 16px;
}

.job-details-back:hover,
.job-details-back:focus {
    color: #27883b;
    text-decoration: none;
}

.job-details-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.job-details-head__logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(39, 136, 59, 0.12);
    color: #27883b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    flex: 0 0 auto;
}

.job-details-head__main {
    min-width: 0;
    flex: 1;
}

.job-details-head__title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.job-details-head__title {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
}

.job-tag {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.3px;
}

.job-tag--new {
    background: rgba(39, 136, 59, 0.12);
    color: #27883b;
}

.job-details-head__meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-details-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
}

.job-details-meta i {
    color: #9ca3af;
}

.job-details-body {
    padding: 5px 0 5px;
    background: #f5fafd;
}

.job-details-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.job-details-card__title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 900;
    color: #111827;
}

.job-details-card__text {
    margin: 0 0 12px;
    color: #4b5563;
    line-height: 1.9;
}

.job-details-card__text a {
    color: #27883b;
    text-decoration: underline;
    word-break: break-word;
}

.job-details-subtitle {
    margin: 18px 0 10px;
    font-size: 14px;
    font-weight: 900;
    color: #111827;
}

.job-details-subtitle2 {
    margin: 14px 0 8px;
    font-size: 13px;
    font-weight: 900;
    color: #111827;
}

.job-details-list {
    margin: 0 0 14px;
    padding-left: 18px;
    color: #4b5563;
    line-height: 1.8;
}

.job-details-list li {
    margin-bottom: 8px;
}

.job-about-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-about-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.job-about-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(39, 136, 59, 0.12);
    color: #27883b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.job-about-label {
    font-size: 11px;
    font-weight: 900;
    color: #6b7280;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.job-about-value {
    font-size: 13px;
    font-weight: 800;
    color: #111827;
}

.job-details-apply {
    margin-top: 14px;
    width: 100%;
    padding: 12px 14px;
    font-weight: 900;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.job-details-similar {
    padding: 0 0 70px;
    background: #f5fafd;
}

.job-details-similar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 14px;
}

.job-details-similar__title {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: #111827;
}

.job-details-similar__link {
    color: #27883b;
    font-weight: 800;
    text-decoration: none;
}

.job-details-similar__link:hover,
.job-details-similar__link:focus {
    text-decoration: underline;
    color: #1f7331;
}

@media (min-width: 992px) {
    .job-details-body .col-md-4 {
        position: sticky;
        top: 110px;
        align-self: flex-start;
    }
}

@media (max-width: 767px) {
    .jobs-hero {
        padding: 25px 0 40px;
    }
    .jobs-hero__title {
        font-size: 28px;
    }
    .jobs-searchbar {
        flex-direction: column;
    }
    .jobs-searchbar__divider {
        width: 100%;
        height: 1px;
    }
    .jobs-searchbar__btnwrap {
        justify-content: stretch;
    }
    .jobs-searchbar__btn.btn {
        width: 100%;
        justify-content: center;
        height: 44px;
    }

    .jobs-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .jobs-toolbar__left,
    .jobs-toolbar__right {
        justify-content: space-between;
    }
    .jobs-filter__control.form-control {
        min-width: 0;
        width: 100%;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .job-card__meta {
        justify-content: flex-start;
    }
    .job-card__actions {
        width: auto;
        align-self: flex-end;
    }

    .job-details-head__title {
        font-size: 22px;
    }
    .job-details-head {
        align-items: flex-start;
    }
}

.job-details-body p,
.job-details-body ul li {
    font-size: 16px;
}
