:root {
    --vert-principal: #9dbf9f;
    --vert-fonce: #66856b;
    --texte: #444444;
    --blanc: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--texte);
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

.site-header {
    position: relative;
    z-index: 10;
    background: var(--blanc);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    color: inherit;
    text-decoration: none;
}

.brand-title {
    color: var(--vert-fonce);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.brand-subtitle {
    margin-top: 6px;
    font-size: 1rem;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.contact-links a {
    color: var(--texte);
    font-weight: 600;
    text-decoration: none;
}

.contact-links a:hover {
    color: var(--vert-fonce);
}

.main-nav {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--vert-principal);
    border-radius: 8px;
}

.main-nav a {
    position: relative;
    padding: 24px 20px;
    color: var(--blanc);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.12);
}

.main-nav a.active::after {
    position: absolute;
    right: 20px;
    bottom: 14px;
    left: 20px;
    height: 3px;
    content: "";
    background: var(--blanc);
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/fond-ecran.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(4, 33, 58, 0.12),
        rgba(4, 33, 58, 0.42)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 50px 24px;
    color: var(--blanc);
    text-align: center;
}

.hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 1.08;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.hero p {
    margin: 32px 0;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.hero-button {
    display: inline-block;
    padding: 15px 28px;
    border: 2px solid var(--blanc);
    border-radius: 28px;
    color: var(--blanc);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.hero-button:hover {
    color: var(--vert-fonce);
    background: var(--blanc);
}

.intro {
    padding: 85px 24px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.intro h2 {
    color: var(--vert-fonce);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: 400;
}

.intro p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.site-footer {
    padding: 28px;
    color: var(--blanc);
    text-align: center;
    background: #5b655d;
}

@media (max-width: 850px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-links {
        justify-content: flex-start;
    }

    .main-nav {
        border-radius: 0;
    }

    .main-nav a {
        padding: 16px 12px;
        font-size: 0.82rem;
    }

    .hero {
        min-height: 620px;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo {
    width: 95px;
    max-height: 95px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-block;
}

.nav-arrow {
    margin-left: 4px;
    font-size: 1.1rem;
}

.dropdown-menu {
    position: absolute;
    z-index: 30;
    top: 100%;
    left: 0;
    min-width: 220px;
    display: none;
    padding: 8px 0;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #4b4b4b;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: none;
}

.dropdown-menu a:hover {
    color: #ffffff;
    background: var(--vert-fonce);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block;
}

.page-banner {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #818181;
}

.page-banner-blog {
    background-image: url("../images/fond-ecran.jpg");
    background-position: center 42%;
    background-size: cover;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 35, 35, 0.25);
}

.page-banner-content {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    color: #ffffff;
    text-align: center;
}

.page-banner h1 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb span:last-child {
    color: #a8cba4;
}

.page-content {
    padding: 80px 24px;
    background: #ffffff;
}

.content-container {
    max-width: 930px;
    margin: 0 auto;
    font-size: 1.18rem;
    line-height: 1.8;
}

.content-container h2 {
    margin-top: 0;
    color: #4b4b4b;
    font-size: 2rem;
}

.content-container h3 {
    color: var(--vert-fonce);
}

.tarif-card {
    margin: 28px 0;
    padding: 26px 30px;
    border-left: 5px solid var(--vert-principal);
    background: #f6f8f5;
}

.tarif-card h3 {
    margin-top: 0;
}

.tarif-prix {
    margin: 10px 0;
    font-weight: 600;
}

.information-box {
    margin-top: 28px;
    padding: 18px 22px;
    border-left: 4px solid #d19a46;
    background: #fff8ea;
}

.blog-layout {
    max-width: 1320px;
    margin: 0 auto;
    padding: 76px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 65px;
}

.article-card {
    position: relative;
    margin-bottom: 34px;
    padding: 44px 48px;
    background: #ffffff;
    box-shadow: 0 7px 28px rgba(0, 0, 0, 0.08);
}

.article-category {
    display: inline-block;
    margin-bottom: 22px;
    padding: 7px 13px;
    border-radius: 3px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #292929;
}

.article-card h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.25;
}

.article-meta {
    margin: 18px 0;
    color: #888888;
    font-size: 0.9rem;
}

.article-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-link {
    color: var(--vert-fonce);
    font-weight: 700;
    text-decoration: none;
}

.blog-sidebar h2 {
    font-size: 2.6rem;
}

.search-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.search-row {
    display: flex;
    gap: 12px;
}

.search-row input {
    width: 100%;
    min-width: 0;
    padding: 13px;
    border: 1px solid #dddddd;
    border-radius: 4px;
}

.search-row button {
    padding: 13px 18px;
    border: 0;
    border-radius: 24px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    background: var(--vert-principal);
}

.recent-posts {
    padding: 0;
    list-style: none;
}

.recent-posts li {
    margin-bottom: 20px;
}

.recent-posts a {
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.5;
    text-decoration: none;
}

.recent-posts a:hover {
    color: var(--vert-fonce);
}

@media (max-width: 950px) {
    .brand-logo {
        width: 70px;
        max-height: 70px;
    }

    .contact-links {
        gap: 12px;
        font-size: 0.9rem;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        max-width: 650px;
    }
}

@media (max-width: 650px) {
    .brand-title {
        font-size: 1.45rem;
    }

    .brand-subtitle {
        font-size: 0.9rem;
    }

    .contact-links {
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .article-card {
        padding: 30px 24px;
    }

    .article-card h2 {
        font-size: 1.65rem;
    }
}

.naturopathie-intro {
    max-width: 920px;
    margin: 0 auto 70px;
}

.naturopathie-intro p {
    margin: 0 0 26px;
}

.important-note {
    margin: 38px 0;
    padding: 22px 26px;
    border-left: 5px solid #9dbf9f;
    background: #f4f8f2;
    line-height: 1.7;
}

.techniques-section {
    margin-top: 35px;
    padding-top: 55px;
    border-top: 1px solid #e5e5e5;
}

.techniques-section h2 {
    margin-bottom: 42px;
    text-align: center;
}

.techniques-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 55px;
}

.techniques-image-wrapper {
    margin: 0;
}

.techniques-image {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 0 auto;
}

.techniques-list {
    font-size: 1.08rem;
    line-height: 1.65;
}

.techniques-intro {
    margin-top: 0;
    margin-bottom: 22px;
}

.techniques-list ol {
    margin: 0;
    padding-left: 26px;
}

.techniques-list li {
    margin-bottom: 16px;
    padding-left: 7px;
}

@media (max-width: 850px) {
    .techniques-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .techniques-image {
        max-width: 500px;
    }
}

.parcours-intro {
    max-width: 930px;
    margin: 0 auto;
}

.parcours-profile {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.9fr);
    align-items: start;
    gap: 48px;
    margin-bottom: 38px;
}

.parcours-photo-wrapper {
    margin: 0;
}

.parcours-photo {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
}

.parcours-summary p {
    margin-top: 0;
}

.parcours-summary ul,
.parcours-outils {
    padding-left: 24px;
}

.parcours-summary li,
.parcours-outils li {
    margin-bottom: 16px;
}

.parcours-intro > h2 {
    margin-top: 58px;
    margin-bottom: 24px;
}

@media (max-width: 800px) {
    .parcours-profile {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .parcours-photo {
        max-width: 480px;
        margin: 0 auto;
    }
}

.physioscan-protocole {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 32px;
}

.protocole-etape {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 22px;
    padding: 28px;
    border-left: 4px solid var(--vert-principal);
    background: #f7faf6;
}

.protocole-numero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--vert-fonce);
}

.protocole-etape h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--vert-fonce);
    font-size: 1.45rem;
}

.protocole-etape p:last-child {
    margin-bottom: 0;
}

.physioscan-precaution {
    margin-top: 20px;
    padding: 14px 16px;
    border-left: 3px solid #d19a46;
    background: #fff8ea;
    font-size: 0.96rem;
    line-height: 1.65;
}

@media (max-width: 600px) {
    .protocole-etape {
        grid-template-columns: 1fr;
    }
}

.quantum-page {
    max-width: 980px;
    margin: 0 auto;
}

.quantum-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 48px;
    align-items: start;
}

.quantum-intro h2,
.quantum-section h2 {
    margin-top: 0;
}

.quantum-image-wrapper {
    margin: 0;
}

.quantum-image {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #d8d8d8;
}

.quantum-image-wrapper figcaption {
    margin-top: 10px;
    color: #777;
    font-size: 0.9rem;
    text-align: center;
}

.quantum-section {
    margin-top: 62px;
    padding-top: 42px;
    border-top: 1px solid #e5e5e5;
}

.quantum-warning {
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 4px solid #d19a46;
    background: #fff8ea;
    line-height: 1.65;
}

.quantum-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #d6d6d6;
    border-left: 1px solid #d6d6d6;
}

.quantum-grid > div {
    min-height: 74px;
    display: flex;
    align-items: center;
    padding: 18px;
    border-right: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    background: #fafafa;
    line-height: 1.45;
}

.quantum-grid > div:nth-child(6n + 1),
.quantum-grid > div:nth-child(6n + 2),
.quantum-grid > div:nth-child(6n + 3) {
    background: #f2f6f0;
}

@media (max-width: 850px) {
    .quantum-intro {
        grid-template-columns: 1fr;
    }

    .quantum-image-wrapper {
        max-width: 650px;
        margin: 0 auto;
    }

    .quantum-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .quantum-grid {
        grid-template-columns: 1fr;
    }
}

.bol-air-page {
    max-width: 980px;
    margin: 0 auto;
}

.quote-block {
    max-width: 850px;
    margin: 0 auto 70px;
    padding: 34px 28px;
    text-align: center;
}

.quote-block p {
    margin: 0;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.65;
}

.quote-block span {
    display: block;
    margin-top: 18px;
    color: var(--vert-fonce);
    font-weight: 700;
}

.bol-air-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
    gap: 52px;
    align-items: center;
}

.bol-air-image-wrapper {
    margin: 0;
}

.bol-air-image {
    display: block;
    width: 100%;
    max-width: 540px;
    height: auto;
    margin: 0 auto;
}

.bol-air-text h2,
.bol-air-section h2 {
    margin-top: 0;
}

.bol-air-section {
    margin-top: 64px;
    padding-top: 42px;
    border-top: 1px solid #e5e5e5;
}

.warning-box {
    margin: 30px 0;
    padding: 18px 22px;
    border-left: 4px solid #d19a46;
    background: #fff8ea;
    line-height: 1.7;
}

@media (max-width: 820px) {
    .bol-air-intro {
        grid-template-columns: 1fr;
    }

    .bol-air-image {
        max-width: 430px;
    }
}

.sauna-page {
    max-width: 980px;
    margin: 0 auto;
}

.sauna-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
    gap: 52px;
    align-items: center;
}

.sauna-image-wrapper {
    margin: 0;
}

.sauna-image {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
}

.sauna-text h2,
.sauna-section h2 {
    margin-top: 0;
}

.sauna-section {
    margin-top: 62px;
    padding-top: 42px;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 820px) {
    .sauna-intro {
        grid-template-columns: 1fr;
    }

    .sauna-image {
        max-width: 400px;
    }
}

.massages-page {
    max-width: 980px;
    margin: 0 auto;
}

.massages-intro,
.massage-type {
    margin-bottom: 58px;
}

.massage-type {
    padding-top: 42px;
    border-top: 1px solid #e5e5e5;
}

.massages-page h2 {
    margin-top: 0;
    color: var(--vert-fonce);
}

.massage-type ul {
    margin: 24px 0;
    padding-left: 26px;
}

.massage-type li {
    margin-bottom: 12px;
    line-height: 1.65;
}

.article-thumbnail {
    display: block;
    width: 100%;
    max-height: 360px;
    margin: 24px 0;
    object-fit: cover;
}

.article-card h2 a {
    color: inherit;
    text-decoration: none;
}

.article-card h2 a:hover {
    color: var(--vert-fonce);
}

.article-detail {
    max-width: 920px;
    margin: 0 auto;
    padding: 76px 24px;
}

.article-detail > h1 {
    margin: 18px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.15;
}

.article-hero-image {
    margin: 38px 0;
}

.article-hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 1.14rem;
    line-height: 1.8;
}

.article-content h2 {
    margin-top: 52px;
    color: var(--vert-fonce);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
}

.article-content ul {
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 12px;
}
.article-inline-image {
    max-width: 920px;
    margin: 34px auto;
}

.article-inline-image img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #dddddd;
}

.article-inline-image figcaption {
    margin-top: 10px;
    color: #707070;
    font-size: 0.92rem;
    text-align: center;
}
.allergies-table-wrapper {
    margin: 34px 0;
    overflow-x: auto;
}

.allergies-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #ffffff;
}

.allergies-table th,
.allergies-table td {
    padding: 16px;
    border: 1px solid #d7ded4;
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
}

.allergies-table th {
    color: #ffffff;
    font-weight: 700;
    background: var(--vert-fonce);
}

.allergies-table tbody tr:nth-child(even) {
    background: #f5f8f3;
}

.allergies-table td:first-child {
    width: 20%;
    color: var(--vert-fonce);
    font-weight: 700;
}
.blog-page {
    max-width: 1220px;
    margin: 0 auto;
    padding: 72px 24px 90px;
}

.blog-introduction {
    max-width: 820px;
    margin-bottom: 38px;
}

.blog-introduction h2 {
    margin-bottom: 14px;
    color: var(--vert-fonce);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
}

.blog-filtres {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(210px, 0.55fr) auto;
    gap: 18px;
    align-items: end;
    margin-bottom: 22px;
    padding: 24px;
    background: #f4f7f2;
    border: 1px solid #e0e7dc;
}

.blog-filtres label {
    display: block;
    margin-bottom: 8px;
    color: #454545;
    font-size: 0.92rem;
    font-weight: 700;
}

.blog-filtres input,
.blog-filtres select {
    box-sizing: border-box;
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #ccd5c8;
    border-radius: 3px;
    background: #ffffff;
    color: #333333;
    font: inherit;
}

.blog-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 46px;
}

.btn-blog-filtrer,
.btn-blog-reset {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border: 0;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.btn-blog-filtrer {
    color: #ffffff;
    background: var(--vert-fonce);
}

.btn-blog-filtrer:hover {
    filter: brightness(0.94);
}

.btn-blog-reset {
    color: var(--vert-fonce);
    background: #ffffff;
    border: 1px solid #b7c8b3;
}

.blog-resultat-compteur {
    margin: 18px 0 26px;
    color: #666666;
    font-size: 0.95rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e3e6e1;
    background: #ffffff;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.06);
}

.article-card-image-link {
    display: block;
    background: #eef2ec;
}

.article-card-image {
    display: block;
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.article-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.article-category {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 15px;
    padding: 6px 10px;
    color: #ffffff;
    background: #2c2c2c;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.article-card h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1.2;
}

.article-card h2 a {
    color: #3f3f3f;
    text-decoration: none;
}

.article-card h2 a:hover {
    color: var(--vert-fonce);
}

.article-meta {
    margin-bottom: 18px;
    color: #8a8a8a;
    font-size: 0.9rem;
}

.article-resume {
    margin: 0 0 26px;
    color: #505050;
    line-height: 1.7;
}

.article-link {
    margin-top: auto;
    color: var(--vert-fonce);
    font-weight: 700;
    text-decoration: none;
}

.article-link:hover {
    text-decoration: underline;
}

.blog-vide {
    grid-column: 1 / -1;
    padding: 42px;
    border: 1px solid #e0e7dc;
    background: #f6f8f5;
    text-align: center;
}

.blog-vide h2 {
    color: var(--vert-fonce);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

@media (max-width: 850px) {
    .blog-filtres {
        grid-template-columns: 1fr 1fr;
    }

    .blog-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    .blog-page {
        padding: 48px 18px 70px;
    }

    .blog-filtres,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-card-image {
        height: 210px;
    }

    .blog-actions {
        flex-wrap: wrap;
    }
}
.admin-blog-page {
    max-width: 1050px;
    margin: 0 auto;
    padding: 70px 24px 90px;
}

.admin-blog-header {
    margin-bottom: 28px;
}

.admin-blog-header h2 {
    color: var(--vert-fonce);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: 400;
}

.article-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 32px;
    border: 1px solid #dde5d9;
    background: #f7f9f6;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.article-form label {
    margin-bottom: 8px;
    color: #444;
    font-weight: 700;
}

.article-form input,
.article-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd6c7;
    border-radius: 3px;
    background: #fff;
    color: #333;
    font: inherit;
}

.article-content-editor {
    min-height: 500px;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.92rem;
    line-height: 1.55;
}

.form-checkbox {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-checkbox input {
    width: auto;
}

.article-form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
}

.flash-message {
    margin-bottom: 22px;
    padding: 14px 18px;
    border-left: 4px solid;
}

.flash-danger {
    border-color: #b64040;
    background: #fff1f1;
    color: #7c2525;
}

.flash-success {
    border-color: #6f9870;
    background: #eef7ed;
    color: #315e34;
}

@media (max-width: 720px) {
    .article-form {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .form-group-full {
        grid-column: auto;
    }

    .form-checkbox,
    .article-form-actions {
        grid-column: auto;
    }
}
.blog-admin-action {
    margin-top: 22px;
}
