/* ========================= */
/* RESET */
/* ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f1f1f;
    background-color: #ffffff;
}

img {
    display: block;
    max-width: 100%;
}

/* ========================= */
/* CONTAINERS */
/* ========================= */
.edw-container {
    width: 1100px;
    max-width: 90%;
    margin: 0 auto;
    align-items:start;
    display: flex;
    flex-direction: column;
}

.edw-section {
    padding: 20px 0;
}

/* ========================= */
/* HEADER */
/* ========================= */
.edw-header {
    background: white;
    padding: 22px 0;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.edw-header .edw-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end; /* alignement bas du logo + menu */
}

/* LOGO */
.edw-logo-group {
    display: flex;          /* met les deux éléments sur la même ligne */
    align-items: center;    /* aligne verticalement */
    gap: 10px;              /* espace entre icône et texte */
    border-radius: 0;
}

.edw-logo-icon {
    display: flex;
    align-items: center;
    height: 32px;
    border-radius: 0;
}

.edw-logo-text {
    display: flex;
    align-items: center;
    margin-left: 0;         /* important : pas de auto */
    height: 32px;
    border-radius: 0;
}

/* MENU */
.edw-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    transform: translateX(-296px);
}

.edw-menu li a {
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color .25s ease, opacity .25s ease;
}

.edw-menu li a:hover {
    color: #0077cc;
    opacity: 0.8;
}

/* ========================= */
/* HERO / LIGNE BLEUE */
/* ========================= */
.edw-hero-line,
.edw-hero-full-line {
    width: 100%;
    height: 2px;
    background-color: #0077cc;
    margin: 20px 0;
    border-radius: 1px;
}

/* ========================= */
/* THÉMATIQUE — IMAGES */
/* ========================= */
.edw-thematique-images {
    display: flex;
    gap: 10px;
    margin: 20px 0 30px 0;
}

.edw-thematique-images img {
    width: 50%;
    border-radius: 6px;
    aspect-ratio: 555 / 367;
    object-fit: cover;
}

/* ========================= */
/* CONTENU */
/* ========================= */
.edw-page-content {
    margin-bottom: 20px;
}

/* Décalage 2/3 largeur */
.edw-content-offset {
    max-width: 66.66%;
    margin-left: auto;
}
.edw-client
{
    display:flex;
    flex-direction: row;
    gap: 32px;
}
/* ========================= */
/* ACTUALITÉS */
/* ========================= */
/* Conteneur du HERO en 2 colonnes */
.edw-hero-grid {
    display: grid;
    grid-template-columns: 3.5fr 1fr; /* gauche = large, droite = actualités */
    gap: 27px;
    align-items: start;
    margin-top: 10px;
}

/* Bloc gauche (image + slogan) */
.edw-hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edw-hero-img
{
    border-radius: 6px;
}

/* Bloc Actualité à droite */
.edw-hero-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-left: auto;
}
.edw-hero-right h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0077cc;
}

.edw-hero-slogan {
    margin-top: 12px;
    font-size: 36px;
    font-weight: 700;
    color: #0077cc;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.edw-news-list {
    list-style: none;
    line-height: 0.9;
    width: 270px;
}

.edw-news-list li {
    margin-bottom: 0;
}

.edw-news-list strong {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0px;
}

.edw-news-list em {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #1f1f1f;
}

.edw-news-list p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #2c2c2c;
    margin-top: 8px;
}

.edw-news-list a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

/* ========================= */
/* 3 BLOCS */
/* ========================= */
.edw-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.edw-card {
    background: white;
}

.edw-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

.edw-card h3 {
    margin: 20px 0 12px;
    font-size: 22px;
    font-weight: 600;
    color: #0077cc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edw-card p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    margin: 20px 15px 0 15px;
}

.edw-card a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 500;
}

/* ========================= */
/* FOOTER */
/* ========================= */
.edw-footer {
    background: #1f2a38;
    padding: 50px 0;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    margin-top: 50px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 1000px) {

    .edw-container {
        width: 92%;
    }

    .edw-header .edw-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .edw-menu {
        list-style: none;
        display: flex;
        gap: 18px;
        transform: translateX(0px);
        flex-direction: column;
        align-items: center;
    }

    .edw-content-offset {
        max-width: 100%;
        margin-left: 0;
    }

.edw-client
{
    display:flex;
    flex-direction: column;
}

.edw-page-title
{
    text-align: left;
}
/* Conteneur du HERO en 2 colonnes */
.edw-hero-grid {
    display: flex;
    flex-direction: column; /* met .edw-hero-right en dessous */
    gap: 30px;
}
/* Bloc Actualité à droite */
.edw-hero-right {
    display: flex;
    flex-direction: column;
}
.edw-hero-slogan {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #0077cc;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.3px;
}


    .edw-grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .edw-img {
        height: 200px;
    }

    .edw-thematique-images {
        gap: 5px;
    }

    .edw-article > p
    {
        font-style: italic;
     }
    .edw-excerpt
    {
        font-style: italic;
       color:black;
    }
}
