:root {
    --acgp-navy: #082b5c;
    --acgp-navy-dark: #061f43;

    --acgp-blue: #0864d7;
    --acgp-blue-hover: #064fae;
    --acgp-blue-soft: #edf5ff;

    --acgp-green: #35c900;
    --acgp-green-dark: #2ba800;
    --acgp-green-soft: #effbea;

    --acgp-white: #ffffff;
    --acgp-bg: #f7f9fc;

    --acgp-text: #102a50;
    --acgp-body: #425a78;
    --acgp-muted: #748399;

    --acgp-border: #dde6f0;

    --acgp-shadow-sm: 0 5px 16px rgba(8, 43, 92, 0.05);

    --acgp-shadow: 0 14px 35px rgba(8, 43, 92, 0.09);
}

/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: "Inter", sans-serif;

    color: var(--acgp-text);
    background-color: var(--acgp-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* =========================================================
   BOUTONS
   ========================================================= */

.portal-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 10px 20px;

    border: 1px solid transparent;
    border-radius: 9px;

    font-family: inherit;

    font-size: 0.9rem;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.portal-btn:hover {
    transform: translateY(-1px);
}

.portal-btn-primary {
    color: #ffffff;

    background-color: var(--acgp-blue);
    border-color: var(--acgp-blue);
}

.portal-btn-primary:hover {
    color: #ffffff;

    background-color: var(--acgp-blue-hover);
    border-color: var(--acgp-blue-hover);
}

.portal-btn-outline {
    color: var(--acgp-blue);

    background-color: #ffffff;
    border-color: var(--acgp-blue);
}

.portal-btn-outline:hover {
    color: #ffffff;

    background-color: var(--acgp-blue);
}

/* =========================================================
   HEADER
   ========================================================= */

.portal-header {
    position: sticky;

    top: 0;

    z-index: 1050;

    background-color: #ffffff;

    border-bottom: 1px solid var(--acgp-border);
}

.portal-header .navbar {
    min-height: 76px;

    padding: 0;
}

.portal-brand {
    display: inline-flex;

    align-items: center;

    flex-shrink: 0;
}

.portal-brand-logo {
    display: block;

    width: auto;
    height: 48px;

    object-fit: contain;
}

.portal-brand-talents {
    margin-left: 9px;

    color: var(--acgp-green-dark);

    font-size: 1.1rem;
    font-weight: 700;
}

.portal-navigation {
    display: flex;

    align-items: center;

    gap: 24px;
}

.portal-nav-link {
    position: relative;

    display: block;

    padding: 27px 4px 24px;

    color: var(--acgp-text);

    font-size: 0.9rem;
    font-weight: 600;
}

.portal-nav-link:hover {
    color: var(--acgp-blue);
}

.portal-nav-link.active {
    color: var(--acgp-blue);
}

.portal-nav-link.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 12px;

    width: 28px;
    height: 3px;

    border-radius: 999px;

    background-color: var(--acgp-green);

    transform: translateX(-50%);
}

.portal-header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}

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

.portal-hero {
    overflow: hidden;

    background: linear-gradient(90deg, #ffffff 0%, #f7fbff 60%, #edf6ff 100%);

    border-bottom: 1px solid var(--acgp-border);
}

.portal-hero-row {
    min-height: 425px;
}

.portal-hero-content {
    display: flex;

    flex-direction: column;
    justify-content: center;

    height: 100%;

    padding: 55px 50px 55px 0;
}

.portal-hero-kicker {
    margin-bottom: 16px;

    color: var(--acgp-blue);

    font-size: 0.78rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.portal-hero-title {
    margin: 0 0 20px;

    color: var(--acgp-navy);

    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.04em;
}

.portal-hero-title span {
    color: var(--acgp-green);
}

.portal-hero-description {
    max-width: 610px;

    margin: 0 0 28px;

    color: var(--acgp-body);

    font-size: 1rem;

    line-height: 1.7;
}

/* =========================================================
   HERO VALEURS
   ========================================================= */

.portal-hero-values {
    display: flex;

    align-items: flex-start;

    flex-wrap: wrap;

    gap: 30px;
}

.portal-value {
    display: flex;

    align-items: center;

    gap: 11px;
}

.portal-value-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    color: #ffffff;

    background-color: var(--acgp-blue);

    font-size: 1.1rem;
}

.portal-value strong {
    display: block;

    margin-bottom: 2px;

    color: var(--acgp-text);

    font-size: 0.82rem;
}

.portal-value span {
    display: block;

    color: var(--acgp-muted);

    font-size: 0.73rem;
}

/* =========================================================
   HERO VISUEL
   ========================================================= */

.portal-hero-visual {
    position: relative;

    height: 425px;

    overflow: hidden;

    border-bottom-left-radius: 35px;
}

.portal-hero-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.portal-hero-visual-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, var(--acgp-blue-soft), #d9eafd);
}

.portal-hero-placeholder-content {
    display: flex;

    flex-direction: column;
    align-items: center;

    max-width: 280px;

    padding: 30px;

    color: var(--acgp-navy);

    text-align: center;
}

.portal-hero-placeholder-content i {
    margin-bottom: 14px;

    color: var(--acgp-blue);

    font-size: 3rem;
}

.portal-hero-placeholder-content span {
    font-weight: 700;

    line-height: 1.45;
}

.portal-hero-quote {
    position: absolute;

    right: 24px;
    bottom: 24px;

    width: min(320px, calc(100% - 48px));

    padding: 20px 22px;

    border-radius: 14px;

    background-color: rgba(255, 255, 255, 0.96);

    box-shadow: var(--acgp-shadow);
}

.portal-hero-quote p {
    margin: 0;

    color: var(--acgp-navy);

    font-size: 0.92rem;
    font-weight: 700;

    line-height: 1.5;
}

.portal-hero-quote::after {
    content: "";

    display: block;

    width: 32px;
    height: 4px;

    margin-top: 14px;

    border-radius: 999px;

    background-color: var(--acgp-green);
}

/* =========================================================
   RECHERCHE
   ========================================================= */

.portal-search-section {
    position: relative;

    z-index: 20;

    margin-top: -29px;
}

.portal-search-card {
    padding: 20px;

    border: 1px solid var(--acgp-border);
    border-radius: 15px;

    background-color: #ffffff;

    box-shadow: var(--acgp-shadow);
}

.portal-input {
    display: flex;

    align-items: center;

    height: 50px;

    overflow: hidden;

    border: 1px solid var(--acgp-border);
    border-radius: 9px;

    background-color: #ffffff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.portal-input:focus-within {
    border-color: var(--acgp-blue);

    box-shadow: 0 0 0 3px rgba(8, 100, 215, 0.08);
}

.portal-input i {
    flex: 0 0 auto;

    margin-left: 16px;

    color: var(--acgp-navy);

    font-size: 1.05rem;
}

.portal-input input {
    width: 100%;
    height: 100%;

    padding: 0 14px;

    border: 0;
    outline: 0;

    color: var(--acgp-text);
    background: transparent;

    font-family: inherit;
    font-size: 0.9rem;
}

.portal-input input::placeholder {
    color: #8795a7;
}

.portal-search-button {
    width: 100%;
    height: 50px;
}

.portal-search-reset {
    margin-top: 12px;
}

.portal-search-reset a {
    color: var(--acgp-blue);

    font-size: 0.82rem;
    font-weight: 600;
}

/* =========================================================
   OFFRES
   ========================================================= */

.portal-offers-section {
    padding: 60px 0 75px;
}

.portal-offers-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.portal-offers-header h2 {
    margin: 0;

    color: var(--acgp-navy);

    font-size: 1.65rem;
    font-weight: 800;
}

.portal-offers-header p {
    margin: 5px 0 0;

    color: var(--acgp-body);

    font-size: 0.88rem;
}

.portal-offer-count {
    display: inline-flex;

    align-items: center;

    min-height: 34px;

    padding: 0 14px;

    border: 1px solid var(--acgp-border);
    border-radius: 999px;

    background-color: #ffffff;

    color: var(--acgp-navy);

    font-size: 0.78rem;
    font-weight: 600;
}

.portal-offers-list {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

/* =========================================================
   CARTE OFFRE
   ========================================================= */

.portal-offer-card {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 23px 26px;

    border: 1px solid var(--acgp-border);
    border-radius: 13px;

    background-color: #ffffff;

    box-shadow: var(--acgp-shadow-sm);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.portal-offer-card:hover {
    transform: translateY(-2px);

    border-color: #cbd8e7;

    box-shadow: var(--acgp-shadow);
}

.portal-offer-main {
    flex: 1;

    min-width: 0;
}

.portal-offer-heading {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.portal-offer-heading h3 {
    margin: 0 0 6px;

    color: var(--acgp-navy);

    font-size: 1.08rem;
    font-weight: 750;
}

.portal-offer-heading p {
    margin: 0;

    color: var(--acgp-body);

    font-size: 0.8rem;
}

.portal-offer-heading p i {
    color: var(--acgp-blue);
}

.portal-offer-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 12px 24px;

    margin-top: 14px;
}

.portal-offer-meta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--acgp-text);

    font-size: 0.81rem;
}

.portal-offer-meta i {
    color: var(--acgp-navy);

    font-size: 1rem;
}

.portal-offer-date {
    margin-top: 12px;

    color: var(--acgp-muted);

    font-size: 0.74rem;
}

.portal-offer-action {
    flex: 0 0 auto;
}

.portal-badge-new {
    display: inline-flex;

    align-items: center;

    min-height: 25px;

    padding: 0 11px;

    border-radius: 999px;

    color: #ffffff;
    background-color: var(--acgp-green);

    font-size: 0.7rem;
    font-weight: 700;
}

/* =========================================================
   CTA
   ========================================================= */

.portal-cta {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 28px;

    padding: 18px 22px;

    border: 1px solid #d9e9fb;
    border-radius: 13px;

    background: linear-gradient(90deg, #edf5ff, #f7fbff);
}

.portal-cta-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 50px;
    height: 50px;

    border-radius: 11px;

    color: var(--acgp-blue);

    background-color: #dcecff;

    font-size: 1.45rem;
}

.portal-cta-content {
    flex: 1;
}

.portal-cta-content h3 {
    margin: 0 0 4px;

    color: var(--acgp-navy);

    font-size: 0.96rem;
    font-weight: 700;
}

.portal-cta-content p {
    margin: 0;

    color: var(--acgp-body);

    font-size: 0.8rem;
}

/* =========================================================
   EMPTY
   ========================================================= */

.portal-empty {
    padding: 50px 25px;

    border: 1px solid var(--acgp-border);
    border-radius: 13px;

    background-color: #ffffff;

    text-align: center;
}

.portal-empty-icon {
    margin-bottom: 13px;

    color: var(--acgp-blue);

    font-size: 2.7rem;
}

.portal-empty h3 {
    margin-bottom: 8px;

    color: var(--acgp-navy);

    font-size: 1.2rem;
    font-weight: 700;
}

.portal-empty p {
    color: var(--acgp-muted);
}

/* =========================================================
   PAGINATION
   ========================================================= */

.portal-pagination {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}

.pagination {
    gap: 5px;
}

.page-link {
    color: var(--acgp-blue);

    border-color: var(--acgp-border);
}

.page-link:hover {
    color: var(--acgp-blue-hover);

    background-color: var(--acgp-blue-soft);
}

.active > .page-link,
.page-link.active {
    color: #ffffff;

    background-color: var(--acgp-blue);
    border-color: var(--acgp-blue);
}

/* =========================================================
   FOOTER
   ========================================================= */

.portal-footer {
    color: #ffffff;

    background: linear-gradient(
        110deg,
        var(--acgp-navy-dark),
        var(--acgp-navy)
    );
}

.portal-footer-main {
    display: grid;

    grid-template-columns:
        minmax(240px, 1fr)
        auto
        auto;

    align-items: center;

    gap: 40px;

    padding: 27px 0 23px;
}

.portal-footer-brand {
    display: flex;

    align-items: center;

    gap: 7px;
}

.portal-footer-brand span {
    color: #ffffff;

    font-size: 1.2rem;
    font-weight: 800;
}

.portal-footer-brand strong {
    color: var(--acgp-green);

    font-size: 0.95rem;
}

.portal-footer-description {
    max-width: 340px;

    margin: 7px 0 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.72rem;

    line-height: 1.55;
}

.portal-footer-links {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;
}

.portal-footer-links a,
.portal-footer-links span {
    color: rgba(255, 255, 255, 0.65);

    font-size: 0.72rem;
}

.portal-footer-links a:hover {
    color: #ffffff;
}

.portal-socials {
    display: flex;

    align-items: center;

    gap: 8px;
}

.portal-socials a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    color: #ffffff;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.portal-socials a:hover {
    color: var(--acgp-green);

    border-color: var(--acgp-green);
}

.portal-footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 14px 0 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.portal-footer-bottom span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 0.68rem;
}

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

@media (max-width: 991.98px) {
    .portal-header .navbar {
        min-height: 68px;

        padding: 9px 0;
    }

    .portal-navigation {
        align-items: flex-start;

        gap: 0;

        margin-top: 15px;
    }

    .portal-nav-link {
        padding: 10px 0;
    }

    .portal-nav-link.active::after {
        display: none;
    }

    .portal-header-actions {
        align-items: stretch;

        flex-direction: column;

        padding: 12px 0 8px;
    }

    .portal-hero-row {
        min-height: auto;
    }

    .portal-hero-content {
        padding: 45px 0 35px;
    }

    .portal-hero-visual {
        height: 320px;

        border-radius: 20px;
    }

    .portal-hero {
        padding-bottom: 50px;
    }

    .portal-search-section {
        margin-top: -25px;
    }

    .portal-footer-main {
        grid-template-columns: 1fr;

        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .portal-brand-logo {
        height: 40px;
    }

    .portal-brand-talents {
        font-size: 0.95rem;
    }

    .portal-hero-title {
        font-size: 2.25rem;
    }

    .portal-hero-values {
        flex-direction: column;

        gap: 15px;
    }

    .portal-hero-visual {
        height: 280px;
    }

    .portal-hero-quote {
        right: 14px;
        bottom: 14px;

        width: calc(100% - 28px);
    }

    .portal-search-card {
        padding: 14px;
    }

    .portal-offers-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .portal-offer-card {
        align-items: stretch;

        flex-direction: column;

        padding: 20px;
    }

    .portal-offer-heading {
        flex-direction: column;

        gap: 10px;
    }

    .portal-offer-action .portal-btn {
        width: 100%;
    }

    .portal-cta {
        align-items: flex-start;

        flex-direction: column;
    }

    .portal-cta .portal-btn {
        width: 100%;
    }

    .portal-footer-links {
        align-items: flex-start;

        flex-direction: column;

        gap: 9px;
    }

    .portal-footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }
}
/* =========================================================
   DETAIL OFFRE - NOUVELLE VERSION
   ========================================================= */

.job-detail-breadcrumb-section {
    padding: 18px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--acgp-border);
}

.job-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    color: var(--acgp-muted);
    font-size: 0.78rem;
}

.job-detail-breadcrumb a {
    color: var(--acgp-blue);
    font-weight: 600;
}

/* =========================================================
   HEADER
   ========================================================= */

.job-detail-header {
    padding: 28px 0 36px;
    background: var(--acgp-bg);
}

.job-detail-header-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 30px;

    border: 1px solid var(--acgp-border);
    border-radius: 16px;

    background: #ffffff;

    box-shadow: var(--acgp-shadow-sm);
}

.job-detail-header-content {
    flex: 1;
    min-width: 0;
}

.job-detail-status-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;

    margin-bottom: 14px;
}

.job-detail-type {
    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 0 11px;

    border-radius: 7px;

    color: var(--acgp-blue);
    background: var(--acgp-blue-soft);

    font-size: 0.67rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.job-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    min-height: 28px;

    padding: 0 11px;

    border-radius: 999px;

    font-size: 0.68rem;
    font-weight: 700;
}

.job-status-open {
    color: #248b0c;
    background: #ebf9e7;
}

.job-status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: var(--acgp-green-dark);
}

.job-status-closed {
    color: #946100;
    background: #fff4d9;
}

.job-detail-header-card h1 {
    margin: 0 0 8px;

    color: var(--acgp-navy);

    font-size: clamp(2.2rem, 3.8vw, 3.5rem);
    font-weight: 800;

    line-height: 1.08;
}

.job-detail-company {
    margin: 0;

    color: var(--acgp-body);
    font-size: 0.96rem;
}

/* Meta */

.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;

    margin-top: 20px;
}

.job-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--acgp-text);

    font-size: 0.82rem;
}

.job-detail-meta i {
    color: var(--acgp-blue);
}

.job-detail-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;

    margin-top: 16px;

    color: var(--acgp-muted);

    font-size: 0.76rem;
}

.job-detail-dates i {
    color: var(--acgp-blue);
}

.job-detail-header-action {
    flex: 0 0 auto;
}

.job-main-action {
    min-height: 50px;
    padding: 12px 24px;
}

/* =========================================================
   CONTENU
   ========================================================= */

.job-detail-content {
    padding: 10px 0 70px;
    background: var(--acgp-bg);
}

.job-detail-main-card,
.job-side-card {
    border: 1px solid var(--acgp-border);
    border-radius: 15px;

    background: #ffffff;

    box-shadow: var(--acgp-shadow-sm);
}

.job-detail-main-card {
    padding: 30px;
}

.job-content-section + .job-content-section {
    margin-top: 34px;
    padding-top: 31px;

    border-top: 1px solid var(--acgp-border);
}

.job-content-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;
}

.job-content-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    border-radius: 10px;

    color: var(--acgp-blue);
    background: var(--acgp-blue-soft);
}

.job-content-title h2 {
    margin: 0;

    color: var(--acgp-navy);

    font-size: 1.15rem;
    font-weight: 750;
}

.job-description-text {
    color: var(--acgp-body);

    font-size: 0.88rem;
    line-height: 1.8;
}

.job-empty-text {
    color: var(--acgp-muted);
}

.job-content-subtitle {
    margin: 22px 0 13px;

    color: var(--acgp-navy);

    font-size: 0.9rem;
    font-weight: 700;
}

/* Listes */

.job-detail-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.job-detail-list li {
    position: relative;

    margin-bottom: 10px;
    padding-left: 22px;

    color: var(--acgp-body);

    font-size: 0.86rem;
    line-height: 1.6;
}

.job-detail-list li::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 0.65em;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--acgp-green);
}

/* =========================================================
   INFORMATIONS COMPLEMENTAIRES
   ========================================================= */

.job-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border: 1px solid var(--acgp-border);
    border-radius: 10px;

    overflow: hidden;
}

.job-detail-info-grid > div {
    padding: 14px 16px;

    border-right: 1px solid var(--acgp-border);
    border-bottom: 1px solid var(--acgp-border);
}

.job-detail-info-grid > div:nth-child(2n) {
    border-right: 0;
}

.job-detail-info-grid span {
    display: block;

    margin-bottom: 4px;

    color: var(--acgp-muted);

    font-size: 0.66rem;
}

.job-detail-info-grid strong {
    color: var(--acgp-text);

    font-size: 0.8rem;
    font-weight: 650;
}

/* =========================================================
   SIDEBAR
   ========================================================= */

.job-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;

    position: sticky;
    top: 95px;
}

.job-side-card {
    padding: 22px;
}

.job-side-eyebrow {
    display: block;

    margin-bottom: 6px;

    color: var(--acgp-green-dark);

    font-size: 0.64rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.job-apply-card {
    border-top: 4px solid var(--acgp-blue);
}

.job-apply-card h3 {
    margin: 0 0 8px;

    color: var(--acgp-navy);

    font-size: 1.08rem;
    font-weight: 750;
}

.job-apply-card > p {
    margin: 0 0 18px;

    color: var(--acgp-body);

    font-size: 0.76rem;
    line-height: 1.6;
}

.job-side-button {
    width: 100%;
}

/* Connexion */

.job-login-notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-top: 16px;
    padding: 14px;

    border-radius: 10px;

    background: var(--acgp-blue-soft);
}

.job-login-notice > i {
    color: var(--acgp-blue);
}

.job-login-notice p {
    margin: 0 0 7px;

    color: var(--acgp-body);

    font-size: 0.72rem;
    line-height: 1.5;
}

.job-login-notice a {
    color: var(--acgp-blue);

    font-size: 0.72rem;
    font-weight: 700;
}

/* =========================================================
   FICHE DE POSTE
   ========================================================= */

.job-file-card {
    border-left: 4px solid var(--acgp-green);
}

.job-file-header {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 13px;
}

.job-file-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 44px;
    height: 44px;

    border-radius: 10px;

    color: #c93636;
    background: #fff0f0;

    font-size: 1.25rem;
}

.job-file-header small {
    display: block;

    color: var(--acgp-green-dark);

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 0.07em;
}

.job-file-header h3 {
    margin: 3px 0 0;

    color: var(--acgp-navy);

    font-size: 0.96rem;
    font-weight: 750;
}

.job-file-card > p {
    color: var(--acgp-body);

    font-size: 0.73rem;
    line-height: 1.55;
}

/* =========================================================
   INFORMATIONS CLES
   ========================================================= */

.job-side-title {
    margin: 0 0 17px;

    color: var(--acgp-navy);

    font-size: 1rem;
    font-weight: 750;
}

.job-key-list {
    display: flex;
    flex-direction: column;
}

.job-key-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid var(--acgp-border);
}

.job-key-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.job-key-item > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    border-radius: 9px;

    color: var(--acgp-blue);
    background: var(--acgp-blue-soft);
}

.job-key-item small {
    display: block;

    margin-bottom: 2px;

    color: var(--acgp-muted);

    font-size: 0.64rem;
}

.job-key-item strong {
    display: block;

    color: var(--acgp-text);

    font-size: 0.78rem;
}

/* =========================================================
   CONSEILS
   ========================================================= */

.job-tips-card {
    border-color: #d9efd3;

    background: linear-gradient(135deg, #f6fff3, #edfbe9);
}

.job-tips-title {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;
}

.job-tips-title i {
    color: var(--acgp-green-dark);

    font-size: 1.25rem;
}

.job-tips-title h3 {
    margin: 0;

    color: var(--acgp-navy);

    font-size: 0.92rem;
    font-weight: 750;
}

.job-tips-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.job-tips-card li {
    position: relative;

    margin-bottom: 9px;
    padding-left: 20px;

    color: var(--acgp-body);

    font-size: 0.74rem;
    line-height: 1.5;
}

.job-tips-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--acgp-green-dark);

    font-weight: 800;
}

/* =========================================================
   AUTRES
   ========================================================= */

.job-closed-message {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 15px;

    border: 1px solid #efd9ad;
    border-radius: 9px;

    color: #946100;
    background: #fff9e9;

    font-size: 0.8rem;
    font-weight: 650;
}

.job-closed-full {
    width: 100%;
}

.job-detail-back {
    margin-top: 27px;
}

.job-detail-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--acgp-blue);

    font-size: 0.8rem;
    font-weight: 650;
}

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

@media (max-width: 991.98px) {
    .job-detail-header-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-detail-header-action {
        width: 100%;
    }

    .job-detail-header-action .portal-btn {
        width: 100%;
    }

    .job-detail-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .job-detail-header-card {
        padding: 21px;
    }

    .job-detail-header-card h1 {
        font-size: 2rem;
    }

    .job-detail-meta,
    .job-detail-dates {
        flex-direction: column;
        align-items: flex-start;

        gap: 9px;
    }

    .job-detail-main-card {
        padding: 20px;
    }

    .job-detail-info-grid {
        grid-template-columns: 1fr;
    }

    .job-detail-info-grid > div {
        border-right: 0;
    }
}
