.job-offer-details-container {
    border-radius: 0 0 20px 20px;
    background: #FFF;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.20);
    overflow: hidden;
}
/* Header */
.job-offer__header {
    padding: 40px;
    background-color: var(--e-global-color-text);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}.job-offer__header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.20);
    z-index: 0;
}.job-offer__header > * {
    position: relative;
    z-index: 1;
}.job-offer__header .job-offer__title {
    font-size: 39px;
    font-weight: 700;
    line-height: 120%;
    color: #fff;
    margin: 0 0 16px 0;
}.job-offer__flex-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}.job-offer__flex-tax {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}.job-offer_tax {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    background-color: rgba(231, 52, 71, 0.2);
    color: var(--color-neutral-white, #FFF);
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
}.job-offer__flex-button-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}.job-offer__date {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}
@media (max-width: 767px) {
    .job-offer__title {
        font-size: 31px;
    }
}
/* Content */
.job-offer__section {
    padding: 40px 40px 0 40px;
    margin-bottom: 24px;
    position: relative;
}.job-offer__section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: calc(100% - 80px);
    height: 2px;
    background-color: var( --e-global-color-primary );
}.job-offer__section p:last-child {
    margin-bottom: 0;
}.job-offer__section-title {
    font-size: 31px;
    font-weight: 700;
    line-height: 130%;
    margin: 0 0 24px 0;
}.job-offer__content h4 {
    font-size: 25px;
    font-weight: 700;
    line-height: 140%;
}.job-offer__content ul:not(:last-child) {
    margin-block-end: 1.5rem;
}
.job-offer__localisation .job-offer__content {
    display: flex;
    gap: 11.35%;
}.job-offer__localisation .job-offer__localisation-map {
    width: 45.78%;
    background-color: rgba(118, 118, 118, 1);
    height: 200px;
    border-radius: 10px;
    z-index: 0;
}.job-offer_localisation-address-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}.job-offer_localisation-address p {
    color: rgba(118, 118, 118, 1);
}
@media (max-width: 767px) {
    .job-offer__section-title {
        font-size: 25px;
    }.job-offer__content h4 {
        font-size: 20px;
    }.job-offer__localisation .job-offer__content {
        flex-direction: column-reverse;
        gap: 24px;
    }.job-offer__localisation .job-offer__localisation-map {
        width: 100%;
        background-color: rgba(118, 118, 118, 1);
        height: auto;
        aspect-ratio: 16/9;
    }
}
/* Footer */
.job-offer__footer {
    padding: 0 40px 40px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}.job-offer__footer-share {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}.job-offer__footer-share span {
    font-weight: 500;
}.job-offer__footer-share a {
    line-height: 0;
}
/* Loading */
.job-offer-details {
    position: relative;
}.job-offer-details.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 0 20px 20px;
    background-color: #c9c9c960;
    animation-name: background-pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function: ease;
}
@keyframes background-pulse {
  from {}
  to { background-color: #c9c9c92a; }
}