/* ===== BASE ===== */

/* Variables */
:root {
    --gap-xx: 16px;
    --icon-size: 30px;
    --header-vertical-padding: 20px;
}

/* Reset */
html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: #1d1d1b;
    background: #ebf0eb;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

/* ===== FONTS ===== */

/* Roboto */
@font-face {
    font-family: 'Roboto';
    font-weight: 200;
    src: url('../fonts/Roboto/Roboto-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-weight: 500;
    src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-weight: 700;
    src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    font-weight: 900;
    src: url('../fonts/Roboto/Roboto-Black.ttf') format('truetype');
}

/* Merriweather */
@font-face {
    font-family: 'Merriweather';
    font-weight: 400;
    src: url('../fonts/Merriweather/Merriweather-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Merriweather';
    font-weight: 300;
    src: url('../fonts/Merriweather/Merriweather-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 300;
    src: url('../fonts/Merriweather/Merriweather-LightItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/Merriweather/Merriweather-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Merriweather';
    font-weight: 700;
    src: url('../fonts/Merriweather/Merriweather-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Merriweather';
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/Merriweather/Merriweather-BoldItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Merriweather';
    font-weight: 900;
    src: url('../fonts/Merriweather/Merriweather-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'Merriweather';
    font-style: italic;
    font-weight: 900;
    src: url('../fonts/Merriweather/Merriweather-BlackItalic.ttf') format('truetype');
}

/* ===== LAYOUT ===== */

.fond_blanc {
    padding-bottom: 30px;
    padding-top: 20px;
    background-color: white;
    min-height: 100vh;
    box-sizing: border-box;
}

.page_rubrique {
    width: 616px;
    margin: 46px auto;
    background: #fff;
    padding: 0;
    box-sizing: border-box;
}

.page_rubrique_title {
    border-bottom: 1px solid #c1c1c1;
    line-height: 26px;
}


/* ===== BANDEAU NEWSLETTER ===== */

.bandeau_newsletter {
    background: #008c00;
    color: #fff;
    font-size: 22px;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 30px;
    margin: 0;
    position: relative;
    height: 88px;
}

.bandeau_newsletter .content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 88px;
}

.bandeau_newsletter .arrow-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    padding-left: 40px;
}

.bandeau_newsletter .arrow-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.bandeau_newsletter .text-wrapper {
    flex: 1;
    padding-left: 144px;
}

.bandeau_newsletter .highlight {
    color: #fde000;
}

.bandeau_newsletter .close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 24px;
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
/*
.bandeau_newsletter.with-image {
    padding: 0;
}

.bandeau_newsletter.with-image .content {
    min-height: 200px;
    padding: 30px 40px;
    gap: 40px;
}

.bandeau_newsletter.with-image .text-wrapper {
    font-size: 28px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.bandeau_newsletter.with-image .image-content {
    width: 368px;
    height: 200px;
    flex-shrink: 0;
    position: relative;
    margin: -30px -40px -30px 0;
}

.bandeau_newsletter.with-image .image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/

/* ===== HEADER ===== */

.header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    box-sizing: border-box;
    min-height: 155.5px;
    max-width: 1280px;
    margin: 16px auto 22px;
}

.header_small {
    margin-top: 0;
    min-height: 103.8px;
    margin-bottom: 20px;
}

.header_left {
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 2;
}
.header_right {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.icon_btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header_left img,
.header_right img,
.icon_btn img,
.user_icon {
    width: 30px;
    height: 30px;
    display: block;
}
.icon_btn_16x16 img {
    width: 16px;
    height: 16px;
    display: block;

}
.icon_btn_20x20 img {
    width: 20px;
    height: 20px;
    display: block;
}
.icon_btn_20x16 img {
    width: 20px;
    height: 16px;
    display: block;
}

.header_right .nom_abonne {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #1d1d1b;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.header .logo {
    width: 270.7px;
    height: 155.5px;
    display: block;
}

.header .logo_small {
    width: 180.8px;
    height: 103.8px;
}

.header-subscribe {
    background: #fde000;
    border: none;
    padding: 0;
    width: 155px;
    height: 37px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.header-subscribe:hover {
    opacity: 0.9;
}

.header_right a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-compte-text {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #1d1d1b;
    line-height: 1;
    white-space: nowrap;
}

/* ===== NAVIGATION ===== */

.nav_rubriques {
    width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 0;
    background-color: #ebf0eb;
}

.nav_rubriques_content {
    width: 810px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    background-color: #ebf0eb;
    padding-top: 6px;
}

.nav_rubriques .menu_item {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: #000;
}

.nav_rubriques a:hover {
    opacity: 0.6;
}

/* ===== SEMAINE ===== */

.semaine {
    width: 810px;
    text-align: center;
    font-family: 'Merriweather', serif;
    font-size: 17px;
    margin: 16px auto 40px;
    padding-top: 10px;
    border-top: 1px solid #c1c1c1;
}

/* ===== HOMEBLOC ===== */

.homebloc {
    width: 816px;
    margin: 0 auto 64px;
    background: #fff;
    padding: 0 64px 64px;
    box-sizing: border-box;
}

.homebloc_title {
    font-family: 'Merriweather', serif;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.02em;
    text-align: center;
    color: #1d1d1b;
    line-height: 72px;
}

.homebloc_image {
    width: 100%;
    height: 384px;
    object-fit: cover;
    display: block;
}

.homebloc_rdv {
    padding: 30px 0 0 0;
}
.homebloc_chapo {
    font-weight: 300;
}


.homebloc_article {
    display: grid;
    grid-template-columns: 324px 1fr;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid #c1c1c1;
}

.homebloc_article:last-child {
    /*border-bottom: none;*/
    margin-bottom: 0;
    /*padding-bottom: 0;*/
}

.homebloc_headline {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 32px;
    margin-bottom: 12px;
    text-align: center;
    color: #000;
}

.homebloc_headline_small {
    font-family: 'Merriweather', serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 24px;
    text-align: left;
    color: #000;
}

.homebloc_author {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #008c00;
    text-align: center;
    margin-bottom: 30px;
}

.homebloc_content {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 24px;
    color: #1d1d1b;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #c1c1c1;
}

.homebloc_link {
    font-weight: 400;
    font-style: italic;
    text-decoration: underline;
}

.homebloc_content:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.homebloc_matinale {
    height: 41px;
    background: url(/img/refonte/matinale_bandeau.svg);
    background-repeat: repeat;
    background-size: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.agenda_content {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.6;
    color: #1d1d1b;
    margin-top: 32px;
}

.agenda_content ol {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

.agenda_content ol li {
    counter-increment: item;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #707070;
    letter-spacing: -0.02em;
    line-height: 24px;
    position: relative;
    padding-left: 0;
}

.agenda_content ol li:last-child {
    margin-bottom: 0;
}

.agenda_content ol li::before {
    content: counter(item) "  •  ";
    font-weight: 700;
}

/* ===== SOUS-RUBRIQUES ===== */

.sousrubrique {
    margin-top: 64px;
}

.sousrubrique_paddingtop {
    padding-top: 64px;
}

.sousrubrique_title {
    width: 100%;
    background: #ebf0eb;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1b;
    margin-bottom: 30px;
}

.rdv_sousrubrique {
    width: 100%;
    background: #008c00;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rdv_sousrubrique_text {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-style: italic;
    letter-spacing: -0.01em;
    color: #fff;
}

/* ===== ARTICLES GRID ===== */

.mais_aussi_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.mais_aussi_itemtem {
    display: flex;
    flex-direction: column;
}

.mais_aussi_title {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 24px;
}

.mais_aussi_title a {
    color: #000;
}

.mais_aussi_title a:hover {
    opacity: 0.7;
}

.mais_aussi_title.highlight a {
    color: #008c00;
}

/* ===== SOMMAIRE ===== */

.sommaire {
    width: 816px;
    margin: 46px auto;
    background: #fff;
    padding: 0;
    box-sizing: border-box;
}

.sommaire_title {
    border-bottom: 1px solid #c1c1c1;
    line-height: 26px;
    padding-bottom: 32px;
}

.sommaire_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 168px;
    padding-top: 30px;
}

.sommaire_article {
    padding-bottom: 30px;
    border-bottom: 1px solid #c1c1c1;
}

.sommaire_meta {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

.sommaire_meta .rubrique {
    color: #008c00;
}

.sommaire_meta .date {
    color: #707070;
}

.sommaire_headline {
    font-family: 'Merriweather', serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 24px;
    text-align: left;
    color: #000;
}

.sommaire_headline a:hover {
    opacity: 0.7;
}

.sommaire_more {
    margin-top: 40px;
    text-align: center;
}

.sommaire_more_btn {
    display: inline-block;
    width: 368px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border: 1px solid #008c00;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #008c00;
    text-decoration: none;
}

.sommaire_more_btn:hover {
    background: #008c00;
    color: #fff;
}

/* ===== EN VUE ===== */

.envue_columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.envue_column {
    display: flex;
    flex-direction: column;
}

.envue_icon {
    margin: 0 auto 16px;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
}

.envue_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.envue_list li {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 2em;
    font-weight: 300;
}

.envue_list li strong {
    font-weight: 700;
}

.envue_list li:last-child {
    margin-bottom: 0;
}

.envue_etaussi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    font-family: 'Merriweather', serif;
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 2em;
}

.envue_etaussi strong {
    font-weight: 700;
}

/* ===== ILS FONT L'ACTU ===== */

.personnalites {
    font-size: 16px;
    font-family: 'Merriweather', serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 32px;
    padding-top: 30px;
}

.personnalites_letter {
    font-weight: 700;
}

/* ===== FOOTER ===== */

.footer {
    width: 100%;
    padding: 40px 0;
    margin-top: 40px;
}

.footer_container {
    max-width: 810px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer_logo {
    width: 110px;
    height: auto;
}

.footer_links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer_link {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #1d1d1b;
    text-decoration: none;
    white-space: nowrap;
}

.footer_link:hover {
    opacity: 0.7;
}

.footer_social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer_social a {
    display: block;
    width: 30px;
    height: 30px;
}

/* ===== MENU HAMBURGER ===== */
.menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.overlay_content  {
    padding-bottom: 200px;
}

.menu_overlay.active {
    display: block;
    opacity: 1;
}

.menu_close {
    position: absolute;
    right: 40px;
    top: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;

}
.menu_close img {
    width: 16px;
    height: 16px;
    display: block;
}

.menu_content {
    max-width: 820px;
    margin: 0 auto;
    padding: 89px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.menu_content_noaccount {
    grid-template-columns: repeat(2, 1fr);

}
.menu_section {
    display: flex;
    flex-direction: column;
}

.menu_section_title {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #1d1d1b;
}

.menu_separator {
    width: 100%;
    height: 1px;
    background: #c1c1c1;
    margin-bottom: 30px;
}

.menu_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_list li {
    margin-bottom: 20px;
}

.menu_list a {
    font-family: 'Merriweather', serif;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: #000003;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu_list a:hover {
    opacity: 0.7;
}

.menu_list a.bold {
    font-weight: 700;
}

/* ===== PAGES STATIQUES ===== */
.static_content {
    width: 617px;
    margin: 86px auto;
}

.static_content h2 {
    font-weight: 700;
    line-height: 28px;
    font-size: 14px;
}

.static_text {
    font-family: Merriweather;
    font-size:14px;
    font-weight: 300;
    letter-spacing: -0.02em;
    padding-top: 32px;
    line-height: 28px;
}

.static_text a {
    color:#008C00;
}

.static_contact_addresse {
    height: 74px;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    text-align: center;
    line-height: 24px;
    margin-bottom: 38px;
}

.static_contact_redac {
    height: 74px;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 500;
    text-align: center;
    line-height: 24px;
    margin-bottom: 38px;
}
.static_contact_redac a {
    color: #008C00;
}

/* === LAYOUT GÉNÉRAL === */
.article_page {
    min-height: 100vh;
    width: 1282px;
    margin: 0px auto;
}

.article_container {
    max-width: 818px;
    margin: 0 auto;
    background: #fff;
    padding: 64px 0;
    box-sizing: border-box;
    position: relative;
}

/* === HEADER DE L'ARTICLE === */
.article_header {
    margin-bottom: 40px;
    font-family: 'Merriweather', serif;
}

.article_rubrique {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
}

.article_motcle{
    color: #008c00;
    font-family: 'Roboto', sans-serif;
}
.article_title {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 48px;
    margin: 0;
}

.article_subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 32px;
    color: #707070;
    margin-top: 55px;
}

.article_author {
    font-weight: 700;
    color: #1d1d1b;
    font-size: 16px;
    line-height: 24px;
    margin-top: 55px;
}

/* === BANDEAU ACTIONS STICKY === */
.article_actions_placeholder {
    height: 0;
    transition: height 0.3s ease;
}

.article_actions_placeholder.active {
    height: 81px;
}

.article_actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    background-color: white;
}

.article_actions.sticky {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    margin: 0;
    z-index: 1000;
    /*animation: slideDown 0.3s ease;*/
    box-sizing: border-box;

}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.article_logo_sticky {
    opacity: 0;
    display: none;
    transition: all 0.3s ease;
    width: 110px;
    height: auto;
    margin-left: 50px;
}

.article_actions.sticky .article_logo_sticky {
    opacity: 1;
    display: block;
}

.article_actions_buttons {
    display: flex;
    justify-content: space-between;
    width: 818px;
    margin: 0 auto;
    gap: 40px;
}

.article_actions.sticky .article_actions_buttons {
    margin-left: 70px;
}

.article_button  {
    width: 174px;
    height: 32px;
    background: #fff;
    border: 1px solid #c1c1c1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #1d1d1b;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    box-sizing: border-box;
}

.btn_text_desktop {
    display: inline;
}

.btn_text_mobile {
    display: none;
}

.article_button:hover {
    opacity: 0.7;
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
}

.article_button:active {
    transform: scale(0.95);
}

/* === IMAGE PRINCIPALE === */
.article_image {
    margin-bottom: 30px;
}

.article_image img {
    width: 100%;
    height: auto;
    display: block;
}

.article_image_caption {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #707070;
    margin-top: 12px;
    line-height: 22px;
}

/* === CONTENU DE L'ARTICLE === */
.article_content {
    margin-top: 60px;
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 32px;
    padding-bottom: 64px;
    border-bottom: 1px solid #c1c1c1;
}

.article_content p {
    margin: 0 0 24px 0;
}

.article_content p:last-child {
    margin-bottom: 0;
}

.article_content strong,
.article_content b {
    font-weight: 700;
}

.article_content em,
.article_content i {
    font-style: italic;
}

.article_content a {
    color: #008c00;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.article_content a:hover {
    opacity: 0.7;
}

/* === LISTES À PUCES === */
.article_content ol {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: article-counter;
}

.article_content ol li {
    counter-increment: article-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
}

.article_content ol li:last-child {
    margin-bottom: 0;
}

.article_content ol li::before {
    content: counter(article-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #008c00;
}

.article_content ul {
    list-style: none;
    padding-left: 0;
    position: relative;
}
.article_content ul li{
    position: relative;
    margin-bottom: 24px;
    text-indent: 32px;

}
.article_content ul li::before {
    content: '';
    width: 11px;
    height: 11px;
    background: #707070;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top:12px;
}

.article_content ul li:last-child {
    margin-bottom: 0;
}

.memesarticles_titre {
    margin-top: 64px;
    font-family: 'Merriweather', serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-bottom: 32px;
    border-bottom: 1px solid #c1c1c1;

}
/* === ENCADRE === */
.encadre_titre {
    margin: 64px 0 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.encadre_texte {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 64px;
    border-bottom: 1px solid #c1c1c1;
}

/* === PAYWALL === */
.article_page_paywall {
    background-color: #dddddd;
    max-height: 424px;
    min-height: 0;
}

.paywall_box {
    width: 703px;
    margin: 0 auto;
    padding-top: 40px;
    background: #fff;
    box-sizing: border-box;
}

.paywall_title {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1b;
    margin: 0 0 32px 0;
    text-align: center;
}

.paywall_buttons {
    display: grid;
    justify-content: space-between;
    gap: 47px;
    margin-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.paywall_btn {
    width: 328px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.paywall_btn:hover {
    transform: translateY(-2px);
}

.paywall_btn:active {
    transform: translateY(0);
}

.paywall_btn_primary {
    background: #008c00;
    color: #fff;
}

.paywall_btn_secondary {
    background: #fff;
    color: #008c00;
    border: 1px solid #008c00;
}

.paywall_login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.paywall_login_text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1b;
    width: 328px;
    box-sizing: border-box;
    text-align: right;

}

/* === RESPONSIVE MOBILE === */
@media screen and (max-width: 768px) {
    .article_page {
        width: 368px;
        margin-top: 90px;
    }

    .article_container {
        padding: 20px;
    }

    .article_title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .article_subtitle {
        font-size: 17px;
        margin-bottom: 20px;
    }

    /* Bandeau actions mobile */
    .article_actions {
        display:none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
        margin-bottom: 30px;
    }

    .article_actions.sticky {
        padding: 16px 20px;
        flex-direction: row;
        align-items: center;
        max-width: 100%;
    }

    .article_actions.sticky .article_actions_buttons {
        display: none;
    }

    .article_logo_sticky {
        width: 80px;
    }

    .article_actions.sticky {
        flex-direction: row;
        align-items: center;
        width: auto;
    }

    .article_actions_buttons {
        flex-wrap: wrap;
        width: 100%;
    }

    .action_btn {
        font-size: 12px;
        padding: 6px 8px;
        flex: 1;
        min-width: calc(50% - 8px);
    }

    .action_btn svg {
        width: 16px;
        height: 16px;
    }

    .article_actions_placeholder.active {
        display: none;
    }
    .paywall_box {
        width: 100%;
    }
    .article_page_paywall {
        overflow: hidden;
        max-height: 420px;
    }

    .article_image_caption {
        padding: 0 20px;
        font-size: 11px;
    }

    /* Contenu mobile */
    .paywall_box {
        padding: 24px;
    }

    .paywall_title {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .paywall_buttons {
        grid-template-columns: 0;
        gap: 24px;
    }

    .paywall_btn {
        height: 44px;
        font-size: 14px;
    }

    .paywall_login_text {
        font-size: 14px;
        margin-bottom: 12px;
        text-align: center;
    }
}


/* === PRINT STYLES === */
@media print {
    .article_actions,
    .article_actions_placeholder {
        display: none !important;
    }

    .article_container {
        max-width: 100%;
        padding: 0;
    }

    .article_content {
        font-size: 12pt;
        line-height: 1.6;
    }
}

/* ===== RECHERCHE ===== */
.search_filters {
    margin-bottom: 40px;
}

.search_filters form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search_onefilter {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    padding: 12px 16px;
    border: 1px solid #c1c1c1;
    background: #fff;
    color: #1d1d1b;
    cursor: pointer;
    transition: border-color 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.search_onefilter:focus {
    outline: none;
    border-color: #008c00;
}

.search_onefilter:hover {
    border-color: #999;
}

.search_input_wrapper {
    display: flex;
    gap: 10px;
}

.search_input_container {
    position: relative;
    flex: 1;
}


.search_onefilter.search_input {
    flex: 1;
    padding: 12px 16px;
    width: 100%;
}

.search_input_icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto
}

.search_input_icon img {
    width: 20px;
    height: 20px;
}


.search_onefilter_green {
    background-color: #E6EDE6;
}

.search_btn {
    background: #008c00;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.search_btn:hover {
    background: #006b00;
}

.search_nbresults {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #707070;
    margin-bottom: 30px;
    font-weight: 400;
}

.search_onemore {
    padding: 20px 0;
    border-bottom: 1px solid #c1c1c1;
}

.search_onemore:last-child {
    border-bottom: none;
}

.search_onemore a {
    text-decoration: none;
    color: inherit;
}

.search_onemore a:hover {
    opacity: 0.7;
}


.recherche_texte {
    line-height: 22px;
}

.recherche_date {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: black;
    letter-spacing: -0.01em;
    font-weight: 300;
}

.recherche_smalltitle {
    font-family: 'Merriweather', serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1d1d1b;
    line-height: 1.4;
    margin-bottom: 8px;
}

.recherche_texte > div,
.recherche_texte p {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.6;
    color: #1d1d1b;
}

.search_pagerwrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.search_pagerwrapper a {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 200;
    padding: 8px 12px;
    background: #fff;
    color: #1d1d1b;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.search_pagerwrapper a:hover {
    border-color: #008c00;
    color: #008c00;
}

.search_pagerwrapper .search_pagewrappercurrent {
    font-weight: 700;
}

.search_noresults {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    text-align: center;
    color: #707070;
    padding: 60px 20px;
}


/* ===== PARUTIONS ===== */
.parutions_showone {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 25px;
    margin-top: 32px;
    letter-spacing: -0.01em;
}

.parutions_showone a {
    color: #008C00;
    text-decoration: underline;
}


/* ===== UTILITAIRES ===== */
.green {
    color: #008c00;
}

.filet_bottom {
    border-bottom: 1px solid #c1c1c1;
}

.nopaddingtop {
    padding-top: 0;
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 768px) {

    /* Base */
    body {
        padding-bottom: 100px;
    }

    /* Bandeau Newsletter */
    .bandeau_newsletter {
        position: fixed;
        bottom: 0;
        left: 0;
        width: auto;
        padding: 20px 16px 20px 16px;
        padding-right: 40px;
        min-height: auto;
        height: auto;
        z-index: 9999;
        font-size: 16px;
        line-height: 22px;
    }

    .bandeau_newsletter .content {
        padding: 0;
        min-height: auto;
        display: block;
    }

    .bandeau_newsletter .arrow-icon {
        display: none;
    }

    .bandeau_newsletter .text-wrapper {
        font-size: 16px;
        padding-left: 0;
        border: none;
    }

    .bandeau_newsletter .close-btn {
        display: block;
    }

    .bandeau_newsletter.closed {
        display: none;
    }

    .bandeau_newsletter.with-image {
        padding: 20px 16px 20px 16px;
        padding-right: 40px;
    }

    .bandeau_newsletter.with-image .content {
        display: block;
        padding: 0;
        min-height: auto;
    }

    .bandeau_newsletter.with-image .text-wrapper {
        font-size: 16px;
    }

    .bandeau_newsletter.with-image .image-content {
        display: none;
    }

    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 88px;
        padding: 15px 16px;
        margin-top: 0;
        background: #ebf0eb;
        z-index: 9998;
    }

    .header_small {
        margin-top: 0;
        min-height: 88px;
        margin-bottom: 20px;
    }

    .header_left {
        gap: 0;
    }

    .header_left .icon_btn:last-child {
        display: none;
    }

    .header .logo {
        width: 110.02px;
        height: 63.15px;
    }

    .header_right {
        gap: 12px;
    }

    .header-compte-text {
        display: none;
    }

    .header-subscribe {
        width: 72px;
        height: 24px;
        font-size: 10px;
    }

    .header_left img,
    .header_right img,
    .user_icon {
        width: 24px;
        height: 24px;
    }

    /* Navigation */
    .nav_rubriques,
    .semaine {
        display: none;
    }

    /* Homebloc */
    .homebloc {
        width: 100%;
        margin: 64px 0 0;
        padding: 20px;
        padding-bottom: 64px;
    }

    .homebloc_edito {
        margin-top: 90px;
    }

    .homebloc_article {
        display: block;
    }

    .homebloc_title {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 20px;
    }

    .homebloc_headline {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .homebloc_image {
        height: auto;
    }

    .homebloc_headline_small {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .homebloc_author {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .homebloc_content {
        font-size: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }


    /* Sous-rubriques */

    .sousrubrique_title {
        margin-bottom: 20px;
    }

    /* Articles Grid */
    .mais_aussi_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mais_aussi_title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* Sommaire */
    .sommaire {
        width: 100%;
        margin: 0;
        padding: 20px;
        margin-top: 90px;
    }

    .sommaire_title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .sommaire_grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 0px;
    }

    .sommaire_article {
        padding-bottom: 20px;
    }

    .sommaire_meta {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .sommaire_headline {
        font-size: 17px;
    }

    .sommaire_more {
        margin-top: 20px;
    }

    .sommaire_more_btn {
        width: 100%;
    }

    /* En Vue */
    .envue {
        width: 100%;
        margin: 0;
        padding: 20px;
    }

    .envue_columns {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .envue_column_header {
        margin-bottom: 15px;
    }

    .envue_etaussi {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer {
        padding: 30px 0;
        margin-bottom: 150px;
    }

    .footer_container {
        padding: 0 20px;
        gap: 20px;
    }

    .footer_links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer_social {
        gap: 15px;
    }

    /* Menu Hamburger */

    .menu_overlay {
        padding-top: 110px;
    }

    .menu_close {
        right: 16px;
        top: 16px;
    }
    .menu_close img {
        width: 16px;
        height: 16px;
    }
    .menu_content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px 16px;
    }

    .menu_section_title {
        font-size: 24px;
    }

    .menu_list li {
        margin-bottom: 24px;
    }

    /* ===== PAGES STATIQUES ===== */

    .static_text {
        padding-top:12px;
    }
    .static_content {
        width: 344px;
        margin: 24px auto;
        padding-bottom: 100px;
    }
    /* ===== RECHERCHE ===== */

    .page_rubrique {
        width: 344px;
        margin-top: 90px;
    }

    .search_pagerwrapper a {
        padding: 0;
    }

    /* ===== UTILITAIRES ===== */
    .filet_bottom {
        padding-bottom: 30px;
        margin-bottom: 0;
    }

}




/* ===== FORMULAIRE ===== */


.form_bloc {
    height: 48px;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
}


.form_bloc_whiteandgreen {
    background: #fff;
    border: 1px solid #008c00;
    color: #008c00;
    text-decoration: none;
    margin-bottom: 64px;
}

.form_bloc_greenandwhite {
    background: #008c00;
    border: 1px solid #008c00;
    color: #fff;
    text-decoration: none;
}


.form_bloc_grey {
    background: #ebf0eb;
    margin-bottom: 24px;
}


.form-group {
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.form-group label {
    font-weight: 700;
    color: #1d1d1b;
    margin-bottom: 8px;
    text-align: center;
}

.form-group input{
    width: 100%;
    height: 48px;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background: #fff;
    color: #1d1d1b;
    box-sizing: border-box;
    font-size: 16px;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
    border-color: #008c00;
}
.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    background: #fff;
}

.btn-submit {
    width: 100%;
    height: 48px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
/* ===== AUTHENTIFICATION ===== */

.auth-container {
    width: 368px;
    margin: 0 auto;
    margin-top: 64px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
}

.not-subscriber {
    margin-bottom: 10px;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
}

.toggle-password:hover {
    opacity: 0.7;
}

.forgot-password {
    display: block;
    margin: 10px 0;
    color: #008c00;
    text-decoration: underline;
    text-align: left;
}

.forgot-password:hover {
    opacity: 0.7;
}

.remember-me {
    margin-bottom: 20px;
}

.remember-me label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.remember-me input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


.remember-me input[type="checkbox"]:checked ~ .checkmark {
    background: #000;
}

.remember-me input[type="checkbox"]:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.remember-text {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #1d1d1b;
}

.legal-text {
    margin: 40px auto 0;
    font-size: 12px;
    line-height: 16px;
    color: #787878;
    text-align: left;
}

.auth-message {
    border-radius: 8px;
    width: 368px;
    margin: 0 auto 30px;
    position: fixed;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    align-content: center;
    color: #1d1d1b;
    height: 130px;
    top: 16px;
    z-index: 2;
    box-sizing: border-box;
    padding: 0 10px;
}
.error-message {
    background: #fde000;
}
.success-message {
    background: #fde000;
}
.auth-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.auth-close:hover {
    opacity: 0.7;
}


















@media screen and (max-width: 768px) {
    .auth-container {
        padding: 20px 16px;
        width: 100%;
    }

    .close-btn {
        top: 20px;
        right: 20px;
    }

    .auth-message {
        z-index: 9999;
        top: 2px;
        width: 348px;
    }
}




/* === PAGE MON COMPTE === */

.compte_container {
    max-width: 368px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.compte_container_header {
    padding: 0 16px;
}

.compte_header {
    background: #ebf0eb;
    padding: 26px 40px;
    margin-top: 58px;
}

.compte_title {
    font-weight: 700;
}

.compte_info {
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 8px;
}

.compte_content {
    margin: 0 auto;
    padding: 40px 0;
    box-sizing: border-box;
}

.compte_block {
    border: 1px solid #c1c1c1;
    padding: 14px;
    position: relative;
    box-sizing: border-box;
}

.compte_block_title {
    font-weight: 700;
    margin-bottom: 22px;
}

.compte_block_content {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    white-space: pre-line;
}

.compte_block_link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #008c00;
    text-decoration: underline;
    display: inline-block;
    cursor: pointer;
    padding-top: 8px;
    padding-bottom: 24px;
    padding-left: 14px;
}

.compte_block_link:hover {
    opacity: 0.7;
}

.message_archivage {
    border-radius: 8px;
    width: 416px;
    margin: 0 auto ;
    position: fixed;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    align-content: center;
    background-color: white;
    text-align: center;
    height: 80px;
    top: 120px;
    z-index: 2000;
    box-sizing: border-box;
    padding: 0 10px;
    left: 50%;
    transform: translateX(-50%);
    border: solid 1px #C1C1C1;
    display: none;
}

.message_archivage_close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.message_archivage_close:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .compte_header {
        padding-top: 114px;
        margin-top: 0;

    }
    .compte_content {
        padding: 24px;
    }

    .compte_container_header {
        padding: 0 0;
    }
    .envue_icon_down {
        padding-top: 30px;
    }
}


