.ce-job-v2 {
    width: 100%;
    min-height: 100vh;
    background: #f6f8fb;
    padding: 0 0 80px;
    color: #172033;
}

    .ce-job-v2 *,
    .ce-job-v2 *::before,
    .ce-job-v2 *::after {
        box-sizing: border-box;
    }

.ce-job-v2__container {
    width: calc(100% - 48px);
    max-width: 1180px;
    margin: 0 auto;
}


/* Breadcrumb
-------------------------------------------------- */

.ce-job-v2__breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 64px;
    overflow: hidden;
    font-size: 13px;
    color: #8993a4;
    white-space: nowrap;
}

    .ce-job-v2__breadcrumb a {
        color: #667085;
        text-decoration: none;
        transition: color .15s ease;
    }

        .ce-job-v2__breadcrumb a:hover {
            color: #168de2;
        }

.ce-job-v2__breadcrumb-current {
    overflow: hidden;
    text-overflow: ellipsis;
    color: #98a2b3;
}


/* Hero
-------------------------------------------------- */

.ce-job-hero {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .03), 0 10px 35px rgba(16, 24, 40, .045);
}

.ce-job-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 48px 52px 50px;
}


/* Employer
-------------------------------------------------- */

.ce-job-hero__employer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.ce-job-hero__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e7ebf0;
    border-radius: 13px;
}

    .ce-job-hero__logo img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.ce-job-hero__employer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ce-job-hero__company {
    display: inline-block;
    color: #172033;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    text-decoration: none;
}

a.ce-job-hero__company:hover {
    color: #168de2;
}

.ce-job-hero__eyebrow {
    color: #7b8494;
    font-size: 13px;
    line-height: 1.4;
}


/* Title
-------------------------------------------------- */

.ce-job-hero__title {
    max-width: 820px;
    margin: 0 0 28px;
    color: #101828;
    font-size: 38px;
    line-height: 1.16;
    letter-spacing: -0.8px;
    font-weight: 700;
}


/* Metadata
-------------------------------------------------- */

.ce-job-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.ce-job-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    background: #f7f9fc;
    border: 1px solid #eaedf2;
    border-radius: 9px;
    color: #4d596a;
    font-size: 14px;
    line-height: 1.35;
}

    .ce-job-hero__meta-item strong {
        color: #344054;
        font-weight: 600;
    }

.ce-job-hero__meta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    color: #168de2;
}

    .ce-job-hero__meta-icon svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


/* Apply
-------------------------------------------------- */

.ce-job-hero__action {
    display: flex;
    flex: 0 0 220px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.ce-job-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    background: #168eea;
    border: 1px solid #168eea;
    border-radius: 10px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 5px 14px rgba(22, 142, 234, .20);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

    .ce-job-apply span {
        font-size: 20px;
        line-height: 1;
        transition: transform .18s ease;
    }

    .ce-job-apply:hover {
        background: #087fd8;
        box-shadow: 0 7px 18px rgba(22, 142, 234, .28);
        transform: translateY(-1px);
    }

        .ce-job-apply:hover span {
            transform: translateX(3px);
        }

.ce-job-hero__published {
    color: #98a2b3;
    font-size: 12px;
    text-align: center;
}


/* Responsive
-------------------------------------------------- */

@media (max-width: 900px) {

    .ce-job-hero {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
        padding: 34px;
    }

    .ce-job-hero__action {
        width: 100%;
        flex: none;
    }

    .ce-job-hero__title {
        font-size: 31px;
    }

    .ce-job-hero__published {
        text-align: left;
    }
}

@media (max-width: 600px) {

    .ce-job-v2__container {
        width: calc(100% - 28px);
        padding-top: 20px;
    }

    .ce-job-hero {
        padding: 26px 22px 24px 26px;
        border-radius: 14px;
    }

    .ce-job-hero__title {
        margin-bottom: 22px;
        font-size: 27px;
        line-height: 1.22;
        letter-spacing: -.4px;
    }

    .ce-job-hero__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .ce-job-meta--deadline {
        padding-left: 0;
        border-left: 0;
    }

    .ce-job-meta__label {
        display: block;
        margin: 0;
    }

    .ce-job-hero__employer {
        margin-bottom: 18px;
    }

    .ce-job-hero__logo {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
}

/* ==========================================================
   JOB CONTENT LAYOUT
   ========================================================== */

.ce-job-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
    margin-top: 28px;
}


/* Main content
-------------------------------------------------- */

.ce-job-content {
    min-width: 0;
}

.ce-job-card {
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .025);
}

.ce-job-description {
    padding: 42px 46px 48px;
}

.ce-job-section-heading {
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid #edf0f4;
}

.ce-job-section-heading__eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #168de2;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.ce-job-section-heading h2 {
    margin: 0;
    color: #101828;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
}


/* Imported job description
-------------------------------------------------- */

.ce-job-description__body {
    max-width: 760px;
    color: #344054;
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: break-word;
}

    .ce-job-description__body h1,
    .ce-job-description__body h2,
    .ce-job-description__body h3,
    .ce-job-description__body h4 {
        color: #172033;
        line-height: 1.3;
        font-weight: 700;
    }

    .ce-job-description__body h1 {
        margin: 36px 0 16px;
        font-size: 25px;
    }

    .ce-job-description__body h2 {
        margin: 34px 0 14px;
        font-size: 22px;
    }

    .ce-job-description__body h3 {
        margin: 30px 0 12px;
        font-size: 18px;
    }

    .ce-job-description__body h4 {
        margin: 26px 0 10px;
        font-size: 16px;
    }

    .ce-job-description__body p {
        margin: 0 0 18px;
    }

    .ce-job-description__body ul,
    .ce-job-description__body ol {
        margin: 0 0 22px;
        padding-left: 24px;
    }

    .ce-job-description__body li {
        margin-bottom: 7px;
    }

    .ce-job-description__body a {
        color: #168de2;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .ce-job-description__body img {
        max-width: 100%;
        height: auto;
    }

    .ce-job-description__body table {
        max-width: 100%;
    }


/* Apply after job description
-------------------------------------------------- */

.ce-job-description__apply {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #edf0f4;
}

.ce-job-apply--content {
    display: inline-flex;
    width: auto;
    min-width: 210px;
}


/* Sidebar
-------------------------------------------------- */

.ce-job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* Employer insight
-------------------------------------------------- */

.ce-employer-insight {
    position: sticky;
    top: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe6ee;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(16, 24, 40, .06);
}

.ce-employer-insight__top {
    padding: 26px 26px 20px;
}

.ce-employer-insight__eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #168de2;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1px;
}

.ce-employer-insight__top h2 {
    margin: 0 0 9px;
    color: #101828;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.ce-employer-insight__top p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.55;
}
/* CareerEye Score
-------------------------------------------------- */

.ce-employer-score {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 26px;
    padding: 20px;
    background: #f4f9fe;
    border: 1px solid #dceefa;
    border-radius: 12px;
}

.ce-employer-score__value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    background: #168de2;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.ce-employer-score__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .ce-employer-score__text strong {
        color: #172033;
        font-size: 15px;
        line-height: 1.3;
    }

    .ce-employer-score__text span {
        color: #7b8494;
        font-size: 12px;
    }


/* Employer metrics
-------------------------------------------------- */

.ce-employer-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 22px 26px 0;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
}

.ce-employer-metric {
    padding: 17px 6px;
    text-align: center;
}

    .ce-employer-metric + .ce-employer-metric {
        border-left: 1px solid #edf0f4;
    }

    .ce-employer-metric strong {
        display: block;
        margin-bottom: 4px;
        color: #172033;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 700;
    }

    .ce-employer-metric span {
        display: block;
        color: #7b8494;
        font-size: 10px;
        line-height: 1.3;
    }


/* Employer profile link
-------------------------------------------------- */

.ce-employer-insight__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 20px 26px;
    color: #168de2 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

    .ce-employer-insight__link:hover {
        background: #fafcff;
    }

    .ce-employer-insight__link span {
        font-size: 17px;
    }


/* Employer not activated
-------------------------------------------------- */

.ce-employer-insight__status {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 13px 26px;
    background: #fafbfc;
    border-top: 1px solid #edf0f4;
    color: #7b8494;
    font-size: 10px;
    line-height: 1.45;
}

.ce-employer-insight__status-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    margin-top: 4px;
    background: #b7c0cc;
    border-radius: 50%;
}


/* Not enough reviews
-------------------------------------------------- */

.ce-employer-insight__empty {
    margin: 0 26px 6px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e7ebf0;
    border-radius: 10px;
}

    .ce-employer-insight__empty strong {
        display: block;
        margin-bottom: 5px;
        color: #344054;
        font-size: 13px;
    }

    .ce-employer-insight__empty p {
        margin: 0;
        color: #7b8494;
        font-size: 11px;
        line-height: 1.5;
    }


/* Job facts
-------------------------------------------------- */

.ce-job-facts {
    padding: 25px 26px;
    background: #fff;
    border: 1px solid #e6eaf0;
    border-radius: 16px;
}

    .ce-job-facts h2 {
        margin: 0 0 18px;
        color: #172033;
        font-size: 17px;
        line-height: 1.3;
        font-weight: 700;
    }

    .ce-job-facts dl {
        margin: 0;
    }

.ce-job-fact {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-top: 1px solid #f0f2f5;
}

    .ce-job-fact:first-child {
        border-top: 0;
    }

    .ce-job-fact dt,
    .ce-job-fact dd {
        margin: 0;
        font-size: 12px;
        line-height: 1.45;
    }

    .ce-job-fact dt {
        color: #8993a4;
    }

    .ce-job-fact dd {
        max-width: 58%;
        color: #344054;
        font-weight: 600;
        text-align: right;
    }


/* Responsive job content
-------------------------------------------------- */

@media (max-width: 900px) {

    .ce-job-layout {
        grid-template-columns: 1fr;
    }

    .ce-job-sidebar {
        order: -1;
    }

    .ce-employer-insight {
        position: static;
    }
}

@media (max-width: 600px) {

    .ce-job-layout {
        margin-top: 18px;
        gap: 18px;
    }

    .ce-job-description {
        padding: 28px 22px 32px;
    }

    .ce-job-section-heading {
        margin-bottom: 24px;
    }

        .ce-job-section-heading h2 {
            font-size: 23px;
        }

    .ce-job-description__body {
        font-size: 14px;
        line-height: 1.7;
    }

    .ce-employer-insight__top,
    .ce-job-facts {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ce-employer-score,
    .ce-employer-metrics {
        margin-left: 20px;
        margin-right: 20px;
    }

    .ce-employer-insight__link,
    .ce-employer-insight__status {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* ==========================================================
   CAREEREYE JOB HERO V2.1
   ========================================================== */

.ce-job-hero--career {
    overflow: hidden;
    background: #fff;
}

    .ce-job-hero--career .ce-job-hero__content {
        max-width: none;
        padding: 38px 42px 0;
    }


/* Top employer row
-------------------------------------------------- */

.ce-job-hero__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.ce-job-hero--career .ce-job-hero__employer {
    margin-bottom: 0;
}

.ce-job-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    background: #eef7ff;
    border: 1px solid #d8ebfb;
    border-radius: 999px;
    color: #168de2;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .7px;
}


/* Headline
-------------------------------------------------- */

.ce-job-hero__headline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 40px;
    align-items: center;
    padding-bottom: 34px;
}

.ce-job-hero__headline-main {
    min-width: 0;
}

.ce-job-hero--career .ce-job-hero__title {
    max-width: 760px;
    margin-bottom: 24px;
}

.ce-job-hero--career .ce-job-hero__meta {
    margin-bottom: 0;
}


/* Hero CTA
-------------------------------------------------- */

.ce-job-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: stretch;
}

    .ce-job-hero__cta .ce-job-apply {
        width: 100%;
        min-height: 50px;
    }

    .ce-job-hero__cta .ce-job-hero__published {
        display: block;
        text-align: center;
    }


/* ==========================================================
   EMPLOYER SNAPSHOT
   ========================================================== */

.ce-job-employer-snapshot {
    display: grid;
    grid-template-columns: minmax(210px, 1.15fr) 2fr auto;
    align-items: stretch;
    margin: 0 -42px;
    background: linear-gradient( 110deg, #f8fbff 0%, #ffffff 48%, #fbfdff 100% );
    border-top: 1px solid #e5eaf0;
}


/* Intro
-------------------------------------------------- */

.ce-job-employer-snapshot__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 27px 32px 29px 42px;
    border-right: 1px solid #e7ebf0;
}

.ce-job-employer-snapshot__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #168de2;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1px;
}

.ce-job-employer-snapshot__intro h2 {
    margin: 0 0 6px;
    color: #101828;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.ce-job-employer-snapshot__sub {
    color: #7b8494;
    font-size: 10px;
    line-height: 1.45;
}


/* Stats
-------------------------------------------------- */

.ce-job-employer-snapshot__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-width: 0;
}

.ce-job-snapshot-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 22px 14px;
    text-align: center;
}

    .ce-job-snapshot-stat + .ce-job-snapshot-stat {
        border-left: 1px solid #e7ebf0;
    }

.ce-job-snapshot-stat__label {
    display: block;
    margin-bottom: 6px;
    color: #68758a;
    font-size: 8px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: .7px;
}

.ce-job-snapshot-stat__number {
    color: #168de2;
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
}

    .ce-job-snapshot-stat__number span {
        margin-left: 2px;
        color: #65748b;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0;
    }

.ce-job-snapshot-stat__number--green {
    color: #16b364;
}

.ce-job-snapshot-stars {
    margin-top: 6px;
    color: #168de2;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
}

.ce-job-snapshot-stat__foot {
    display: block;
    margin-top: 6px;
    color: #667085;
    font-size: 10px;
    line-height: 1.3;
}


/* Snapshot link
-------------------------------------------------- */

.ce-job-employer-snapshot__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 155px;
    padding: 20px 24px;
    border-left: 1px solid #e7ebf0;
    color: #168de2 !important;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    transition: background .18s ease, color .18s ease;
}

    .ce-job-employer-snapshot__link:hover {
        background: #f1f8fe;
        color: #087fd8 !important;
    }

    .ce-job-employer-snapshot__link span {
        font-size: 17px;
        line-height: 1;
    }


/* No review data
-------------------------------------------------- */

.ce-job-employer-snapshot__empty {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    color: #667085;
    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================
   HERO RESPONSIVE
   ========================================================== */

@media (max-width: 1000px) {

    .ce-job-employer-snapshot {
        grid-template-columns: 1fr;
    }

    .ce-job-employer-snapshot__intro {
        padding: 24px 32px;
        border-right: 0;
        border-bottom: 1px solid #e7ebf0;
    }

    .ce-job-employer-snapshot__link {
        min-height: 54px;
        border-top: 1px solid #e7ebf0;
        border-left: 0;
    }
}

@media (max-width: 800px) {

    .ce-job-hero--career .ce-job-hero__content {
        padding: 30px 28px 0;
    }

    .ce-job-hero__headline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ce-job-hero__cta {
        width: 100%;
    }

    .ce-job-employer-snapshot {
        margin: 0 -28px;
    }

    .ce-job-employer-snapshot__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {

    .ce-job-hero--career {
        padding: 0;
    }

        .ce-job-hero--career .ce-job-hero__content {
            padding: 24px 20px 0;
        }

    .ce-job-hero__top {
        align-items: flex-start;
    }

    .ce-job-hero__badge {
        display: none;
    }

    .ce-job-hero--career .ce-job-hero__title {
        font-size: 27px;
    }

    .ce-job-employer-snapshot {
        margin: 0 -20px;
    }

    .ce-job-employer-snapshot__intro {
        padding: 22px 20px;
    }

    .ce-job-employer-snapshot__stats {
        grid-template-columns: 1fr;
    }

    .ce-job-snapshot-stat {
        padding: 18px 20px;
    }

        .ce-job-snapshot-stat + .ce-job-snapshot-stat {
            border-top: 1px solid #e7ebf0;
            border-left: 0;
        }

    .ce-job-snapshot-stat__number {
        font-size: 29px;
    }
}

.ce-job-snapshot__stars {
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-top: 3px;
    line-height: 1;
}

.ce-job-star {
    font-size: 14px;
}

.ce-job-star--filled {
    color: #168eea;
}

.ce-job-star--empty {
    color: #168eea;
}

/* ==========================================================
   EMPLOYEE REVIEWS - SIDEBAR
   ========================================================== */

.ce-job-reviews {
    overflow: hidden;
    margin-top: 18px;
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .025);
}


/* Header
-------------------------------------------------- */

.ce-job-reviews__header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid #edf0f4;
}

.ce-job-reviews__eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #168de2;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.ce-job-reviews__header h2 {
    margin: 0 0 7px;
    color: #101828;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.ce-job-reviews__header p {
    margin: 0;
    color: #7c8798;
    font-size: 11px;
    line-height: 1.5;
}


/* Review list
-------------------------------------------------- */

.ce-job-reviews__list {
    display: flex;
    flex-direction: column;
}

.ce-job-review-card {
    padding: 22px 20px;
}

    .ce-job-review-card + .ce-job-review-card {
        border-top: 1px solid #e9edf2;
    }


/* Rating
-------------------------------------------------- */

.ce-job-review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.ce-job-review-card__rating {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

    .ce-job-review-card__rating strong {
        color: #20b866;
        font-size: 25px;
        line-height: 1;
        font-weight: 800;
    }

    .ce-job-review-card__rating span {
        color: #667085;
        font-size: 11px;
        font-weight: 700;
    }

.ce-job-review-card__stars {
    display: flex;
    gap: 1px;
    line-height: 1;
}

    .ce-job-review-card__stars .ce-job-star {
        font-size: 13px;
    }


/* Reviewer
-------------------------------------------------- */

.ce-job-review-card__meta {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    margin-bottom: 16px;
    padding: 4px 9px;
    background: #f7f9fc;
    border: 1px solid #e5e9ef;
    border-radius: 20px;
    color: #475467;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 600;
}


/* Plus / Minus
-------------------------------------------------- */

.ce-job-review-card__quote {
    padding: 14px;
    border-radius: 11px;
}

    .ce-job-review-card__quote + .ce-job-review-card__quote {
        margin-top: 9px;
    }

    .ce-job-review-card__quote > span {
        display: block;
        margin-bottom: 7px;
        font-size: 9px;
        line-height: 1.35;
        font-weight: 800;
        letter-spacing: .45px;
    }

    .ce-job-review-card__quote p {
        display: -webkit-box;
        overflow: hidden;
        margin: 0;
        color: #344054;
        font-size: 11px;
        line-height: 1.55;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }


/* Positive */

.ce-job-review-card__quote--plus {
    background: #effcf5;
    border: 1px solid #b7efd0;
}

    .ce-job-review-card__quote--plus > span {
        color: #39c980;
    }


/* Improvement */

.ce-job-review-card__quote--minus {
    background: #fff8f1;
    border: 1px solid #ffd3a8;
}

    .ce-job-review-card__quote--minus > span {
        color: #ff647c;
    }


/* Footer
-------------------------------------------------- */

.ce-job-review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 13px;
    color: #98a2b3;
    font-size: 9px;
    line-height: 1.4;
}


/* All reviews link
-------------------------------------------------- */

.ce-job-reviews__more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 20px;
    background: #fbfcfe;
    border-top: 1px solid #e9edf2;
    color: #168de2 !important;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .18s ease;
}

    .ce-job-reviews__more:hover {
        background: #f2f8fe;
    }

    .ce-job-reviews__more span:last-child {
        font-size: 16px;
        line-height: 1;
    }


/* Sidebar spacing
-------------------------------------------------- */

.ce-job-sidebar {
    display: flex;
    flex-direction: column;
    align-self: start;
}


/* Mobile
-------------------------------------------------- */

@media (max-width: 900px) {

    .ce-job-reviews {
        margin-top: 0;
    }
}

/* ==========================================================
   MORE ABOUT EMPLOYER
   ========================================================== */

.ce-job-employer-more {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    border: 1px solid #cfe7fb;
    border-radius: 20px;
    background: radial-gradient(circle at 82% 20%, rgba(22, 142, 234, .13), transparent 28%), linear-gradient(135deg, #f7fbff 0%, #eef8ff 55%, #f8fcff 100%);
    box-shadow: 0 12px 35px rgba(16, 24, 40, .05);
}

    .ce-job-employer-more::before {
        content: "";
        position: absolute;
        top: -90px;
        right: -60px;
        width: 260px;
        height: 260px;
        border: 45px solid rgba(22, 142, 234, .045);
        border-radius: 50%;
        pointer-events: none;
    }

.ce-job-employer-more__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) auto auto;
    align-items: center;
    gap: 44px;
    padding: 38px 42px;
}


/* Text
-------------------------------------------------- */

.ce-job-employer-more__text {
    max-width: 510px;
}

.ce-job-employer-more__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #168de2;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1px;
}

.ce-job-employer-more__text h2 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 750;
    letter-spacing: -.3px;
}

.ce-job-employer-more__text p {
    max-width: 470px;
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.65;
}


/* Stats
-------------------------------------------------- */

.ce-job-employer-more__stats {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(205, 220, 234, .9);
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(16, 24, 40, .035);
    backdrop-filter: blur(6px);
}

.ce-job-employer-more__stat {
    display: flex;
    min-width: 105px;
    padding: 15px 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .ce-job-employer-more__stat + .ce-job-employer-more__stat {
        border-left: 1px solid #e7edf3;
    }

    .ce-job-employer-more__stat strong {
        display: block;
        margin-bottom: 3px;
        color: #20b866;
        font-size: 23px;
        line-height: 1;
        font-weight: 800;
    }

        .ce-job-employer-more__stat strong.ce-job-employer-more__score {
            color: #168de2;
        }

    .ce-job-employer-more__stat span {
        color: #667085;
        font-size: 9px;
        line-height: 1.3;
        font-weight: 600;
    }


/* CTA
-------------------------------------------------- */

.ce-job-employer-more__action {
    display: flex;
    align-items: center;
}

.ce-job-employer-more__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 48px;
    padding: 0 21px;
    white-space: nowrap;
    background: #168de2;
    border: 1px solid #168de2;
    border-radius: 10px;
    color: #fff !important;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 6px 16px rgba(22, 141, 226, .18);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

    .ce-job-employer-more__link span {
        font-size: 17px;
        transition: transform .18s ease;
    }

    .ce-job-employer-more__link:hover {
        background: #087fd8;
        box-shadow: 0 8px 20px rgba(22, 141, 226, .25);
        transform: translateY(-1px);
    }

        .ce-job-employer-more__link:hover span {
            transform: translateX(3px);
        }


/* Responsive
-------------------------------------------------- */

@media (max-width: 1000px) {

    .ce-job-employer-more__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ce-job-employer-more__stats {
        width: fit-content;
    }

    .ce-job-employer-more__action {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {

    .ce-job-employer-more {
        margin-top: 22px;
        border-radius: 16px;
    }

    .ce-job-employer-more__content {
        gap: 22px;
        padding: 28px 22px;
    }

    .ce-job-employer-more__text h2 {
        font-size: 21px;
    }

    .ce-job-employer-more__stats {
        width: 100%;
    }

    .ce-job-employer-more__stat {
        min-width: 0;
        padding: 14px 8px;
        flex: 1;
    }

        .ce-job-employer-more__stat strong {
            font-size: 20px;
        }

    .ce-job-employer-more__link {
        width: 100%;
    }
}
/* =========================================================
   MORE JOBS FROM EMPLOYER
   ========================================================= */

.ce-job-more-jobs {
    margin-top: 32px;
    padding: 34px 36px 36px;
    background: #fff;
    border: 1px solid #e3e9f0;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(16, 24, 40, .035);
}

.ce-job-more-jobs__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 26px;
}

.ce-job-more-jobs__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #168eea;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 1px;
}

.ce-job-more-jobs__header h2 {
    margin: 0 0 7px;
    color: #101828;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.25px;
}

.ce-job-more-jobs__header p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

.ce-job-more-jobs__all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    padding-bottom: 2px;
    color: #168eea !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

    .ce-job-more-jobs__all span {
        font-size: 18px;
        transition: transform .18s ease;
    }

    .ce-job-more-jobs__all:hover span {
        transform: translateX(4px);
    }


/* Job cards
-------------------------------------------------- */

.ce-job-more-jobs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ce-job-more-job {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 190px;
    flex-direction: column;
    padding: 22px;
    overflow: hidden;
    background: linear-gradient( 145deg, #ffffff 0%, #ffffff 58%, #f5faff 100% );
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    color: #172033 !important;
    text-decoration: none !important;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

    .ce-job-more-job::after {
        position: absolute;
        right: -45px;
        bottom: -55px;
        width: 130px;
        height: 130px;
        background: rgba(22, 142, 234, .045);
        border-radius: 50%;
        content: "";
        pointer-events: none;
    }

    .ce-job-more-job:hover {
        border-color: #b9ddf8;
        box-shadow: 0 12px 28px rgba(16, 24, 40, .08);
        transform: translateY(-3px);
    }


/* Card top
-------------------------------------------------- */

.ce-job-more-job__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 19px;
}

.ce-job-more-job__badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    background: #eef8ff;
    border: 1px solid #cce9fc;
    border-radius: 999px;
    color: #168eea;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .8px;
}

.ce-job-more-job__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    background: #f4f8fc;
    border-radius: 50%;
    color: #168eea;
    font-size: 17px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.ce-job-more-job:hover .ce-job-more-job__arrow {
    background: #168eea;
    color: #fff;
    transform: translateX(2px);
}


/* Card content
-------------------------------------------------- */

.ce-job-more-job h3 {
    margin: 0 0 9px;
    color: #101828;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.ce-job-more-job__company {
    margin-bottom: 20px;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.ce-job-more-job__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

    .ce-job-more-job__meta span {
        display: inline-flex;
        align-items: center;
        min-height: 27px;
        padding: 5px 9px;
        background: #fff;
        border: 1px solid #e5eaf0;
        border-radius: 7px;
        color: #667085;
        font-size: 11px;
        line-height: 1.3;
    }


/* Responsive
-------------------------------------------------- */

@media (max-width: 900px) {

    .ce-job-more-jobs {
        padding: 28px;
    }

    .ce-job-more-jobs__grid {
        grid-template-columns: 1fr;
    }

    .ce-job-more-job {
        min-height: 0;
    }
}

@media (max-width: 600px) {

    .ce-job-more-jobs {
        margin-top: 24px;
        padding: 24px 20px;
        border-radius: 14px;
    }

    .ce-job-more-jobs__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 22px;
    }

        .ce-job-more-jobs__header h2 {
            font-size: 21px;
        }

    .ce-job-more-jobs__grid {
        gap: 11px;
    }

    .ce-job-more-job {
        padding: 19px;
        border-radius: 12px;
    }

        .ce-job-more-job h3 {
            font-size: 16px;
        }
}

/* =========================================================
   SIMILAR JOBS
   ========================================================= */

.ce-job-similar {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    padding: 38px 36px 40px;
    background: radial-gradient(circle at 92% 10%, rgba(22, 142, 234, .07), transparent 24%), #f3f6f9;
    border: 1px solid #e0e6ed;
    border-radius: 20px;
}


/* Header
-------------------------------------------------- */

.ce-job-similar__header {
    position: relative;
    z-index: 1;
    margin-bottom: 26px;
}

.ce-job-similar__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #168eea;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 1px;
}

.ce-job-similar__header h2 {
    margin: 0 0 7px;
    color: #101828;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.3px;
}

.ce-job-similar__header p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.55;
}


/* Grid
-------------------------------------------------- */

.ce-job-similar__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}


/* Card
-------------------------------------------------- */

.ce-job-similar-card {
    display: flex;
    min-width: 0;
    min-height: 200px;
    padding: 22px;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 14px;
    color: #172033 !important;
    text-decoration: none !important;
    box-shadow: 0 2px 7px rgba(16, 24, 40, .025);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

    .ce-job-similar-card:hover {
        border-color: #b8dcf7;
        box-shadow: 0 12px 30px rgba(16, 24, 40, .08);
        transform: translateY(-3px);
    }


/* Card top
-------------------------------------------------- */

.ce-job-similar-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.ce-job-similar-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    background: #f4f7fa;
    border-radius: 50%;
    color: #168eea;
    font-size: 17px;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.ce-job-similar-card:hover .ce-job-similar-card__arrow {
    background: #168eea;
    color: #fff;
    transform: translateX(2px);
}


/* Job title
-------------------------------------------------- */

.ce-job-similar-card h3 {
    margin: 0 0 8px;
    color: #101828;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}


/* Company
-------------------------------------------------- */

.ce-job-similar-card__company {
    margin-bottom: 20px;
    color: #168eea;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}


/* Metadata
-------------------------------------------------- */

.ce-job-similar-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

    .ce-job-similar-card__meta span {
        display: inline-flex;
        align-items: center;
        min-height: 27px;
        padding: 5px 9px;
        background: #f7f9fb;
        border: 1px solid #e6ebf0;
        border-radius: 7px;
        color: #667085;
        font-size: 11px;
        line-height: 1.3;
    }


/* Small CareerEye finishing detail
-------------------------------------------------- */

.ce-job-similar::after {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    border: 45px solid rgba(22, 142, 234, .025);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}


/* Responsive
-------------------------------------------------- */

@media (max-width: 900px) {

    .ce-job-similar {
        padding: 30px 28px;
    }

    .ce-job-similar__grid {
        grid-template-columns: 1fr;
    }

    .ce-job-similar-card {
        min-height: 0;
    }
}


@media (max-width: 600px) {

    .ce-job-similar {
        margin-top: 24px;
        padding: 26px 20px;
        border-radius: 16px;
    }

    .ce-job-similar__header {
        margin-bottom: 21px;
    }

        .ce-job-similar__header h2 {
            font-size: 21px;
        }

    .ce-job-similar__grid {
        gap: 11px;
    }

    .ce-job-similar-card {
        padding: 19px;
        border-radius: 12px;
    }

        .ce-job-similar-card h3 {
            font-size: 16px;
        }
}

/* Employer logo
-------------------------------------------------- */

.ce-job-similar-card__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100px;
    height: 42px;
    overflow: hidden;
}

    .ce-job-similar-card__logo img {
        display: block;
        max-width: 100%;
        max-height: 38px;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: left center;
    }

    .ce-job-similar-card__logo span {
        color: #667085;
        font-size: 12px;
        line-height: 1.3;
        font-weight: 700;
    }