.nh-offres-emploi {
    padding: 90px 0 120px;
    background: #ffffff;
}

.nh-offres-emploi__container {
    max-width: 1344px;
}

.nh-offres-emploi__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nh-offres-emploi__item {
    border: 1px solid #234980;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(35, 73, 128, 0) 0%, rgba(35, 73, 128, 0.15) 100%);
    overflow: hidden;
    transition: background 0.3s ease;
    position: relative;
}

.nh-offres-emploi__item:not(.is-open) {
    background: linear-gradient(180deg, rgba(35, 73, 128, 0) 0%, rgba(35, 73, 128, 0.2) 100%);
}

.nh-offres-emploi__item {
    border-radius: 8px 8px 60px 8px;
}

.nh-offres-emploi__missions li::marker {
    color: #244172;
}

.nh-offres-emploi__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    min-height: 110px;
    padding: 32px 48px 24px 31px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    color: #292B52;
}

.nh-offres-emploi__item:not(.is-open) .nh-offres-emploi__header {
    min-height: 110px;
    padding: 32px 48px;
}

.nh-offres-emploi__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #292B52;
}

.nh-offres-emploi__chevron {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: #292B52;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.nh-offres-emploi__item.is-open .nh-offres-emploi__chevron {
    transform: rotate(-90deg);
}

.nh-offres-emploi__chevron svg {
    width: 15px;
    height: 25px;
}

.nh-offres-emploi__panel[hidden] {
    display: none;
}

.nh-offres-emploi__body {
    position: relative;
    padding: 0 48px 37px 31px;
}

.nh-offres-emploi__watermark {
    position: absolute;
    top: -40px;
    right: 48px;
    width: 359px;
    height: 582px;
    pointer-events: none;
    z-index: 0;
}

.nh-offres-emploi__watermark-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
}

.nh-offres-emploi__content {
    position: relative;
    z-index: 1;
    max-width: 1260px;
}

.nh-offres-emploi__intro {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    color: #000000;
}

.nh-offres-emploi__intro-brand {
    font-weight: 700;
}

.nh-offres-emploi__missions-title {
    margin: 30px 0 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    color: #254274;
}

.nh-offres-emploi__missions {
    margin: 0 0 30px;
    padding: 0 0 0 22px;
    list-style: disc;
}

.nh-offres-emploi__motif {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 281px;
    height: 624px;
    top: 117px;
}

.nh-offres-emploi__motif--right {
    right: 60px;
    transform: scaleX(-1);
}

.nh-offres-emploi__missions li {
    font-family: 'Myriad Pro', 'Myriad', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    color: #000000;
}

.nh-offres-emploi__missions li+li {
    margin-top: 0;
}

.nh-offres-emploi__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    min-height: 45px;
}

.nh-offres-emploi__location {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
}

.nh-offres-emploi__location strong {
    font-weight: 700;
    color: #254274;
}

.nh-offres-emploi__apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 164px;
    min-width: 164px;
    height: 45px;
    padding: 0;
    border-radius: 600px;
    background: linear-gradient(135deg, #292B52 0%, #234980 49.51%, #42609B 78.91%, #8795BD 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nh-offres-emploi__apply:hover {
    opacity: 0.9;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    .nh-offres-emploi {
        padding: 70px 0 90px;
    }

    .nh-offres-emploi__title {
        font-size: 24px;
        line-height: 34px;
    }

    .nh-offres-emploi__header,
    .nh-offres-emploi__item:not(.is-open) .nh-offres-emploi__header {
        min-height: 90px;
        padding: 24px 32px;
    }

    .nh-offres-emploi__body {
        padding: 0 32px 32px;
    }

    .nh-offres-emploi__watermark {
        width: 260px;
        height: 420px;
        right: 16px;
    }

    .nh-offres-emploi__intro,
    .nh-offres-emploi__missions-title,
    .nh-offres-emploi__missions li,
    .nh-offres-emploi__location {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .nh-offres-emploi {
        padding: 48px 0 64px;
    }

    .nh-offres-emploi__list {
        gap: 20px;
    }

    .nh-offres-emploi__header,
    .nh-offres-emploi__item:not(.is-open) .nh-offres-emploi__header {
        min-height: 72px;
        padding: 20px 18px;
        gap: 12px;
    }

    .nh-offres-emploi__title {
        font-size: 18px;
        line-height: 26px;
    }

    .nh-offres-emploi__chevron {
        width: 18px;
        height: 18px;
    }

    .nh-offres-emploi__chevron svg {
        width: 11px;
        height: 18px;
    }

    .nh-offres-emploi__body {
        padding: 0 18px 24px;
    }

    .nh-offres-emploi__watermark {
        display: none;
    }

    .nh-offres-emploi__content {
        max-width: 100%;
    }

    .nh-offres-emploi__intro,
    .nh-offres-emploi__missions-title,
    .nh-offres-emploi__missions li,
    .nh-offres-emploi__location {
        font-size: 15px;
        line-height: 22px;
    }

    .nh-offres-emploi__missions {
        margin-bottom: 24px;
        padding-left: 18px;
    }

    .nh-offres-emploi__missions-title {
        margin-bottom: 16px;
    }

    .nh-offres-emploi__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .nh-offres-emploi__apply {
        width: 100%;
        min-width: 0;
        height: 44px;
        font-size: 16px;
    }
}