```css
/* =====================================================
   VARIABLES
===================================================== */

:root {

    --onpa-blue-dark: #002b67;
    --onpa-blue: #075bd3;
    --onpa-blue-light: #eaf4ff;

    --onpa-yellow: #ffd21c;
    --onpa-yellow-dark: #f4bd00;

    --text-dark: #082c61;
    --text-light: #667b96;

    --white: #ffffff;
    --border: #e5edf6;

    --shadow:
        0 10px 35px rgba(0, 42, 103, .10);

    --transition:
        all .3s ease;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text-dark);
    background: #ffffff;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

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


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

.site-header {
    position: relative;
    z-index: 1000;
    background: #ffffff;
}


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

.header-main {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #ffffff 85%,
            #f9fcff 100%
        );

    border-bottom: 1px solid #eef3f8;
}

.header-container {
    width: min(1420px, 94%);
    min-height: 112px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   BRAND
===================================================== */

.brand {
    display: flex;
    align-items: center;

    gap: 17px;

    transition: var(--transition);
}

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

.brand-logo {
    width: 86px;
    height: 86px;

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

    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =====================================================
   BRAND INFORMATION
===================================================== */

.brand-information {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--onpa-blue-dark);

    font-size: 48px;
    line-height: .9;

    font-weight: 900;

    letter-spacing: -2px;
}

.brand-title {
    margin-top: 6px;

    color: var(--text-dark);

    font-size: 16px;
    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -.3px;
}

.brand-country {
    margin-top: 5px;

    color: #627895;

    font-size: 9px;
    line-height: 1;

    font-weight: 600;

    letter-spacing: .2px;
}


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

.header-actions {
    display: flex;
    align-items: center;

    gap: 13px;
}


/* =====================================================
   COUNTRY BUTTON
===================================================== */

.country-button {
    width: 44px;
    height: 44px;

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

    border: none;
    background: transparent;
}


/* =====================================================
   DRAPEAU RDC
===================================================== */

.flag-rdc {
    position: relative;

    width: 24px;
    height: 17px;

    display: block;

    overflow: hidden;

    background: #007fff;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, .12);
}

.flag-red {
    position: absolute;

    width: 30px;
    height: 4px;

    top: 7px;
    left: -3px;

    background: #f31830;

    transform: rotate(-35deg);
}

.flag-yellow {
    position: absolute;

    width: 30px;
    height: 7px;

    top: 5px;
    left: -3px;

    border-top: 2px solid #ffd21c;
    border-bottom: 2px solid #ffd21c;

    transform: rotate(-35deg);
}


/* =====================================================
   SEARCH BUTTON
===================================================== */

.search-button {
    width: 44px;
    height: 44px;

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

    border: none;
    border-radius: 50%;

    background: #f4f8fd;
    color: var(--onpa-blue-dark);

    transition: var(--transition);
}

.search-button:hover {
    background: var(--onpa-blue);
    color: white;

    transform: translateY(-2px);
}

.search-button svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;
    stroke-linecap: round;
}


/* =====================================================
   PARTNER BUTTON
===================================================== */

.partner-button {
    min-height: 44px;

    padding: 0 17px;

    display: flex;
    align-items: center;

    gap: 8px;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #003b82,
            #001f50
        );

    color: white;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .2px;

    box-shadow:
        0 5px 16px rgba(0, 43, 103, .20);

    transition: var(--transition);
}

.partner-button:hover {
    background:
        linear-gradient(
            135deg,
            #075bd3,
            #003a88
        );

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(0, 64, 160, .28);
}

.partner-icon {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: white;

    stroke-width: 1.7;
    stroke-linecap: round;
}


/* =====================================================
   SEARCH PANEL
===================================================== */

.search-panel {
    position: absolute;

    left: 0;
    right: 0;
    top: 100%;

    z-index: 1100;

    padding: 16px 0;

    background: white;

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

    box-shadow:
        0 15px 35px rgba(0, 43, 103, .13);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
}

.search-panel.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.search-container {
    width: min(900px, 92%);

    margin: auto;

    display: flex;
    gap: 10px;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-input-wrapper input {
    width: 100%;
    height: 48px;

    padding: 0 48px;

    border: 1px solid #d9e4f0;

    border-radius: 7px;

    outline: none;

    color: var(--text-dark);

    font-size: 13px;

    transition: var(--transition);
}

.search-input-wrapper input:focus {
    border-color: var(--onpa-blue);

    box-shadow:
        0 0 0 3px rgba(7, 91, 211, .10);
}

.search-input-icon {
    position: absolute;

    left: 16px;
    top: 50%;

    width: 18px;
    height: 18px;

    transform: translateY(-50%);

    fill: none;
    stroke: #7790aa;

    stroke-width: 2;
}

.search-close {
    position: absolute;

    right: 8px;
    top: 50%;

    width: 32px;
    height: 32px;

    transform: translateY(-50%);

    border: none;
    border-radius: 50%;

    background: #f1f5f9;
    color: #5e728a;

    font-size: 21px;
    line-height: 1;

    transition: var(--transition);
}

.search-close:hover {
    background: #e4ebf3;
    color: var(--onpa-blue-dark);
}

.search-submit {
    height: 48px;

    padding: 0 24px;

    border: none;
    border-radius: 7px;

    background: var(--onpa-blue);
    color: white;

    font-size: 10px;
    font-weight: 800;

    transition: var(--transition);
}

.search-submit:hover {
    background: var(--onpa-blue-dark);
}


/* =====================================================
   NAVIGATION
===================================================== */

.main-navigation {
    height: 48px;

    background:
        linear-gradient(
            90deg,
            #001e4e,
            #003b80,
            #002b67
        );

    box-shadow:
        0 3px 12px rgba(0, 30, 78, .12);
}

.navigation-container {
    width: min(1420px, 94%);
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   NAV LINKS
===================================================== */

.nav-link {
    position: relative;

    height: 100%;

    padding: 0 8px;

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

    color: rgba(255, 255, 255, .93);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .15px;

    white-space: nowrap;

    transition: var(--transition);
}

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

    position: absolute;

    left: 8px;
    right: 8px;
    bottom: 0;

    height: 3px;

    background: var(--onpa-yellow);

    transform: scaleX(0);

    transform-origin: center;

    transition: var(--transition);
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: white;
}


/* =====================================================
   DROPDOWN
===================================================== */

.nav-dropdown {
    position: relative;
    height: 100%;
}

.nav-dropdown-button {
    height: 100%;

    padding: 0 9px;

    display: flex;
    align-items: center;

    gap: 5px;

    border: none;
    background: transparent;

    color: white;

    font-size: 10px;
    font-weight: 800;
}

.nav-dropdown-button svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-button svg {
    transform: rotate(180deg);
}


/* =====================================================
   DROPDOWN MENU
===================================================== */

.dropdown-menu {
    position: absolute;

    top: 48px;
    left: 0;

    width: 245px;

    padding: 8px;

    background: white;

    border-radius:
        0 0 9px 9px;

    box-shadow:
        0 15px 35px rgba(0, 35, 80, .20);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown-menu a {
    min-height: 43px;

    padding: 0 12px;

    display: flex;
    align-items: center;

    gap: 10px;

    border-radius: 6px;

    color: var(--text-dark);

    font-size: 10px;
    font-weight: 700;

    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--onpa-blue-light);
    color: var(--onpa-blue);

    transform: translateX(3px);
}

.dropdown-icon {
    width: 27px;
    height: 27px;

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

    border-radius: 6px;

    background: #eef5ff;

    font-size: 14px;
}


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

.hero {
    position: relative;

    width: 100%;
    height: 610px;

    overflow: hidden;

    background: #ffffff;
}


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

.hero-slider {
    position: relative;

    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}


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

.hero-content {
    position: relative;

    z-index: 5;

    width: 45%;
    height: 100%;

    padding-left: 5.2%;
    padding-top: 68px;
    padding-right: 30px;

    display: flex;
    flex-direction: column;

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

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 78%,
            rgba(255,255,255,.95) 90%,
            rgba(255,255,255,0) 100%
        );

    transform: translateX(-25px);

    opacity: 0;

    transition:
        transform .8s ease .15s,
        opacity .8s ease .15s;
}

.hero-slide.active .hero-content {
    transform: translateX(0);
    opacity: 1;
}


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

.hero-content h1 {
    max-width: 650px;

    margin: 0 0 30px 0;

    color: var(--onpa-blue-dark);

    font-size:
        clamp(35px, 3.15vw, 52px);

    line-height: 1.10;

    font-weight: 800;

    letter-spacing: -1.3px;
}

.hero-content h1 span {
    color: var(--onpa-blue);
}


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

.hero-line {
    width: 48px;
    height: 6px;

    margin-bottom: 30px;

    border-radius: 2px;

    background: var(--onpa-yellow);
}


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

.hero-content p {
    max-width: 515px;

    margin: 0 0 32px 0;

    color: #405c80;

    font-size: 17px;

    line-height: 1.65;

    font-weight: 500;
}


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

.hero-button {
    height: 65px;
    min-width: 275px;

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

    overflow: hidden;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #075bd3,
            #0348b1
        );

    color: white;

    box-shadow:
        0 7px 20px rgba(0, 64, 150, .22);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.hero-button span {
    padding-left: 30px;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .2px;
}

.hero-button strong {
    width: 67px;
    height: 100%;

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

    background:
        rgba(0, 34, 100, .25);

    color: var(--onpa-yellow);

    font-size: 34px;
    font-weight: 400;

    transition:
        transform .3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(0, 64, 150, .30);
}

.hero-button:hover strong {
    transform: translateX(5px);
}


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

.hero-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 69%;
    height: 100%;

    overflow: hidden;
}

.hero-image::before {
    content: "";

    position: absolute;

    z-index: 2;

    top: 0;
    left: 0;

    width: 230px;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,.96) 12%,
            rgba(255,255,255,.70) 30%,
            rgba(255,255,255,0) 100%
        );

    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1);

    transition:
        transform 7s cubic-bezier(.2,.7,.2,1);
}

.hero-slide.active .hero-image img {
    transform: scale(1.045);
}


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

.hero-dots {
    position: absolute;

    z-index: 20;

    left: 50%;
    bottom: 13px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 14px;
}

.hero-dot {
    width: 22px;
    height: 22px;

    padding: 0;

    border:
        3px solid rgba(255,255,255,.75);

    border-radius: 50%;

    background:
        rgba(255,255,255,.10);

    cursor: pointer;

    transition:
        all .3s ease;
}

.hero-dot:hover {
    transform: scale(1.15);
}

.hero-dot.active {
    background: #ffffff;
    border-color: #ffffff;
}


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

.hero-arrow {
    position: absolute;

    z-index: 25;

    top: 50%;

    width: 45px;
    height: 45px;

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

    border: none;
    border-radius: 50%;

    background:
        rgba(0,43,103,.65);

    color: white;

    font-size: 32px;
    line-height: 1;

    opacity: 0;

    transform: translateY(-50%);

    transition:
        opacity .3s ease,
        background .3s ease;
}

.hero:hover .hero-arrow {
    opacity: 1;
}

.hero-arrow:hover {
    background: var(--onpa-blue);
}

.hero-arrow-prev {
    left: 20px;
}

.hero-arrow-next {
    right: 20px;
}

```css
/* =====================================================
   ÉTAPE 3 — CHIFFRES CLÉS ONPA
===================================================== */

.onpa-stats {

    position: relative;

    width: 100%;

    padding: 78px 0 70px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );

    overflow: hidden;
}


/* =====================================================
   LIGNE DÉCORATIVE
===================================================== */

.stats-top-line {

    position: absolute;

    top: 0;

    left: 50%;

    width: 90px;

    height: 4px;

    transform: translateX(-50%);

    background: var(--onpa-yellow);

    border-radius: 0 0 4px 4px;
}


/* =====================================================
   CONTAINER
===================================================== */

.stats-container {

    width: min(1250px, 92%);

    margin: auto;
}


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

.stats-header {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.stats-kicker {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--onpa-blue);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.stats-header h2 {

    margin: 0;

    color: var(--onpa-blue-dark);

    font-size:
        clamp(30px, 3vw, 43px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}


.stats-header h2 span {

    color: var(--onpa-blue);
}


/* =====================================================
   LIGNE JAUNE
===================================================== */

.stats-title-line {

    width: 48px;

    height: 5px;

    margin: 18px auto 20px;

    background: var(--onpa-yellow);

    border-radius: 3px;
}


.stats-header p {

    max-width: 690px;

    margin: auto;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.7;

    font-weight: 500;
}


/* =====================================================
   GRILLE
===================================================== */

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


/* =====================================================
   CARD
===================================================== */

.stat-card {

    position: relative;

    min-height: 285px;

    padding: 32px 24px 27px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    background: #ffffff;

    border:
        1px solid var(--border);

    border-radius: 12px;

    box-shadow:
        0 8px 30px
        rgba(0, 42, 103, .07);

    overflow: hidden;

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


.stat-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--onpa-blue-dark),
            var(--onpa-blue)
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .35s ease;
}


.stat-card:hover {

    transform:
        translateY(-8px);

    border-color:
        #d5e5f8;

    box-shadow:
        0 18px 42px
        rgba(0, 42, 103, .13);
}


.stat-card:hover::before {

    transform:
        scaleX(1);
}


/* =====================================================
   ICÔNE
===================================================== */

.stat-icon {

    width: 58px;

    height: 58px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        var(--onpa-blue-light);

    color:
        var(--onpa-blue);

    transition:
        transform .35s ease,
        background .35s ease;
}


.stat-card:hover .stat-icon {

    transform:
        rotate(-4deg)
        scale(1.05);

    background:
        var(--onpa-blue);

    color:
        white;
}


.stat-icon svg {

    width: 29px;

    height: 29px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   CHIFFRE
===================================================== */

.stat-number {

    display: flex;

    align-items: baseline;

    gap: 3px;

    margin-bottom: 8px;

    color:
        var(--onpa-blue-dark);

    font-size: 38px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -1.5px;
}


.stat-plus {

    color:
        var(--onpa-yellow-dark);

    font-size: 25px;

    font-weight: 900;
}


.stat-unit {

    color:
        var(--onpa-yellow-dark);

    font-size: 20px;

    font-weight: 900;

    margin-left: 3px;
}


/* =====================================================
   TITRE CARD
===================================================== */

.stat-card h3 {

    margin-bottom: 9px;

    color:
        var(--text-dark);

    font-size: 14px;

    line-height: 1.3;

    font-weight: 850;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.stat-card p {

    max-width: 245px;

    margin-top: auto;

    color:
        var(--text-light);

    font-size: 11px;

    line-height: 1.6;

    font-weight: 500;
}


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

.stats-footer {

    max-width: 680px;

    margin: 42px auto 0;

    padding: 14px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border:
        1px solid #e1ebf5;

    border-radius: 8px;

    background:
        rgba(255,255,255,.75);
}


.stats-footer-icon {

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        var(--onpa-yellow);

    color:
        var(--onpa-blue-dark);

    font-size: 13px;

    font-weight: 900;
}


.stats-footer p {

    color:
        #58708d;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 600;

    text-align: center;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .onpa-stats {

        padding:
            65px 0 60px;
    }


    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 16px;
    }


    .stat-card {

        min-height: 260px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .onpa-stats {

        padding:
            58px 0 50px;
    }


    .stats-container {

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


    .stats-header {

        margin-bottom: 35px;
    }


    .stats-kicker {

        font-size: 9px;

        letter-spacing: 1.4px;
    }


    .stats-header h2 {

        font-size: 29px;

        letter-spacing: -.7px;
    }


    .stats-header p {

        font-size: 13px;

        line-height: 1.6;
    }


    .stats-title-line {

        width: 42px;

        height: 4px;

        margin:
            15px auto 17px;
    }


    .stats-grid {

        grid-template-columns:
            1fr;

        gap: 13px;
    }


    .stat-card {

        min-height: 0;

        padding:
            24px 22px;

        border-radius: 10px;
    }


    .stat-icon {

        width: 52px;

        height: 52px;

        margin-bottom: 17px;
    }


    .stat-icon svg {

        width: 26px;

        height: 26px;
    }


    .stat-number {

        font-size: 34px;
    }


    .stat-card h3 {

        font-size: 13px;
    }


    .stat-card p {

        max-width: 100%;

        margin-top: 4px;

        font-size: 11px;
    }


    .stats-footer {

        margin-top: 30px;

        padding:
            12px 15px;
    }


    .stats-footer p {

        font-size: 10px;
    }

}


/* =====================================================
   PETIT MOBILE
===================================================== */

@media (max-width: 430px) {

    .onpa-stats {

        padding:
            48px 0 42px;
    }


    .stats-container {

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


    .stats-header h2 {

        font-size: 26px;
    }


    .stats-header p {

        font-size: 12px;
    }


    .stat-card {

        padding:
            21px 19px;
    }


    .stat-number {

        font-size: 31px;
    }


    .stat-plus {

        font-size: 21px;
    }

}
/* =====================================================
   ÉTAPE 4 — ACTUALITÉS & ANNONCES
===================================================== */

.onpa-news {

    position: relative;

    width: 100%;

    padding: 78px 0 82px;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
   CONTAINER
===================================================== */

.news-container {

    width: min(1400px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 2.25fr)
        minmax(330px, .95fr);

    gap: 32px;

    align-items: stretch;
}


/* =====================================================
   PARTIE ACTUALITÉS
===================================================== */

.news-main {

    min-width: 0;
}


/* =====================================================
   HEADER ACTUALITÉS
===================================================== */

.news-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 24px;
}


.news-header h2 {

    color: var(--onpa-blue-dark);

    font-size: 30px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -.7px;
}


.news-view-all {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0;

    border: none;

    background: transparent;

    color: var(--onpa-blue);

    font-size: 15px;

    font-weight: 900;

    transition: var(--transition);
}


.news-view-all:hover {

    color: var(--onpa-blue-dark);

    transform: translateX(5px);
}


.news-arrow {

    font-size: 27px;

    line-height: .7;

    font-weight: 400;
}


/* =====================================================
   GRILLE
===================================================== */

.news-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


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

.news-card {

    min-width: 0;

    background: #ffffff;

    border-radius: 14px;

    border: 1px solid #edf2f7;

    overflow: hidden;

    box-shadow:
        0 8px 26px
        rgba(0, 42, 103, .09);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.news-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 17px 38px
        rgba(0, 42, 103, .15);
}


.news-card-link {

    display: block;

    height: 100%;
}


/* =====================================================
   IMAGE
===================================================== */

.news-image {

    position: relative;

    width: 100%;

    height: 205px;

    overflow: hidden;

    background: #eaf4ff;
}


.news-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .5s ease;
}


.news-card:hover .news-image img {

    transform:
        scale(1.06);
}


/* =====================================================
   CATÉGORIE
===================================================== */

.news-category {

    position: absolute;

    left: 0;

    bottom: 0;

    padding: 10px 16px;

    background:
        var(--onpa-blue);

    color: #ffffff;

    font-size: 12px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: .2px;
}


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

.news-content {

    padding:
        20px 18px 21px;
}


.news-content h3 {

    min-height: 91px;

    margin: 0;

    color: var(--text-dark);

    font-size: 18px;

    line-height: 1.65;

    font-weight: 800;
}


/* =====================================================
   DATE
===================================================== */

.news-date {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 14px;

    color: #385776;

    font-size: 13px;

    font-weight: 600;
}


.news-date svg {

    width: 18px;

    height: 18px;

    flex-shrink: 0;

    fill: none;

    stroke:
        var(--onpa-blue);

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =====================================================
   ACTUALITÉS CACHÉES
===================================================== */

.news-card-hidden {

    display: none;
}


.news-grid.show-all
.news-card-hidden {

    display: block;
}


/* =====================================================
   ANNONCES IMPORTANTES
===================================================== */

.important-announcements {

    min-width: 0;

    padding:
        30px 30px 28px;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #063d91 0%,
            #002b67 100%
        );

    box-shadow:
        0 10px 30px
        rgba(0, 42, 103, .17);

    color: #ffffff;
}


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

.announcements-header {

    display: flex;

    align-items: center;

    gap: 14px;

    padding-bottom: 23px;

    border-bottom:
        2px solid
        rgba(255,255,255,.30);
}


.announcement-bell {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--onpa-yellow);
}


.announcement-bell svg {

    width: 37px;

    height: 37px;

    fill:
        var(--onpa-yellow);

    stroke:
        var(--onpa-yellow);

    stroke-width: 1.5;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.announcements-header h2 {

    color: #ffffff;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 900;

    white-space: nowrap;
}


/* =====================================================
   LISTE ANNONCES
===================================================== */

.announcements-list {

    width: 100%;
}


/* =====================================================
   ITEM ANNONCE
===================================================== */

.announcement-item {

    display: grid;

    grid-template-columns: 64px 1fr;

    gap: 17px;

    align-items: center;

    padding: 18px 0;

    border-bottom:
        2px solid
        rgba(255,255,255,.18);
}


/* =====================================================
   DATE
===================================================== */

.announcement-date {

    width: 64px;

    height: 64px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
        rgba(0, 31, 83, .55);
}


.announcement-date strong {

    color:
        var(--onpa-yellow);

    font-size: 29px;

    line-height: 1;

    font-weight: 900;
}


.announcement-date span {

    margin-top: 5px;

    color:
        var(--onpa-yellow);

    font-size: 12px;

    line-height: 1;

    font-weight: 900;
}


/* =====================================================
   TEXTE
===================================================== */

.announcement-text {

    color: #ffffff;

    font-size: 15px;

    line-height: 1.65;

    font-weight: 600;
}


/* =====================================================
   BOUTON ANNONCES
===================================================== */

.announcements-button {

    width: 100%;

    min-height: 59px;

    margin-top: 25px;

    padding: 0 15px;

    border: none;

    border-radius: 8px;

    background:
        var(--onpa-yellow);

    color:
        var(--onpa-blue-dark);

    font-size: 15px;

    font-weight: 900;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.announcements-button:hover {

    background:
        #ffe04d;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 18px
        rgba(0,0,0,.20);
}


/* =====================================================
   TABLETTE
===================================================== */

@media (max-width: 1050px) {

    .onpa-news {

        padding:
            65px 0 65px;
    }


    .news-container {

        grid-template-columns:
            1fr;
    }


    .important-announcements {

        width: 100%;
    }


    .news-grid {

        gap: 16px;
    }


    .news-image {

        height: 190px;
    }

}


/* =====================================================
   TABLETTE / PETIT ÉCRAN
===================================================== */

@media (max-width: 760px) {

    .onpa-news {

        padding:
            55px 0 55px;
    }


    .news-container {

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


    .news-header h2 {

        font-size: 26px;
    }


    .news-view-all {

        font-size: 12px;

        gap: 7px;
    }


    .news-arrow {

        font-size: 22px;
    }


    .news-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }


    .news-image {

        height: 180px;
    }


    .news-content {

        padding:
            17px 15px 18px;
    }


    .news-content h3 {

        min-height: 0;

        font-size: 15px;

        line-height: 1.5;
    }


    .news-date {

        font-size: 11px;
    }


    .important-announcements {

        padding:
            25px 21px;
    }


    .announcements-header h2 {

        font-size: 17px;

        white-space: normal;
    }


    .announcement-text {

        font-size: 14px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 560px) {

    .news-grid {

        grid-template-columns:
            1fr;
    }


    .news-image {

        height: 215px;
    }


    .news-content h3 {

        font-size: 17px;
    }


    .announcement-item {

        grid-template-columns:
            59px 1fr;

        gap: 13px;
    }


    .announcement-date {

        width: 59px;

        height: 59px;
    }


    .announcement-date strong {

        font-size: 25px;
    }


    .announcement-text {

        font-size: 13px;

        line-height: 1.55;
    }


    .announcements-button {

        min-height: 54px;

        font-size: 13px;
    }

}


/* =====================================================
   PETIT MOBILE
===================================================== */

@media (max-width: 430px) {

    .onpa-news {

        padding:
            45px 0 45px;
    }


    .news-container {

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


    .news-header {

        margin-bottom: 20px;
    }


    .news-header h2 {

        font-size: 24px;
    }


    .news-view-all span:first-child {

        font-size: 10px;
    }


    .news-image {

        height: 195px;
    }


    .important-announcements {

        padding:
            22px 17px;
    }


    .announcements-header {

        gap: 9px;
    }


    .announcement-bell {

        width: 35px;

        height: 35px;
    }


    .announcement-bell svg {

        width: 31px;

        height: 31px;
    }


    .announcements-header h2 {

        font-size: 15px;
    }

}

```css
/* =====================================================
   ÉTAPE 4 — ACTUALITÉS ONPA
===================================================== */


/* =====================================================
   SECTION
===================================================== */

.onpa-news {

    position: relative;

    padding: 110px 0 120px;

    background:
        #f5f8f7;

    overflow: hidden;

}


/* =====================================================
   LIGNE SUPÉRIEURE
===================================================== */

.news-top-line {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #006b3f 0%,
            #006b3f 42%,
            #f5c400 42%,
            #f5c400 58%,
            #ce1126 58%,
            #ce1126 100%
        );

}


/* =====================================================
   CONTAINER
===================================================== */

.news-container {

    width: min(
        1380px,
        calc(100% - 80px)
    );

    margin: 0 auto;

}


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

.news-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;

}


.news-header-content {

    max-width: 760px;

}


.news-kicker {

    display: inline-block;

    margin-bottom: 14px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    color: #087443;

}


.news-header h2 {

    margin: 0;

    font-size: clamp(
        34px,
        4vw,
        52px
    );

    line-height: 1.08;

    font-weight: 800;

    color: #14352a;

}


.news-header h2 span {

    color: #087443;

}


.news-title-line {

    width: 65px;

    height: 4px;

    margin: 22px 0;

    background: #f2c400;

}


.news-header p {

    max-width: 680px;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: #63736d;

}


/* =====================================================
   BOUTON VOIR TOUTES
===================================================== */

.news-view-all {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 16px 23px;

    border: 2px solid #087443;

    background: transparent;

    color: #087443;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;

}


.news-view-all:hover {

    background: #087443;

    color: #ffffff;

    transform: translateY(-3px);

}


.news-arrow {

    font-size: 21px;

    line-height: 1;

    transition:
        transform .25s ease;

}


.news-view-all:hover .news-arrow {

    transform: translateX(5px);

}


/* =====================================================
   LAYOUT
===================================================== */

.news-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap: 35px;

    align-items: start;

}


/* =====================================================
   GRILLE
===================================================== */

.news-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;

}


/* =====================================================
   CARTE ACTUALITÉ
===================================================== */

.news-card {

    background: #ffffff;

    border: 1px solid #e5ebe8;

    box-shadow:
        0 12px 35px
        rgba(17, 55, 43, .06);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.news-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(17, 55, 43, .12);

}


/* =====================================================
   IMAGE
===================================================== */

.news-image {

    position: relative;

    height: 235px;

    overflow: hidden;

    background: #dfe9e5;

}


.news-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .5s ease;

}


.news-card:hover .news-image img {

    transform: scale(1.06);

}


/* =====================================================
   CATÉGORIE
===================================================== */

.news-category {

    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 8px 12px;

    background: #087443;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


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

.news-content {

    padding: 25px 26px 28px;

}


.news-date {

    margin-bottom: 12px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;

    color: #9aa8a2;

}


.news-content h3 {

    margin: 0 0 14px;

    font-size: 21px;

    line-height: 1.35;

    color: #17382d;

}


.news-content p {

    margin: 0 0 22px;

    font-size: 14px;

    line-height: 1.7;

    color: #697973;

}


/* =====================================================
   LIEN
===================================================== */

.news-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #087443;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.news-link strong {

    font-size: 19px;

    transition:
        transform .25s ease;

}


.news-link:hover strong {

    transform:
        translateX(5px);

}


/* =====================================================
   ACTUALITÉS CACHÉES
===================================================== */

.news-card:nth-child(n + 4) {

    display: none;

}


.news-grid.show-all
.news-card:nth-child(n + 4) {

    display: block;

}


/* =====================================================
   COLONNE ANNONCES
===================================================== */

.news-announcements {

    position: sticky;

    top: 110px;

    padding: 30px;

    background: #14352a;

    color: #ffffff;

    box-shadow:
        0 18px 45px
        rgba(10, 42, 30, .16);

}


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

.announcements-kicker {

    display: block;

    margin-bottom: 10px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #f4c400;

}


.announcements-top h3 {

    margin: 0;

    font-size: 25px;

    line-height: 1.25;

}


.announcements-line {

    width: 45px;

    height: 3px;

    margin: 18px 0 25px;

    background: #f4c400;

}


/* =====================================================
   ANNONCE
===================================================== */

.announcement-item {

    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 16px;

    padding: 20px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.13);

}


.announcement-date {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 58px;
    height: 62px;

    background: #087443;

}


.announcement-date strong {

    font-size: 23px;

    line-height: 1;

}


.announcement-date span {

    margin-top: 5px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


.announcement-content > span {

    display: block;

    margin-bottom: 6px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

    color: #f4c400;

}


.announcement-content h4 {

    margin: 0;

    font-size: 14px;

    line-height: 1.45;

    font-weight: 600;

    color: #ffffff;

}


/* =====================================================
   BOUTON ANNONCES
===================================================== */

.announcements-button {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-top: 28px;

    padding: 15px 17px;

    border: 1px solid
        rgba(255,255,255,.35);

    background: transparent;

    color: #ffffff;

    cursor: pointer;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    transition:
        background .25s ease,
        border-color .25s ease;

}


.announcements-button strong {

    font-size: 18px;

}


.announcements-button:hover {

    background: #087443;

    border-color: #087443;

}


/* =====================================================
   RESPONSIVE — TABLETTE
===================================================== */

@media (max-width: 1100px) {

    .news-container {

        width: min(
            100% - 50px,
            900px
        );

    }


    .news-layout {

        grid-template-columns:
            1fr;

    }


    .news-announcements {

        position: relative;

        top: auto;

    }


    .announcement-item {

        grid-template-columns:
            65px 1fr;

    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 760px) {

    .onpa-news {

        padding: 75px 0 80px;

    }


    .news-container {

        width:
            calc(100% - 32px);

    }


    .news-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        margin-bottom: 38px;

    }


    .news-header h2 {

        font-size: 34px;

    }


    .news-header p {

        font-size: 14px;

        line-height: 1.7;

    }


    .news-grid {

        grid-template-columns:
            1fr;

        gap: 22px;

    }


    .news-image {

        height: 220px;

    }


    .news-content {

        padding:
            22px 20px 24px;

    }


    .news-content h3 {

        font-size: 19px;

    }


    .news-announcements {

        padding: 25px 20px;

    }

}


/* =====================================================
   PETITS MOBILES
===================================================== */

@media (max-width: 420px) {

    .news-header h2 {

        font-size: 30px;

    }


    .news-view-all {

        width: 100%;

        justify-content: space-between;

    }


    .news-image {

        height: 195px;

    }


    .announcement-item {

        grid-template-columns:
            54px 1fr;

        gap: 12px;

    }


    .announcement-date {

        width: 54px;

        height: 58px;

    }

}
```css
/* =====================================================
   ÉTAPE 4 — ACTUALITÉS ONPA
===================================================== */


/* =====================================================
   SECTION PRINCIPALE
===================================================== */

.onpa-news {

    position: relative;

    padding: 100px 0 110px;

    background: #f5f8fa;

    overflow: hidden;
}


/* =====================================================
   LIGNE DÉCORATIVE SUPÉRIEURE
===================================================== */

.news-top-line {

    width: 100%;

    height: 5px;

    background: linear-gradient(
        90deg,
        #0066a1 0%,
        #0066a1 55%,
        #f4c300 55%,
        #f4c300 75%,
        #ce1126 75%,
        #ce1126 100%
    );
}


/* =====================================================
   CONTAINER
===================================================== */

.news-container {

    width: min(1380px, 92%);

    margin: 0 auto;
}


/* =====================================================
   HEADER DE LA SECTION
===================================================== */

.news-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}


.news-header-content {

    max-width: 780px;
}


.news-kicker {

    display: inline-block;

    margin-bottom: 14px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    color: #0066a1;
}


.news-header h2 {

    margin: 0;

    font-size: clamp(
        32px,
        4vw,
        52px
    );

    line-height: 1.12;

    font-weight: 800;

    color: #123247;
}


.news-header h2 span {

    display: block;

    color: #0066a1;
}


.news-title-line {

    width: 70px;

    height: 4px;

    margin: 22px 0;

    background: #f4c300;
}


.news-header p {

    max-width: 700px;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: #61727d;
}


/* =====================================================
   BOUTON VOIR TOUTES
===================================================== */

.news-view-all {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-width: 190px;

    padding: 15px 22px;

    border: 2px solid #0066a1;

    background: transparent;

    color: #0066a1;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.news-view-all:hover {

    background: #0066a1;

    color: #fff;

    transform: translateY(-3px);
}


.news-arrow {

    font-size: 20px;

    line-height: 1;

    transition: transform .3s ease;
}


.news-view-all:hover .news-arrow {

    transform: translateX(5px);
}


/* =====================================================
   LAYOUT ACTUALITÉS + ANNONCES
===================================================== */

.news-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 40px;

    align-items: start;
}


/* =====================================================
   GRILLE DES ACTUALITÉS
===================================================== */

.news-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =====================================================
   CARTE ACTUALITÉ
===================================================== */

.news-card {

    background: #fff;

    border: 1px solid #e3eaee;

    box-shadow:
        0 8px 30px rgba(
            20,
            55,
            75,
            .07
        );

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.news-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(
            20,
            55,
            75,
            .14
        );
}


/* =====================================================
   IMAGE
===================================================== */

.news-image {

    position: relative;

    height: 220px;

    overflow: hidden;

    background: #dce8ee;
}


.news-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease;
}


.news-card:hover .news-image img {

    transform: scale(1.07);
}


/* =====================================================
   CATÉGORIE
===================================================== */

.news-category {

    position: absolute;

    left: 16px;

    bottom: 16px;

    padding: 8px 12px;

    background: #0066a1;

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


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

.news-content {

    padding: 25px 25px 28px;
}


.news-date {

    margin-bottom: 12px;

    color: #f0b800;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.news-content h3 {

    margin: 0 0 15px;

    color: #17394d;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 750;
}


.news-content p {

    margin: 0 0 22px;

    color: #667883;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   LIEN ARTICLE
===================================================== */

.news-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #0066a1;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;

    transition: color .3s ease;
}


.news-link strong {

    font-size: 18px;

    line-height: 1;

    transition:
        transform .3s ease;
}


.news-link:hover {

    color: #ce1126;
}


.news-link:hover strong {

    transform: translateX(5px);
}


/* =====================================================
   ACTUALITÉS 4 À 6
   MASQUÉES PAR DÉFAUT
===================================================== */

.news-grid .news-card:nth-child(n + 4) {

    display: none;
}


/* =====================================================
   AFFICHER TOUTES
===================================================== */

.news-grid.show-all .news-card:nth-child(n + 4) {

    display: block;

    animation: newsCardAppear .45s ease both;
}


@keyframes newsCardAppear {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =====================================================
   COLONNE ANNONCES
===================================================== */

.news-announcements {

    background: #123247;

    padding: 32px 28px;

    color: #fff;

    box-shadow:
        0 12px 35px rgba(
            20,
            55,
            75,
            .12
        );
}


/* =====================================================
   EN-TÊTE ANNONCES
===================================================== */

.announcements-kicker {

    display: block;

    margin-bottom: 9px;

    color: #f4c300;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.announcements-top h3 {

    margin: 0;

    color: #fff;

    font-size: 25px;

    line-height: 1.2;
}


.announcements-line {

    width: 45px;

    height: 3px;

    margin: 18px 0 24px;

    background: #f4c300;
}


/* =====================================================
   ANNONCE
===================================================== */

.announcement-item {

    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 15px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        .12
    );
}


.announcement-date {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 62px;

    background: #0066a1;

    text-align: center;
}


.announcement-date strong {

    display: block;

    font-size: 22px;

    line-height: 1;

    color: #fff;
}


.announcement-date span {

    margin-top: 5px;

    color: #d9edf7;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


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

.announcement-content > span {

    display: block;

    margin-bottom: 7px;

    color: #f4c300;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.announcement-content h4 {

    margin: 0;

    color: #fff;

    font-size: 14px;

    line-height: 1.45;

    font-weight: 600;
}


/* =====================================================
   BOUTON ANNONCES
===================================================== */

.announcements-button {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 28px;

    padding: 15px 0;

    border: none;

    border-top: 1px solid rgba(
        255,
        255,
        255,
        .2
    );

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        .2
    );

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    transition: color .3s ease;
}


.announcements-button strong {

    color: #f4c300;

    font-size: 20px;

    transition:
        transform .3s ease;
}


.announcements-button:hover {

    color: #f4c300;
}


.announcements-button:hover strong {

    transform: translateX(6px);
}


/* =====================================================
   TABLETTE
===================================================== */

@media (max-width: 1150px) {

    .news-layout {

        grid-template-columns: 1fr;
    }


    .news-announcements {

        max-width: none;
    }


    .news-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   TABLETTE PETITE
===================================================== */

@media (max-width: 850px) {

    .onpa-news {

        padding: 75px 0 85px;
    }


    .news-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }


    .news-view-all {

        align-self: flex-start;
    }


    .news-grid {

        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .onpa-news {

        padding: 60px 0 70px;
    }


    .news-container {

        width: min(
            94%,
            1380px
        );
    }


    .news-header {

        margin-bottom: 35px;
    }


    .news-header h2 {

        font-size: 31px;
    }


    .news-header p {

        font-size: 14px;

        line-height: 1.7;
    }


    .news-grid {

        grid-template-columns: 1fr;

        gap: 22px;
    }


    .news-grid .news-card:nth-child(n + 4) {

        display: none;
    }


    .news-grid.show-all .news-card:nth-child(n + 4) {

        display: block;
    }


    .news-image {

        height: 210px;
    }


    .news-content {

        padding: 22px;
    }


    .news-content h3 {

        font-size: 18px;
    }


    .news-announcements {

        padding: 27px 22px;
    }


    .announcement-item {

        grid-template-columns:
            55px 1fr;
    }


    .announcement-date {

        width: 55px;

        height: 60px;
    }

}


/* =====================================================
   TRÈS PETITS ÉCRANS
===================================================== */

@media (max-width: 400px) {

    .news-header h2 {

        font-size: 27px;
    }


    .news-view-all {

        width: 100%;
    }


    .news-image {

        height: 190px;
    }

}
/* =====================================================
   ÉTAPE 4 — ACTUALITÉS & ANNONCES
   VERSION FINALE
===================================================== */

.onpa-news {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}

.news-container {
    width: min(1400px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 34px;

    align-items: start;
}


/* =====================================================
   COLONNE ACTUALITÉS
===================================================== */

.news-main {
    min-width: 0;
}


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

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.news-kicker {
    display: block;

    margin-bottom: 5px;

    color: #0a4aa6;

    font-size: 27px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: -.5px;
}

.news-header h2 {
    display: none;
}


.news-view-all {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding: 8px 0;

    border: none;
    background: transparent;

    color: #0752b5;

    font-size: 16px;
    font-weight: 900;

    cursor: pointer;

    transition:
        color .25s ease;
}

.news-view-all:hover {
    color: #003a82;
}

.news-arrow {
    font-size: 29px;
    line-height: 1;

    transition:
        transform .25s ease;
}

.news-view-all:hover .news-arrow {
    transform: translateX(5px);
}


/* =====================================================
   GRILLE
===================================================== */

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


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

.news-card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 7px 24px rgba(0, 50, 120, .10);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.news-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 35px rgba(0, 50, 120, .16);
}


.news-card-link {
    display: block;

    height: 100%;

    color: inherit;
    text-decoration: none;
}


/* =====================================================
   IMAGE
===================================================== */

.news-image {
    position: relative;

    width: 100%;
    height: 205px;

    overflow: hidden;

    background: #eaf1f8;
}

.news-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.06);
}


/* =====================================================
   CATÉGORIE
===================================================== */

.news-category {
    position: absolute;

    left: 0;
    bottom: 0;

    padding: 10px 17px;

    background: #075fc4;

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: .2px;
}


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

.news-content {
    padding: 20px 19px 21px;
}

.news-content h3 {
    min-height: 82px;

    margin: 0 0 18px;

    color: #123b72;

    font-size: 18px;
    line-height: 1.45;

    font-weight: 800;
}


/* =====================================================
   DATE
===================================================== */

.news-date {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #56708f;

    font-size: 13px;
    font-weight: 600;
}

.calendar-icon {
    width: 19px;
    height: 19px;

    display: inline-flex;

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

.calendar-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: #075fc4;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =====================================================
   ACTUALITÉS CACHÉES
===================================================== */

.news-card-hidden {
    display: none;
}

.news-grid.show-all .news-card-hidden {
    display: block;

    animation:
        newsCardAppear .45s ease both;
}

@keyframes newsCardAppear {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   ANNONCES
===================================================== */

.important-announcements {
    width: 100%;

    padding: 30px 30px 28px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #073b91,
            #0646a7
        );

    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(0, 43, 103, .20);
}


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

.announcements-header {
    display: flex;

    align-items: center;

    gap: 14px;
}

.announcement-bell {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

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

.announcement-bell svg {
    width: 39px;
    height: 39px;

    fill: #ffc400;
    stroke: #ffc400;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.announcements-header h2 {
    margin: 0;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.25;

    font-weight: 900;
}


/* =====================================================
   LIGNE
===================================================== */

.announcements-line {
    width: 100%;
    height: 2px;

    margin: 18px 0 5px;

    background:
        rgba(255,255,255,.40);
}


/* =====================================================
   LISTE
===================================================== */

.announcements-list {
    width: 100%;
}


/* =====================================================
   ANNONCE
===================================================== */

.announcement-item {
    display: grid;

    grid-template-columns: 64px minmax(0, 1fr);

    align-items: center;

    gap: 17px;

    padding: 18px 0;

    border-bottom:
        2px solid
        rgba(255,255,255,.20);
}


/* =====================================================
   DATE
===================================================== */

.announcement-date {
    width: 64px;
    height: 64px;

    display: flex;

    flex-direction: column;

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

    border-radius: 7px;

    background:
        rgba(0, 30, 80, .55);

    text-align: center;
}

.announcement-date strong {
    color: #ffc400;

    font-size: 28px;
    line-height: 1;

    font-weight: 900;
}

.announcement-date span {
    margin-top: 5px;

    color: #ffc400;

    font-size: 11px;
    line-height: 1;

    font-weight: 900;

    letter-spacing: .5px;
}


/* =====================================================
   TEXTE
===================================================== */

.announcement-text {
    color: #ffffff;

    font-size: 15px;

    line-height: 1.55;

    font-weight: 600;
}


/* =====================================================
   BOUTON
===================================================== */

.announcements-button {
    width: 100%;

    min-height: 59px;

    margin-top: 24px;

    padding: 0 15px;

    border: none;

    border-radius: 7px;

    background: #ffc400;

    color: #063b89;

    font-size: 16px;

    font-weight: 900;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.announcements-button:hover {
    background: #ffd633;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.20);
}


/* =====================================================
   TABLETTE
===================================================== */

@media (max-width: 1100px) {

    .news-container {
        grid-template-columns: 1fr;
    }

    .important-announcements {
        width: 100%;
    }

}


/* =====================================================
   TABLETTE
===================================================== */

@media (max-width: 800px) {

    .onpa-news {
        padding: 65px 0;
    }

    .news-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .news-image {
        height: 190px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 560px) {

    .onpa-news {
        padding: 50px 0;
    }

    .news-container {
        width: calc(100% - 30px);
    }

    .news-header {
        margin-bottom: 22px;
    }

    .news-kicker {
        font-size: 24px;
    }

    .news-view-all {
        font-size: 12px;

        gap: 6px;
    }

    .news-arrow {
        font-size: 22px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-image {
        height: 215px;
    }

    .news-content h3 {
        min-height: 0;

        font-size: 17px;
    }

    .important-announcements {
        padding: 25px 20px;
    }

    .announcements-header h2 {
        font-size: 17px;
    }

    .announcement-item {
        grid-template-columns:
            59px minmax(0, 1fr);

        gap: 13px;
    }

    .announcement-date {
        width: 59px;
        height: 59px;
    }

    .announcement-date strong {
        font-size: 25px;
    }

    .announcement-text {
        font-size: 13px;
    }

    .announcements-button {
        min-height: 54px;

        font-size: 13px;
    }

}
/* =====================================================
   FOOTER ONPA
===================================================== */

.onpa-footer {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0647a8 0%,
            #063d91 55%,
            #04347d 100%
        );

    color: #ffffff;
}


/* =====================================================
   EFFET DE LIGNES ONDULÉES
===================================================== */

.onpa-footer::before,
.onpa-footer::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    pointer-events: none;
}

.onpa-footer::before {
    left: -260px;
    top: 20px;

    box-shadow:
        35px 0 0 rgba(255,255,255,.05),
        70px 0 0 rgba(255,255,255,.04),
        105px 0 0 rgba(255,255,255,.03);
}

.onpa-footer::after {
    right: -260px;
    bottom: -220px;

    box-shadow:
        -35px 0 0 rgba(255,255,255,.05),
        -70px 0 0 rgba(255,255,255,.04),
        -105px 0 0 rgba(255,255,255,.03);
}


/* =====================================================
   CONTAINER
===================================================== */

.footer-container {
    position: relative;

    z-index: 2;

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

    margin: 0 auto;

    padding: 38px 0 32px;

    display: grid;

    grid-template-columns:
        1.35fr
        .9fr
        1.1fr
        1.35fr;

    gap: 48px;
}


/* =====================================================
   COLONNES
===================================================== */

.footer-column {
    min-width: 0;
}


/* =====================================================
   SÉPARATEURS
===================================================== */

.footer-links,
.footer-services,
.footer-newsletter {
    position: relative;

    padding-left: 38px;
}

.footer-links::before,
.footer-services::before,
.footer-newsletter::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 100%;

    background:
        rgba(255,255,255,.18);
}


/* =====================================================
   IDENTITÉ
===================================================== */

.footer-brand-top {
    display: flex;

    align-items: flex-start;

    gap: 20px;
}


.footer-logo {
    width: 92px;
    height: 92px;

    flex-shrink: 0;

    object-fit: contain;

    border-radius: 50%;

    background: #ffffff;

    padding: 3px;
}


.footer-brand-name h2 {
    margin: 2px 0 4px;

    color: #ffffff;

    font-size: 27px;
    line-height: 1;

    font-weight: 900;
}


.footer-brand-name p {
    margin: 0;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.45;

    font-weight: 800;
}


.footer-contact {
    margin-top: 12px;
    margin-left: 112px;
}


.footer-contact p {
    margin: 0 0 5px;

    color: rgba(255,255,255,.94);

    font-size: 13px;
    line-height: 1.4;

    font-weight: 500;
}


/* =====================================================
   RÉSEAUX SOCIAUX
===================================================== */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 21px;

    margin-top: 25px;
}


.social-link {
    width: 28px;
    height: 28px;

    display: flex;

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

    color: #ffffff;

    text-decoration: none;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


.social-link:hover {
    transform: translateY(-3px);

    opacity: .75;
}


.social-link svg {
    width: 23px;
    height: 23px;

    fill: currentColor;
}


.social-link:not(.linkedin) svg {
    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.social-link.linkedin {
    border-radius: 3px;
}


/* =====================================================
   TITRES
===================================================== */

.footer-column h3 {
    margin: 1px 0 20px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.2;

    font-weight: 900;
}


/* =====================================================
   LIENS
===================================================== */

.footer-links a,
.footer-services a {
    display: block;

    width: fit-content;

    margin-bottom: 7px;

    color: rgba(255,255,255,.91);

    font-size: 13px;
    line-height: 1.35;

    font-weight: 500;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-links a:hover,
.footer-services a:hover {
    color: #ffd000;

    transform: translateX(4px);
}


/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter p {
    max-width: 350px;

    margin: 0 0 18px;

    color: rgba(255,255,255,.93);

    font-size: 13px;

    line-height: 1.55;

    font-weight: 500;
}


/* =====================================================
   FORMULAIRE
===================================================== */

.newsletter-form {
    width: 100%;

    max-width: 410px;

    display: flex;

    overflow: hidden;

    border-radius: 9px;

    background: #ffffff;

    box-shadow:
        0 5px 15px rgba(0,0,0,.10);
}


.newsletter-form input {
    flex: 1;

    min-width: 0;

    height: 54px;

    padding: 0 20px;

    border: none;

    outline: none;

    background: #ffffff;

    color: #243b5a;

    font-family: inherit;

    font-size: 13px;
}


.newsletter-form input::placeholder {
    color: #7b8797;
}


.newsletter-form input:focus {
    background: #f8fbff;
}


.newsletter-form button {
    min-width: 142px;

    height: 54px;

    padding: 0 20px;

    border: none;

    background: #ffc400;

    color: #073b8d;

    font-family: inherit;

    font-size: 13px;

    font-weight: 900;

    cursor: pointer;

    transition:
        background .2s ease;
}


.newsletter-form button:hover {
    background: #ffd633;
}


/* =====================================================
   MESSAGE NEWSLETTER
===================================================== */

.newsletter-message {
    min-height: 20px;

    margin-top: 8px;

    font-size: 12px;

    font-weight: 600;
}

.newsletter-message.success {
    color: #ffe000;
}

.newsletter-message.error {
    color: #ffd1d1;
}


/* =====================================================
   LIENS LÉGAUX
===================================================== */

.footer-legal {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 11px;

    margin-top: 12px;
}


.footer-legal a {
    color: rgba(255,255,255,.95);

    font-size: 12px;

    text-decoration: none;

    transition:
        color .2s ease;
}


.footer-legal a:hover {
    color: #ffd000;
}


.footer-legal span {
    color: rgba(255,255,255,.55);

    font-size: 12px;
}


/* =====================================================
   BAS DU FOOTER
===================================================== */

.footer-bottom {
    position: relative;

    z-index: 2;

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


.footer-bottom-container {
    width: min(
        1400px,
        calc(100% - 100px)
    );

    margin: 0 auto;

    padding: 13px 0;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 11px;

    text-align: center;
}


/* =====================================================
   TABLETTE
===================================================== */

@media (max-width: 1100px) {

    .footer-container {
        width: min(
            92%,
            900px
        );

        grid-template-columns:
            repeat(2, 1fr);

        gap: 42px 35px;
    }

    .footer-links,
    .footer-services,
    .footer-newsletter {
        padding-left: 25px;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

    .footer-newsletter::before {
        display: none;
    }

    .footer-newsletter {
        padding-left: 0;

        padding-top: 25px;

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

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .footer-container {
        width: calc(100% - 35px);

        padding: 40px 0 30px;

        display: flex;

        flex-direction: column;

        gap: 32px;
    }


    .footer-brand-top {
        gap: 15px;
    }


    .footer-logo {
        width: 75px;
        height: 75px;
    }


    .footer-brand-name h2 {
        font-size: 23px;
    }


    .footer-brand-name p {
        font-size: 11px;
    }


    .footer-contact {
        margin-left: 90px;
    }


    .footer-links,
    .footer-services,
    .footer-newsletter {
        padding-left: 0;

        padding-top: 25px;

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


    .footer-links::before,
    .footer-services::before,
    .footer-newsletter::before {
        display: none;
    }


    .footer-column h3 {
        font-size: 15px;
    }


    .newsletter-form {
        max-width: 100%;

        flex-direction: column;

        background: transparent;

        overflow: visible;

        box-shadow: none;

        gap: 8px;
    }


    .newsletter-form input {
        width: 100%;

        border-radius: 8px;
    }


    .newsletter-form button {
        width: 100%;

        border-radius: 8px;
    }


    .footer-legal {
        justify-content: center;

        text-align: center;
    }


    .footer-bottom-container {
        width: calc(100% - 35px);
    }


    .footer-bottom p {
        font-size: 10px;

        line-height: 1.5;
    }

}
/* =====================================================
   ONPA — SECTION "L'ONPA EN CHIFFRES"
   VERSION PREMIUM
===================================================== */

.onpa-stats {
    position: relative;
    width: 100%;

    padding: 95px 0 90px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 48%,
            #eef5fc 100%
        );
}


/* =====================================================
   DÉCORATIONS DE FOND
===================================================== */

.onpa-stats::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -230px;
    top: 80px;

    border-radius: 50%;

    border: 1px solid rgba(8, 77, 165, .07);

    box-shadow:
        0 0 0 35px rgba(8, 77, 165, .025),
        0 0 0 70px rgba(8, 77, 165, .018);

    pointer-events: none;
}


.onpa-stats::after {
    content: "";

    position: absolute;

    width: 460px;
    height: 460px;

    right: -270px;
    bottom: -200px;

    border-radius: 50%;

    border: 1px solid rgba(8, 77, 165, .07);

    box-shadow:
        0 0 0 35px rgba(8, 77, 165, .025),
        0 0 0 70px rgba(8, 77, 165, .018);

    pointer-events: none;
}


/* =====================================================
   BARRE JAUNE SUPÉRIEURE
===================================================== */

.stats-top-line {
    position: absolute;

    top: 0;
    left: 50%;

    width: 110px;
    height: 5px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #f5c400,
            #ffd52e
        );

    border-radius:
        0 0 8px 8px;

    box-shadow:
        0 3px 12px rgba(245, 196, 0, .25);
}


/* =====================================================
   CONTAINER
===================================================== */

.stats-container {
    position: relative;

    z-index: 2;

    width: min(
        1320px,
        calc(100% - 70px)
    );

    margin: 0 auto;
}


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

.stats-header {
    max-width: 820px;

    margin:
        0 auto 58px;

    text-align: center;
}


/* =====================================================
   PETIT TITRE
===================================================== */

.stats-kicker {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    color: #0752a8;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


.stats-kicker::before,
.stats-kicker::after {
    content: "";

    width: 28px;
    height: 2px;

    background: #f5c400;

    border-radius: 5px;
}


/* =====================================================
   GRAND TITRE
===================================================== */

.stats-header h2 {
    margin: 0;

    color: #073b82;

    font-size:
        clamp(34px, 4vw, 50px);

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -1.7px;
}


.stats-header h2 span {
    color: #075fc4;

    position: relative;
}


.stats-header h2 span::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 4px;

    border-radius: 4px;

    background: #f5c400;
}


/* =====================================================
   LIGNE JAUNE
===================================================== */

.stats-title-line {
    width: 55px;
    height: 5px;

    margin:
        22px auto 22px;

    border-radius: 5px;

    background: #f5c400;

    box-shadow:
        0 3px 10px rgba(245, 196, 0, .25);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.stats-header p {
    max-width: 720px;

    margin: 0 auto;

    color: #61758f;

    font-size: 15px;

    line-height: 1.75;

    font-weight: 500;
}


/* =====================================================
   GRILLE
===================================================== */

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


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

.stat-card {
    position: relative;

    min-height: 310px;

    padding:
        32px 27px 28px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    overflow: hidden;

    background:
        rgba(255,255,255,.96);

    border:
        1px solid #e1eaf4;

    border-radius: 18px;

    box-shadow:
        0 10px 35px
        rgba(10, 67, 130, .08);

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


/* =====================================================
   BARRE SUPÉRIEURE
===================================================== */

.stat-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            #064da8 0%,
            #0a68d0 70%,
            #f5c400 70%,
            #f5c400 100%
        );

    transform:
        scaleX(.35);

    transform-origin: left;

    transition:
        transform .4s ease;
}


.stat-card:hover::before {
    transform:
        scaleX(1);
}


/* =====================================================
   LUMIÈRE DANS LA CARTE
===================================================== */

.stat-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        rgba(8, 91, 190, .045);

    transition:
        transform .4s ease;
}


.stat-card:hover::after {
    transform:
        scale(1.35);
}


/* =====================================================
   HOVER
===================================================== */

.stat-card:hover {
    transform:
        translateY(-10px);

    border-color:
        #c9dcef;

    box-shadow:
        0 22px 48px
        rgba(5, 62, 125, .15);
}


/* =====================================================
   ICÔNE
===================================================== */

.stat-icon {
    position: relative;

    z-index: 2;

    width: 64px;
    height: 64px;

    margin-bottom: 25px;

    display: flex;

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

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #eaf4ff,
            #dcecff
        );

    color: #075fc4;

    box-shadow:
        inset 0 0 0 1px
        rgba(7, 95, 196, .07);

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        box-shadow .35s ease;
}


.stat-card:hover .stat-icon {
    transform:
        translateY(-3px)
        rotate(-5deg)
        scale(1.08);

    background:
        linear-gradient(
            145deg,
            #075fc4,
            #06458f
        );

    color: #ffffff;

    box-shadow:
        0 9px 20px
        rgba(7, 95, 196, .25);
}


.stat-icon svg {
    width: 31px;
    height: 31px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =====================================================
   CHIFFRE
===================================================== */

.stat-number {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: baseline;

    gap: 4px;

    margin-bottom: 10px;

    color: #073b82;

    font-size:
        clamp(36px, 3vw, 47px);

    line-height: 1;

    font-weight: 950;

    letter-spacing: -2px;
}


.stat-number .counter {
    font-variant-numeric:
        tabular-nums;
}


.stat-plus {
    color: #f2bf00;

    font-size: 28px;

    font-weight: 950;

    letter-spacing: 0;
}


.stat-unit {
    color: #f2bf00;

    font-size: 21px;

    font-weight: 900;

    letter-spacing: 0;
}


/* =====================================================
   TITRE
===================================================== */

.stat-card h3 {
    position: relative;

    z-index: 2;

    margin:
        0 0 10px;

    color: #173f70;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 850;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.stat-card p {
    position: relative;

    z-index: 2;

    max-width: 260px;

    margin:
        auto 0 0;

    color: #71849a;

    font-size: 12px;

    line-height: 1.65;

    font-weight: 500;
}


/* =====================================================
   PETIT INDICATEUR EN BAS
===================================================== */

.stat-card .stat-number::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 25px;
    height: 3px;

    border-radius: 5px;

    background: #f5c400;

    opacity: .8;
}


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

.stats-footer {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin:
        48px auto 0;

    padding:
        15px 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border:
        1px solid #dce7f2;

    border-radius: 12px;

    background:
        rgba(255,255,255,.75);

    box-shadow:
        0 6px 20px
        rgba(8, 61, 120, .05);
}


.stats-footer-icon {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    background: #f5c400;

    color: #073b82;

    font-size: 13px;

    font-weight: 900;
}


.stats-footer p {
    margin: 0;

    color: #60758e;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 600;

    text-align: center;
}


/* =====================================================
   ANIMATION APPARITION
===================================================== */

.stat-card {
    animation:
        statsCardAppear .7s ease both;
}


.stat-card:nth-child(1) {
    animation-delay: .05s;
}


.stat-card:nth-child(2) {
    animation-delay: .12s;
}


.stat-card:nth-child(3) {
    animation-delay: .19s;
}


.stat-card:nth-child(4) {
    animation-delay: .26s;
}


@keyframes statsCardAppear {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =====================================================
   TABLETTE
===================================================== */

@media (max-width: 1050px) {

    .onpa-stats {
        padding:
            75px 0 70px;
    }


    .stats-container {
        width:
            calc(100% - 50px);
    }


    .stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    .stat-card {
        min-height: 280px;
    }


    .stats-header {
        margin-bottom: 45px;
    }

}


/* =====================================================
   TABLETTE PETITE
===================================================== */

@media (max-width: 700px) {

    .stats-container {
        width:
            calc(100% - 32px);
    }


    .stats-header h2 {
        font-size: 34px;
    }


    .stats-header p {
        font-size: 14px;
    }


    .stats-grid {
        gap: 16px;
    }


    .stat-card {
        min-height: 260px;

        padding:
            27px 23px 25px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 560px) {

    .onpa-stats {
        padding:
            62px 0 58px;
    }


    .stats-container {
        width:
            calc(100% - 28px);
    }


    .stats-header {
        margin-bottom: 35px;
    }


    .stats-kicker {
        font-size: 10px;

        letter-spacing: 1.6px;

        gap: 8px;
    }


    .stats-kicker::before,
    .stats-kicker::after {
        width: 20px;
    }


    .stats-header h2 {
        font-size: 29px;

        letter-spacing: -1px;
    }


    .stats-header h2 span::after {
        bottom: -5px;

        height: 3px;
    }


    .stats-title-line {
        width: 43px;
        height: 4px;

        margin:
            17px auto 18px;
    }


    .stats-header p {
        font-size: 12.5px;

        line-height: 1.65;
    }


    .stats-grid {
        grid-template-columns:
            1fr;

        gap: 15px;
    }


    .stat-card {
        min-height: 0;

        padding:
            25px 22px;

        border-radius: 15px;
    }


    .stat-icon {
        width: 55px;
        height: 55px;

        margin-bottom: 20px;
    }


    .stat-icon svg {
        width: 27px;
        height: 27px;
    }


    .stat-number {
        font-size: 36px;
    }


    .stat-plus {
        font-size: 24px;
    }


    .stat-unit {
        font-size: 18px;
    }


    .stat-card h3 {
        font-size: 15px;
    }


    .stat-card p {
        max-width: 100%;

        margin-top: 8px;

        font-size: 11px;
    }


    .stats-footer {
        margin-top: 30px;

        padding:
            12px 14px;
    }


    .stats-footer p {
        font-size: 10px;
    }

}


/* =====================================================
   TRÈS PETIT MOBILE
===================================================== */

@media (max-width: 390px) {

    .stats-header h2 {
        font-size: 26px;
    }


    .stats-header p {
        font-size: 12px;
    }


    .stat-number {
        font-size: 33px;
    }


    .stat-card {
        padding:
            23px 20px;
    }

}

/* =====================================================
   MOT DU DIRECTEUR GÉNÉRAL
===================================================== */

.dg-message {
    position: relative;

    width: 100%;

    padding: 90px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}


/* =====================================================
   DÉCORATION DE FOND
===================================================== */

.dg-message::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -260px;
    top: 80px;

    border-radius: 50%;

    border:
        1px solid rgba(8, 72, 145, .055);

    box-shadow:
        0 0 0 35px rgba(8, 72, 145, .025),
        0 0 0 70px rgba(8, 72, 145, .015);

    pointer-events: none;
}


.dg-message::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -170px;
    bottom: -130px;

    border-radius: 50%;

    border:
        1px solid rgba(8, 72, 145, .06);

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.dg-container {
    position: relative;

    z-index: 2;

    width: min(
        1420px,
        calc(100% - 90px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    align-items: center;

    gap: 65px;
}


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

.dg-content {
    max-width: 780px;
}


/* =====================================================
   TITRE
===================================================== */

.dg-heading {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 38px;
}


.dg-line {
    width: 5px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 5px;

    background:
        linear-gradient(
            180deg,
            #075fc4,
            #0b4694
        );
}


.dg-heading h2 {
    margin: 0;

    color: #06459a;

    font-size:
        clamp(30px, 3.1vw, 43px);

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -.8px;
}


/* =====================================================
   INTRODUCTION
===================================================== */

.dg-introduction {
    margin-bottom: 38px;
}


.dg-introduction p {
    margin: 0 0 15px;

    color: #253c56;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;
}


.dg-introduction p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   CITATION
===================================================== */

.dg-quote {
    position: relative;

    margin: 0 0 42px;

    padding:
        0 30px 0 25px;

    border-left:
        4px solid #111d2d;

    background:
        linear-gradient(
            90deg,
            rgba(241,245,249,.75),
            rgba(255,255,255,0)
        );
}


.dg-quote p {
    position: relative;

    margin: 0;

    color: #111827;

    font-size: 15px;

    line-height: 1.75;

    font-weight: 750;
}


/* =====================================================
   GUILLEMET
===================================================== */

.quote-mark {
    position: absolute;

    left: -12px;
    top: -28px;

    color: #f3c400;

    font-family: Georgia, serif;

    font-size: 55px;

    line-height: 1;

    font-weight: 900;
}


/* =====================================================
   SIGNATURE
===================================================== */

.dg-signature {
    margin-left: auto;

    width: 300px;

    text-align: center;
}


.dg-signature-name {
    color: #173d69;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    font-style: italic;

    font-weight: 800;
}


.dg-signature-title {
    margin-top: 7px;

    color: #48627d;

    font-size: 14px;

    line-height: 1.5;
}


.dg-signature-line {
    display: block;

    width: 145px;
    height: 3px;

    margin:
        18px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #9aaabd,
            transparent
        );
}


/* =====================================================
   PHOTO
===================================================== */

.dg-photo-wrapper {
    position: relative;

    width: 100%;

    max-width: 620px;

    margin-left: auto;
}


/* =====================================================
   CADRE PHOTO
===================================================== */

.dg-photo-frame {
    position: relative;

    width: 100%;

    height: 620px;

    overflow: hidden;

    border-radius:
        22px 22px 22px 22px;

    background: #dce7f2;

    box-shadow:
        0 20px 50px
        rgba(13, 53, 91, .16);
}


/* =====================================================
   PHOTO
===================================================== */

.dg-photo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}


.dg-photo-frame:hover .dg-photo {
    transform:
        scale(1.035);
}


/* =====================================================
   OVERLAY
===================================================== */

.dg-photo-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,35,80,.02) 40%,
            rgba(0,35,80,.12) 100%
        );

    pointer-events: none;
}


/* =====================================================
   DÉCORATION PHOTO
===================================================== */

.dg-photo-decoration {
    position: absolute;

    right: -18px;
    bottom: -18px;

    width: 150px;
    height: 150px;

    border-right:
        5px solid #f3c400;

    border-bottom:
        5px solid #f3c400;

    border-radius: 0 0 20px 0;

    z-index: -1;
}


/* =====================================================
   PETIT TRAIT DÉCORATIF
===================================================== */

.dg-photo-wrapper::before {
    content: "";

    position: absolute;

    left: -18px;
    top: 35px;

    width: 38px;
    height: 5px;

    border-radius: 5px;

    background: #f3c400;

    z-index: 3;
}


/* =====================================================
   ANIMATION
===================================================== */

.dg-content,
.dg-photo-wrapper {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.dg-message.dg-visible
.dg-content {
    opacity: 1;

    transform:
        translateY(0);
}


.dg-message.dg-visible
.dg-photo-wrapper {
    opacity: 1;

    transform:
        translateY(0);

    transition-delay: .15s;
}


/* =====================================================
   TABLETTE
===================================================== */

@media (max-width: 1050px) {

    .dg-message {
        padding: 75px 0;
    }


    .dg-container {
        width:
            calc(100% - 55px);

        grid-template-columns:
            1fr 1fr;

        gap: 40px;
    }


    .dg-heading h2 {
        font-size: 32px;
    }


    .dg-introduction p {
        font-size: 14px;

        line-height: 1.7;
    }


    .dg-quote p {
        font-size: 13px;

        line-height: 1.65;
    }


    .dg-photo-frame {
        height: 520px;
    }


    .dg-signature {
        width: 270px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .dg-message {
        padding: 60px 0;
    }


    .dg-container {
        width:
            calc(100% - 30px);

        display: flex;

        flex-direction: column;

        gap: 42px;
    }


    /* PHOTO EN PREMIER */

    .dg-photo-wrapper {
        order: -1;

        width: 100%;

        max-width: 100%;

        margin: 0;
    }


    .dg-photo-frame {
        height: 460px;

        border-radius: 18px;
    }


    .dg-photo-decoration {
        right: -10px;
        bottom: -10px;

        width: 100px;
        height: 100px;
    }


    .dg-photo-wrapper::before {
        left: 10px;
        top: 20px;
    }


    /* CONTENU */

    .dg-content {
        width: 100%;
    }


    .dg-heading {
        margin-bottom: 27px;

        gap: 12px;
    }


    .dg-line {
        width: 4px;
        height: 38px;
    }


    .dg-heading h2 {
        font-size: 28px;

        letter-spacing: -.5px;
    }


    .dg-introduction {
        margin-bottom: 30px;
    }


    .dg-introduction p {
        font-size: 14px;

        line-height: 1.7;
    }


    .dg-quote {
        padding-left: 19px;

        padding-right: 10px;

        margin-bottom: 35px;
    }


    .dg-quote p {
        font-size: 13px;

        line-height: 1.7;
    }


    .quote-mark {
        font-size: 45px;

        left: -9px;
        top: -23px;
    }


    .dg-signature {
        width: 100%;
    }

}


/* =====================================================
   PETIT MOBILE
===================================================== */

@media (max-width: 420px) {

    .dg-photo-frame {
        height: 390px;

        border-radius: 15px;
    }


    .dg-heading h2 {
        font-size: 24px;
    }


    .dg-introduction p {
        font-size: 13px;
    }


    .dg-quote p {
        font-size: 12.5px;
    }


    .dg-signature-name {
        font-size: 19px;
    }

}
/* =====================================================
   MOT DU DIRECTEUR GÉNÉRAL
===================================================== */

.dg-message {
    position: relative;

    width: 100%;

    padding: 90px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}


/* =====================================================
   DÉCORATION DE FOND
===================================================== */

.dg-message::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -260px;
    top: 80px;

    border-radius: 50%;

    border:
        1px solid rgba(8, 72, 145, .055);

    box-shadow:
        0 0 0 35px rgba(8, 72, 145, .025),
        0 0 0 70px rgba(8, 72, 145, .015);

    pointer-events: none;
}


.dg-message::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -170px;
    bottom: -130px;

    border-radius: 50%;

    border:
        1px solid rgba(8, 72, 145, .06);

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.dg-container {
    position: relative;

    z-index: 2;

    width: min(
        1420px,
        calc(100% - 90px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    align-items: center;

    gap: 65px;
}


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

.dg-content {
    max-width: 780px;
}


/* =====================================================
   TITRE
===================================================== */

.dg-heading {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 38px;
}


.dg-line {
    width: 5px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 5px;

    background:
        linear-gradient(
            180deg,
            #075fc4,
            #0b4694
        );
}


.dg-heading h2 {
    margin: 0;

    color: #06459a;

    font-size:
        clamp(30px, 3.1vw, 43px);

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -.8px;
}


/* =====================================================
   INTRODUCTION
===================================================== */

.dg-introduction {
    margin-bottom: 38px;
}


.dg-introduction p {
    margin: 0 0 15px;

    color: #253c56;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;
}


.dg-introduction p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   CITATION
===================================================== */

.dg-quote {
    position: relative;

    margin: 0 0 42px;

    padding:
        0 30px 0 25px;

    border-left:
        4px solid #111d2d;

    background:
        linear-gradient(
            90deg,
            rgba(241,245,249,.75),
            rgba(255,255,255,0)
        );
}


.dg-quote p {
    position: relative;

    margin: 0;

    color: #111827;

    font-size: 15px;

    line-height: 1.75;

    font-weight: 750;
}


/* =====================================================
   GUILLEMET
===================================================== */

.quote-mark {
    position: absolute;

    left: -12px;
    top: -28px;

    color: #f3c400;

    font-family: Georgia, serif;

    font-size: 55px;

    line-height: 1;

    font-weight: 900;
}


/* =====================================================
   SIGNATURE
===================================================== */

.dg-signature {
    margin-left: auto;

    width: 300px;

    text-align: center;
}


.dg-signature-name {
    color: #173d69;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    font-style: italic;

    font-weight: 800;
}


.dg-signature-title {
    margin-top: 7px;

    color: #48627d;

    font-size: 14px;

    line-height: 1.5;
}


.dg-signature-line {
    display: block;

    width: 145px;
    height: 3px;

    margin:
        18px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #9aaabd,
            transparent
        );
}


/* =====================================================
   PHOTO
===================================================== */

.dg-photo-wrapper {
    position: relative;

    width: 100%;

    max-width: 620px;

    margin-left: auto;
}


/* =====================================================
   CADRE PHOTO
===================================================== */

.dg-photo-frame {
    position: relative;

    width: 100%;

    height: 620px;

    overflow: hidden;

    border-radius:
        22px 22px 22px 22px;

    background: #dce7f2;

    box-shadow:
        0 20px 50px
        rgba(13, 53, 91, .16);
}


/* =====================================================
   PHOTO
===================================================== */

.dg-photo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}


.dg-photo-frame:hover .dg-photo {
    transform:
        scale(1.035);
}


/* =====================================================
   OVERLAY
===================================================== */

.dg-photo-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,35,80,.02) 40%,
            rgba(0,35,80,.12) 100%
        );

    pointer-events: none;
}


/* =====================================================
   DÉCORATION PHOTO
===================================================== */

.dg-photo-decoration {
    position: absolute;

    right: -18px;
    bottom: -18px;

    width: 150px;
    height: 150px;

    border-right:
        5px solid #f3c400;

    border-bottom:
        5px solid #f3c400;

    border-radius: 0 0 20px 0;

    z-index: -1;
}


/* =====================================================
   PETIT TRAIT DÉCORATIF
===================================================== */

.dg-photo-wrapper::before {
    content: "";

    position: absolute;

    left: -18px;
    top: 35px;

    width: 38px;
    height: 5px;

    border-radius: 5px;

    background: #f3c400;

    z-index: 3;
}


/* =====================================================
   ANIMATION
===================================================== */

.dg-content,
.dg-photo-wrapper {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.dg-message.dg-visible
.dg-content {
    opacity: 1;

    transform:
        translateY(0);
}


.dg-message.dg-visible
.dg-photo-wrapper {
    opacity: 1;

    transform:
        translateY(0);

    transition-delay: .15s;
}


/* =====================================================
   TABLETTE
===================================================== */

@media (max-width: 1050px) {

    .dg-message {
        padding: 75px 0;
    }


    .dg-container {
        width:
            calc(100% - 55px);

        grid-template-columns:
            1fr 1fr;

        gap: 40px;
    }


    .dg-heading h2 {
        font-size: 32px;
    }


    .dg-introduction p {
        font-size: 14px;

        line-height: 1.7;
    }


    .dg-quote p {
        font-size: 13px;

        line-height: 1.65;
    }


    .dg-photo-frame {
        height: 520px;
    }


    .dg-signature {
        width: 270px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .dg-message {
        padding: 60px 0;
    }


    .dg-container {
        width:
            calc(100% - 30px);

        display: flex;

        flex-direction: column;

        gap: 42px;
    }


    /* PHOTO EN PREMIER */

    .dg-photo-wrapper {
        order: -1;

        width: 100%;

        max-width: 100%;

        margin: 0;
    }


    .dg-photo-frame {
        height: 460px;

        border-radius: 18px;
    }


    .dg-photo-decoration {
        right: -10px;
        bottom: -10px;

        width: 100px;
        height: 100px;
    }


    .dg-photo-wrapper::before {
        left: 10px;
        top: 20px;
    }


    /* CONTENU */

    .dg-content {
        width: 100%;
    }


    .dg-heading {
        margin-bottom: 27px;

        gap: 12px;
    }


    .dg-line {
        width: 4px;
        height: 38px;
    }


    .dg-heading h2 {
        font-size: 28px;

        letter-spacing: -.5px;
    }


    .dg-introduction {
        margin-bottom: 30px;
    }


    .dg-introduction p {
        font-size: 14px;

        line-height: 1.7;
    }


    .dg-quote {
        padding-left: 19px;

        padding-right: 10px;

        margin-bottom: 35px;
    }


    .dg-quote p {
        font-size: 13px;

        line-height: 1.7;
    }


    .quote-mark {
        font-size: 45px;

        left: -9px;
        top: -23px;
    }


    .dg-signature {
        width: 100%;
    }

}


/* =====================================================
   PETIT MOBILE
===================================================== */

@media (max-width: 420px) {

    .dg-photo-frame {
        height: 390px;

        border-radius: 15px;
    }


    .dg-heading h2 {
        font-size: 24px;
    }


    .dg-introduction p {
        font-size: 13px;
    }


    .dg-quote p {
        font-size: 12.5px;
    }


    .dg-signature-name {
        font-size: 19px;
    }

}
/* =====================================================
   MOBILE BUTTON
===================================================== */

.mobile-menu-button {
    display: none;

    width: 43px;
    height: 43px;

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

    gap: 5px;

    border: none;
    border-radius: 7px;

    background: var(--onpa-blue-dark);
}

.mobile-menu-button span {
    width: 21px;
    height: 2px;

    border-radius: 3px;

    background: white;

    transition: var(--transition);
}

.mobile-menu-button.open span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.open span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =====================================================
   MOBILE NAVIGATION
===================================================== */

.mobile-navigation {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 3000;

    width: min(350px, 88%);
    height: 100vh;

    background: white;

    box-shadow:
        -10px 0 40px rgba(0,0,0,.18);

    transform:
        translateX(105%);

    transition:
        transform .35s cubic-bezier(.4,0,.2,1);
}

.mobile-navigation.show {
    transform:
        translateX(0);
}

.mobile-navigation-header {
    height: 82px;

    padding: 0 20px;

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

    background:
        linear-gradient(
            135deg,
            #002b67,
            #0052ae
        );

    color: white;
}

.mobile-navigation-header span {
    font-size: 14px;
    font-weight: 900;

    letter-spacing: .5px;
}

.mobile-navigation-header button {
    width: 38px;
    height: 38px;

    border:
        1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    color: white;

    font-size: 25px;
}

.mobile-navigation-links {
    height:
        calc(100vh - 82px);

    padding: 10px 15px;

    overflow-y: auto;
}


/* =====================================================
   MOBILE LINKS
===================================================== */

.mobile-link {
    position: relative;

    min-height: 52px;

    padding: 0 14px;

    display: flex;
    align-items: center;

    border-bottom:
        1px solid #edf2f7;

    color: var(--text-dark);

    font-size: 11px;
    font-weight: 800;
}

.mobile-link::before {
    content: "";

    width: 0;
    height: 3px;

    margin-right: 0;

    background: var(--onpa-yellow);

    transition: var(--transition);
}

.mobile-link.active {
    color: var(--onpa-blue);
}

.mobile-link.active::before {
    width: 4px;
    margin-right: 10px;
}


/* =====================================================
   MOBILE DROPDOWN
===================================================== */

.mobile-dropdown-button {
    width: 100%;

    min-height: 52px;

    padding: 0 14px;

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

    border: none;

    border-bottom:
        1px solid #edf2f7;

    background: white;

    color: var(--text-dark);

    font-size: 11px;
    font-weight: 800;
}

.mobile-arrow {
    color: var(--onpa-blue);

    font-size: 20px;

    transition: var(--transition);
}

.mobile-dropdown.open .mobile-arrow {
    transform: rotate(45deg);
}

.mobile-dropdown-content {
    max-height: 0;

    overflow: hidden;

    background: #f7faff;

    transition:
        max-height .3s ease;
}

.mobile-dropdown.open .mobile-dropdown-content {
    max-height: 250px;
}

.mobile-dropdown-content a {
    display: block;

    padding: 13px 25px;

    border-bottom:
        1px solid #e8eef5;

    color: #49627e;

    font-size: 10px;
}

.mobile-dropdown-content a:hover {
    color: var(--onpa-blue);
    background: #eef6ff;
}


/* =====================================================
   MOBILE PARTNER
===================================================== */

.mobile-partner-button {
    min-height: 48px;

    margin: 18px 0;

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

    gap: 8px;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #003b82,
            #001e4d
        );

    color: white;

    font-size: 10px;
    font-weight: 800;
}


/* =====================================================
   MOBILE OVERLAY
===================================================== */

.mobile-overlay {
    position: fixed;

    inset: 0;

    z-index: 2500;

    background:
        rgba(0,20,50,.45);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .header-container {
        min-height: 95px;
    }

    .brand-logo {
        width: 72px;
        height: 72px;
    }

    .brand-name {
        font-size: 39px;
    }

    .brand-title {
        font-size: 12px;
    }

    .brand-country {
        font-size: 7px;
    }

    .navigation-container {
        width: 96%;
    }

    .nav-link,
    .nav-dropdown-button {
        font-size: 8px;

        padding-left: 5px;
        padding-right: 5px;
    }


    /* HERO TABLET */

    .hero {
        height: 570px;
    }

    .hero-content {
        width: 52%;

        padding-left: 5%;
        padding-top: 55px;
    }

    .hero-content h1 {
        font-size: 37px;
        letter-spacing: -.8px;
    }

    .hero-content p {
        max-width: 420px;
        font-size: 15px;
    }

    .hero-image {
        width: 65%;
    }

    .hero-image::before {
        width: 180px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    /* HEADER */

    .header-container {
        width:
            calc(100% - 24px);

        min-height: 78px;
    }

    .brand {
        gap: 8px;
    }

    .brand-logo {
        width: 57px;
        height: 57px;
    }

    .brand-name {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .brand-title {
        margin-top: 3px;
        font-size: 7.5px;
    }

    .brand-country {
        margin-top: 3px;
        font-size: 5px;
    }

    .header-actions {
        gap: 5px;
    }

    .country-button {
        display: none;
    }

    .search-button {
        width: 38px;
        height: 38px;
    }

    .partner-button {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .main-navigation {
        display: none;
    }


    /* SEARCH */

    .search-panel {
        padding: 12px 0;
    }

    .search-container {
        width:
            calc(100% - 20px);
    }

    .search-submit {
        padding: 0 14px;
        font-size: 8px;
    }


    /* HERO MOBILE */

    .hero {
        height: 650px;
    }

    .hero-slide {
        display: block;
    }

    .hero-image {
        width: 100%;
        height: 100%;
    }

    .hero-image::before {
        width: 100%;
        height: 70%;

        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,1) 0%,
                rgba(255,255,255,.97) 38%,
                rgba(255,255,255,.55) 65%,
                rgba(255,255,255,0) 100%
            );
    }

    .hero-content {
        width: 100%;
        height: auto;

        min-height: 520px;

        padding:
            48px
            22px
            100px;

        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,.98) 0%,
                rgba(255,255,255,.94) 55%,
                rgba(255,255,255,0) 100%
            );
    }

    .hero-content h1 {
        max-width: 600px;

        font-size: 31px;

        line-height: 1.13;

        letter-spacing: -.7px;

        margin-bottom: 23px;
    }

    .hero-line {
        width: 43px;
        height: 5px;

        margin-bottom: 23px;
    }

    .hero-content p {
        max-width: 600px;

        font-size: 15px;

        line-height: 1.55;

        margin-bottom: 27px;
    }

    .hero-button {
        height: 57px;

        min-width: 245px;
    }

    .hero-button span {
        padding-left: 22px;

        font-size: 12px;
    }

    .hero-button strong {
        width: 58px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        bottom: 17px;

        gap: 10px;
    }

    .hero-dot {
        width: 18px;
        height: 18px;

        border-width: 2px;
    }


    /* DEMO */

    .demo-content {
        min-height: 600px;
        padding: 20px;
    }

    .demo-content h1 {
        font-size: 27px;
    }
}


/* =====================================================
   PETIT MOBILE
===================================================== */

@media (max-width: 430px) {

    .brand-logo {
        width: 50px;
        height: 50px;
    }

    .brand-name {
        font-size: 25px;
    }

    .brand-title {
        font-size: 6.7px;
    }

    .brand-country {
        display: none;
    }

    .search-button {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-button {
        width: 38px;
        height: 38px;
    }

    .search-container {
        flex-direction: column;
    }

    .search-submit {
        height: 42px;
    }


    /* HERO PETIT MOBILE */

    .hero {
        height: 620px;
    }

    .hero-content {
        padding:
            40px
            18px
            90px;
    }

    .hero-content h1 {
        font-size: 27px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-button {
        min-width: 220px;
    }

    .hero-button span {
        font-size: 11px;
    }
}


/* =====================================================
   ACCESSIBILITÉ
===================================================== */

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline:
        3px solid rgba(7, 91, 211, .35);

    outline-offset: 3px;
}

/* =========================================================
   ONPA — MOT DU DIRECTEUR
========================================================= */

.director-message {
    position: relative;
    padding: 100px 5.5%;
    background: #ffffff;
    overflow: hidden;
}

/* Décoration de fond */
.director-message::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: #eaf4ff;
    border-radius: 50%;
    z-index: 0;
}

.director-message::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -140px;
    width: 350px;
    height: 350px;
    background: rgba(255, 210, 28, 0.10);
    border-radius: 50%;
    z-index: 0;
}


/* =========================================================
   CONTENEUR PRINCIPAL
========================================================= */

.director-container {
    position: relative;
    z-index: 2;

    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: center;
    gap: 80px;
}


/* =========================================================
   PHOTO DU DIRECTEUR
========================================================= */

.director-photo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.director-photo::before {
    content: "";
    position: absolute;

    width: 330px;
    height: 400px;

    background: #075bd3;

    border-radius: 18px;

    transform: rotate(-5deg);

    z-index: -1;
}

.director-photo img {
    display: block;

    width: 100%;
    max-width: 330px;
    height: 400px;

    object-fit: cover;

    border-radius: 18px;

    background: #f4f8fc;

    box-shadow:
        0 25px 50px rgba(0, 43, 103, 0.18);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.director-photo:hover img {
    transform: translateY(-8px);

    box-shadow:
        0 30px 60px rgba(0, 43, 103, 0.24);
}


/* =========================================================
   CONTENU DU MESSAGE
========================================================= */

.director-content {
    max-width: 720px;
}


/* Petit titre */

.director-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 15px;

    color: #075bd3;

    font-size: 14px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.director-kicker::before {
    content: "";

    width: 38px;
    height: 3px;

    background: #ffd21c;

    border-radius: 10px;
}


/* Grand titre */

.director-content h2 {
    margin: 0 0 25px;

    color: #002b67;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -0.8px;
}


/* Accent du titre */

.director-content h2 span {
    color: #075bd3;
}


/* =========================================================
   CITATION / MESSAGE
========================================================= */

.director-quote {
    position: relative;

    margin: 0 0 28px;
    padding-left: 25px;

    border-left: 4px solid #ffd21c;

    color: #334b68;

    font-size: 18px;
    line-height: 1.85;

    font-weight: 400;
}


/* Guillemets décoratifs */

.director-quote::before {
    content: "“";

    position: absolute;

    left: 10px;
    top: -38px;

    color: rgba(7, 91, 211, 0.08);

    font-size: 100px;
    line-height: 1;

    font-family: Georgia, serif;
}


/* =========================================================
   NOM DU DIRECTEUR
========================================================= */

.director-name {
    margin-top: 30px;
}

.director-name strong {
    display: block;

    color: #002b67;

    font-size: 20px;
    font-weight: 800;

    margin-bottom: 5px;
}

.director-name span {
    display: block;

    color: #6c7c91;

    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}


/* =========================================================
   SIGNATURE
========================================================= */

.director-signature {
    margin-top: 25px;

    color: #075bd3;

    font-family: "Brush Script MT", "Segoe Script", cursive;

    font-size: 30px;
    font-weight: 600;
}


/* =========================================================
   LIGNE DÉCORATIVE
========================================================= */

.director-content .director-line {
    width: 70px;
    height: 4px;

    margin: 25px 0;

    background: #ffd21c;

    border-radius: 10px;
}


/* =========================================================
   BOUTON — EN SAVOIR PLUS
========================================================= */

.director-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 20px;

    padding: 14px 25px;

    background: #075bd3;
    color: #ffffff;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.director-button:hover {
    background: #002b67;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(7, 91, 211, 0.25);
}


/* =========================================================
   RESPONSIVE — TABLETTE
========================================================= */

@media (max-width: 1000px) {

    .director-message {
        padding: 80px 6%;
    }

    .director-container {
        grid-template-columns: 300px 1fr;
        gap: 50px;
    }

    .director-photo img {
        max-width: 280px;
        height: 350px;
    }

    .director-photo::before {
        width: 280px;
        height: 350px;
    }

    .director-content h2 {
        font-size: 38px;
    }

    .director-quote {
        font-size: 16px;
        line-height: 1.75;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .director-message {
        padding: 70px 6%;
    }

    .director-container {
        display: flex;
        flex-direction: column;

        gap: 50px;

        text-align: center;
    }


    /* Photo */

    .director-photo {
        width: 100%;
    }

    .director-photo img {
        width: 280px;
        max-width: 85vw;
        height: 340px;
    }

    .director-photo::before {
        width: 280px;
        height: 340px;
    }


    /* Contenu */

    .director-content {
        width: 100%;
        max-width: 650px;
    }

    .director-kicker {
        justify-content: center;
    }

    .director-content h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .director-quote {
        padding-left: 18px;

        text-align: left;

        font-size: 16px;
        line-height: 1.75;
    }

    .director-name {
        text-align: center;
    }

    .director-signature {
        text-align: center;
    }

    .director-button {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   PETIT MOBILE
========================================================= */

@media (max-width: 480px) {

    .director-message {
        padding: 60px 20px;
    }

    .director-photo img {
        width: 240px;
        height: 300px;
    }

    .director-photo::before {
        width: 240px;
        height: 300px;
    }

    .director-content h2 {
        font-size: 29px;
    }

    .director-quote {
        font-size: 15px;
    }

    .director-name strong {
        font-size: 18px;
    }
}
