body {
    background: url(../img/fondusite01.jpg) no-repeat fixed;
    background-color: #fcfbfb;
    background-size: cover;
    font-family: "Lora", serif;
    text-align: center;
    color: #070707;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: pageFadeIn 0.7s ease forwards;
}

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

header {
    padding: 8px clamp(15px, 4vw, 50px);
}

.navtitrestructure {
    margin-bottom: 8px;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
}

.nav-gauche {
    display: flex;
    align-items: center;
    gap: clamp(10px, 3vw, 20px);
}

.navlogo {
    height: clamp(28px, 4vw, 42px);
    width: auto;
    transition: transform 0.3s ease;
}

.navlogo:hover {
    transform: scale(1.1) rotate(5deg);
}

.navtitre {
    color: #e0f806;
    font-weight: 800;
    font-size: clamp(18px, 4vw, 32px);
    text-shadow: 2px 2px 0 black, -2px 2px 0 black, 2px -2px 0 black, -2px -2px 0 black;
    text-decoration: none;
    transition: 0.3s ease;
}

.navtitre:hover {
    color: #fff;
}

.nav-droite {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 18px);
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 35px 8px 12px;
    font-size: 14px;
    border: 2px solid #444;
    border-radius: 25px;
    background: rgba(250, 247, 247, 0.6);
    color: #050505;
    outline: none;
    transition: 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.search-box input:focus {
    border-color: #e0f806;
    box-shadow: 0 4px 12px rgba(224,248,6,0.4);
    background: #fff;
}

.search-box::after {
    content: "🔍";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
}

.navicone {
    height: 28px;
    width: auto;
    transition: 0.3s ease;
    cursor: pointer;
}

.navicone:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

@media (max-width: 1200px) {
    .navtitrestructure {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .nav-gauche, .nav-droite {
        justify-content: center;
    }
}

.navboutonstructure {
    margin: 5px 0;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbouton {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5px;
}

.bouton1,
.bouton1fix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: clamp(16px, 2.5vw, 20px);
    text-decoration: none;
    border: 1px solid #000;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.bouton1 {
    background: #fff;
    color: #000;
}

.bouton1fix {
    background: rgba(250, 250, 0, 0.95);
    color: #000;
}

.bouton1:hover {
    background: rgba(255, 255, 0, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.4);
}

.bouton1:active {
    transform: translateY(0);
}

main {
    padding: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ----- TITRE PAGE ----- */
.pagetitrestructure {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    gap: 10px;
}
.pagetitre {
    padding: 5px 50px;
    background: rgba(5,5,5,0.5);
    border: 1px solid #000;
    border-radius: 12px;
    color: #FFFF00;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.8);
}
.pagetitre img {
    height: 2em;
}

/* ----- Présentation ----- */
.pagepresentation {
    margin: 15px auto 100px auto;
    padding: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
    max-width: 800px;
    color: #070707;
    border: 1px solid #000;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.8);
}

/* ----- Bando article ----- */
.blocarticlebando {
    margin: 12px auto;
    padding: 12px;
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.blocarticletitre,
.blocarticlepublie {
    background: rgba(255,255,255,0.7);
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid #000;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    font-weight: bold;
    transition: 0.3s ease;
}
.blocarticletitre:hover,
.blocarticlepublie:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.4);
}
.blocarticletitre h1 {
    font-size: clamp(18px,3.5vw,28px);
}

/* ----- Responsive bando ----- */
@media (max-width: 768px) {
    .blocarticlebando {
        flex-direction: column;
        padding: 10px;
    }
    .blocarticlepublie { text-align: left; }
    .metawrap {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
}

/* ----- BLOC ARTICLE PAGE D’ACCUEIL ----- */
.blocarticle {
    width: 90%;
    max-width: 1200px;
    margin: 12px auto;
    display: flex;
    gap: 15px;
    align-items: stretch;
    background: rgba(255,255,255,0.5);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #00000055;
}

.article-image {
    width: 35%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.article-image:hover {
    transform: scale(1.02);
}

.article-texte {
    width: 65%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.article-texte h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.article-texte p {
    margin-bottom: 12px;
    line-height: 1.5;
}

/* ----- Bouton Lire ----- */
.bouton-lire {
    display: inline-block;
    padding: 8px 14px;
    background: #3498db;
    color: white !important;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}
.bouton-lire:hover {
    background: #217dbb;
    transform: translateY(-2px);
}

/* ----- Responsive article card ----- */
@media (max-width: 900px) {
    .blocarticle {
        flex-direction: column;
    }
    .article-image {
        width: 100%;
        height: 220px;
    }
    .article-texte {
        width: 100%;
    }
}

/* ----- BLOC ARTICLE PAGE ARTICLE (GRAND) ----- */
#article-image {
    width: 35%;
    height: 400px;
    object-fit: cover;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}
#article-image:hover {
    transform: scale(1.02);
}

.blocarticletext {
    width: 65%;
    height: 400px;
    padding: 18px;
    background: rgba(255,255,255,0.5);
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    overflow-y: auto;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .blocarticle {
        flex-direction: column;
    }
    #article-image {
        width: 100%;
        height: 220px;
    }
    .blocarticletext {
        height: auto;
        overflow: visible;
        width: 100%;
    }
}

/* ----- SOCIAL ----- */

/* Conteneur des 2 boutons */
.social-actions{
    display: flex;
    align-items: center;
    gap: 10px;              /* espace entre like / dislike */
    flex-wrap: nowrap;      /* reste sur une ligne */
  }
  
  /* (optionnel) évite que les boutons s’étirent */
  .social-actions .reaction-btn{
    width: auto;
    white-space: nowrap;
  }
.blocsocialstructure {
    margin: 12px auto;
    width: 90%;
    max-width: 1200px;
}
.blocsocial {
    background: rgba(255,255,255,0.5);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    border: 1px solid #000;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

#comment-form {
    flex: 1;
    display: flex;
    gap: 8px;
}
@media (max-width: 700px){
    .blocsocial{ flex-direction: column; align-items: stretch; }
    .social-actions{ justify-content: flex-end; }
  }

  .article-actions{
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* tags à gauche, éditer à droite */
    gap: 12px;
    flex-wrap: wrap; /* si ça déborde, ça passe à la ligne proprement */
  }
  
  .article-tags{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .tag-pill{
    padding: 4px 8px;
    font-size: 14px;
  }
  
  .edit-btn{
    padding: 4px 10px;
    font-size: 14px;
    white-space: nowrap;
  }
  

/* ----- Boutons Like / Dislike ----- */
.reaction-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}
.reaction-btn:hover {
    background: #222;
    transform: translateY(-2px);
}
.reaction-btn.active {
    background: #e0f806;
    color: #000;
    transform: scale(1.05);
}

/* ----- Commentaires ----- */
.bloccommentstructure {
    margin: 12px auto;
    width: 90%;
    max-width: 1200px;
}
.bloccomment {
    background: rgba(255,255,255,0.5);
    padding: 18px;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
#comment-form textarea{
    flex: 1;
    min-height: 44px;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 10px;
    resize: vertical;
  }
  
  #comment-form button{
    padding: 10px 14px;
    border: 2px solid #000;
    border-radius: 10px;
    background: #000;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
  }
  .comment-item{
    text-align:left;
    padding:10px 12px;
    border:1px solid #000;
    border-radius:10px;
    background: rgba(255,255,255,0.7);
    margin-top:10px;
  } 
  .comment-delete-btn{
    margin-left: 10px;
    padding: 6px 10px;
    border: 2px solid #000;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-weight: 700;
  }
  .comment-delete-btn:hover{
    background: #ffd7d7;
  }
  .comment-meta{
    font-size: 12px;
    opacity: 0.75;
    margin-top: 6px;
    text-align: left;
  }

  .comment-reply-btn{
    margin-left: 10px;
    padding: 6px 10px;
    border: 2px solid #000;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-weight: 700;
  }
  .comment-reply-box{
    margin-top: 10px;
    text-align: left;
  }
  .comment-reply-box textarea{
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border: 2px solid #000;
    border-radius: 10px;
    resize: vertical;
    margin-top: 6px;
  }
  .comment-reply-box .reply-send{
    margin-top: 8px;
    padding: 6px 10px;
    border: 2px solid #000;
    border-radius: 10px;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
  }

/* ----- FORMULAIRE LOGIN & REGISTER ----- */
.formwrapper {
    max-width: 450px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    animation: fadeIn 0.6s ease-out;
}

.formwrapper input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 2px solid rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: 0.3s ease;
}
.formwrapper input:focus {
    border-color: #e0f806;
    background: #fff;
    box-shadow: 0 0 12px rgba(224,248,6,0.7);
    transform: scale(1.03);
}

.form-avatar { /* Avatar dans les formulaires */
    width: 120px; /* Largeur fixe */
    height: 120px; /* Hauteur fixe */
    border-radius: 50%; /* Cercle */
    object-fit: cover; /* Coupe l'image sans déformer */
    display: block; /* Évite les espaces inline */
    margin: 0 auto 15px auto; /* Centre + espace dessous */
}

.bouton-form {
    width: 100%;
    padding: 12px;
    margin-top: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    background: #e0f806;
    border: 2px solid #000;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.bouton-form:hover {
    background: #fff;
    transform: translateY(-3px) scale(1.03);
}

.msg-error {
    padding: 12px;
    background: rgba(255,0,0,0.25);
    border: 2px solid red;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 10px;
}
.msg-success {
    padding: 12px;
    background: rgba(0,255,0,0.25);
    border: 2px solid green;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 10px;
}
.profile-avatar-circle { /* Cercle qui sert de "masque" */
    width: 120px; /* Largeur */
    height: 120px; /* Hauteur */
    border-radius: 50%; /* Cercle */
    overflow: hidden; /* Découpe tout ce qui dépasse */
    margin: 0 auto 15px auto; /* Centre + espace dessous */
    border: 2px solid rgba(0,0,0,0.2); /* Petit contour (optionnel) */
}

.profile-avatar-img { /* Image dans le cercle */
    width: 100%; /* Remplit */
    height: 100%; /* Remplit */
    object-fit: cover; /* Recadre proprement */
    display: block; /* Évite les espaces */
}
.navbar { /* Barre nav */
    display: flex; /* Flex */
    gap: 12px; /* Espaces */
    align-items: center; /* Centrage vertical */
    padding: 12px 16px; /* Padding */
}

.nav-link { /* Liens nav */
    text-decoration: none; /* Pas de soulignement */
    font-weight: 800; /* Gras */
    padding: 8px 12px; /* Padding */
    border-radius: 10px; /* Arrondi */
    background: rgba(255,255,255,0.25); /* Fond léger */
}

.nav-link:hover { /* Survol */
    background: rgba(255,255,255,0.35); /* Fond plus visible */
}

.btn-logout { /* Bouton déconnexion */
    border: 2px solid rgba(0,0,0,0.6); /* Bordure */
    background: rgba(255, 0, 0, 0.18); /* Rouge léger */
}

.btn-logout:hover { /* Survol logout */
    background: rgba(255, 0, 0, 0.28); /* Rouge plus fort */
}

.admin-link { /* Lien admin */
    display: inline-block; /* Permet de styliser */
    border-radius: 10px; /* Arrondi */
    padding: 2px; /* Petit espace */
    background: rgba(0, 150, 255, 0.15); /* Bleu léger */
}

.admin-link:hover { /* Survol admin */
    background: rgba(0, 150, 255, 0.28); /* Bleu plus fort */
}
/* ----- BOUTON RETOUR HAUT ----- */
.bouton-retour {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    cursor: pointer;
    z-index: 1000;
    border-radius: 8px;
}

.bouton-retour.visible {
    opacity: 0.7;
    pointer-events: auto;
}

.bouton-retour:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.bouton-retour img {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: opacity .25s ease;
}
.img-normal { opacity: 1; }
.img-hover  { opacity: 0; }
.bouton-retour:hover .img-normal { opacity: 0; }
.bouton-retour:hover .img-hover  { opacity: 1; }

/* ----- FOOTER ----- */
footer {
    margin-top: 30px;
    padding: 20px 0;
}

.bandofinstructure {
    width: 100%;
    display: flex;
    justify-content: center;
}

.bandofin {
    background: rgba(10,10,10,0.9);
    width: 80%;
    max-width: 600px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.bandofin p {
    margin: 0;
    font-size: 16px;
}
/* ----- ANIMATIONS ----- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ---- CREATE ARTICLE (layout + tags) ---- */
.article-form{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  /* 2 colonnes sur écran large */
  @media (min-width: 900px){
    .article-form{
      grid-template-columns: 1.4fr 0.8fr;
      column-gap: 18px;
      align-items: start;
    }
  }
  /* group gauche / droite */
  .form-col{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .tag-select{
    width: 100%;
    min-height: 140px;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    background: rgba(255,255,255,0.7);
  }
  .tag-help{
    margin-top: -6px;
    font-size: 13px;
    opacity: 0.85;
  }
    /* =========================
   ARTICLE EDITOR (create/edit)
   ========================= */
.article-editor{
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.55);
    background: rgba(255,255,255,0.55);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  }
  .article-editor h1{
    margin: 0 0 14px 0;
    font-size: 28px;
    letter-spacing: 0.3px;
  }
  .article-form{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  @media (min-width: 900px){
    .article-form{
      grid-template-columns: 1.4fr 0.8fr;
      column-gap: 18px;
      align-items: start;
    }
  }
  .form-col{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .article-editor label{
    font-weight: 800;
    margin-top: 6px;
  }
  .article-editor input[type="text"],
  .article-editor input[type="number"],
  .article-editor input[type="file"],
  .article-editor textarea,
  .article-editor select{
    width: 100%;
    padding: 12px 12px;
    border: 1px solid rgba(0,0,0,0.7);
    border-radius: 12px;
    background: rgba(255,255,255,0.75);
    outline: none;
    font-size: 16px;
  }
  .article-editor textarea{
    min-height: 320px;
    resize: vertical;
    line-height: 1.45;
  }
  .article-editor input:focus,
  .article-editor textarea:focus,
  .article-editor select:focus{
    box-shadow: 0 0 0 3px rgba(0,0,0,0.15);
  }
  .article-editor .msg{
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.65);
    margin: 10px 0 14px 0;
    font-weight: 700;
  }
  .article-editor .msg-error{
    background: rgba(255, 0, 0, 0.08);
  }
  .article-editor .msg-success{
    background: rgba(0, 200, 0, 0.10);
  }
  /* Bouton principal (Publier / Enregistrer) */
  .article-editor .bouton-form{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
  }
  .article-editor .bouton-form:hover{
    background: #222;
    transform: translateY(-1px);
  }
  /* Aperçu image edit */
  .article-editor .image-preview{
    margin: 8px 0;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.6);
    background: rgba(255,255,255,0.6);
  }
  .article-editor .image-preview img{
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.75);
    display: block;
  }
/* ===== TAGS CHIPS (create/edit) - VERSION COMPACTE ===== */
.article-editor .tags-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(0,0,0,0.7);
  border-radius: 14px;
  background: rgba(255,255,255,0.65);
}

/* tag-chip = label : on annule le style global des labels */
.article-editor .tags-chips .tag-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin: 0;          /* annule margin-top du label */
  padding: 0;         /* pas de gros padding */
  border: 0;          /* la bordure est sur le span */
  background: transparent;

  font-weight: 700;   /* annule le 800 du label */
  cursor: pointer;
  user-select: none;
  line-height: 1;
}

/* checkbox petite + sans marges */
.article-editor .tags-chips .tag-chip input{
  width: 12px;
  height: 12px;
  margin: 0;
}

/* le “bouton” visuel */
.article-editor .tags-chips .tag-chip span{
  display: inline-flex;
  align-items: center;

  padding: 2px 6px;   /* ✅ mini espace texte/bord */
  border: 1px solid rgba(0,0,0,0.8);
  border-radius: 999px;
  background: rgba(255,255,255,0.85);

  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  transition: 0.18s ease;
}

/* sélection (sans :has) */
.article-editor .tags-chips .tag-chip input:checked + span{
  background: #e0f806;
  transform: translateY(-1px);
}

.article-editor .tags-chips .tag-chip:hover span{
  transform: translateY(-1px);
}
.flash-wrap{
    max-width: 1000px;
    margin: 12px auto 0;
  }

  .bouton1.btn-small{
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1;
  }
  .article-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap; /* si petit écran, ça passe en ligne */
  }
  
  .article-actions-right{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:auto; /* pousse à droite */
  }
  
  .delete-form{
    display:inline-block;
    margin:0;
  }

  /* ===== FORCE OVERRIDE : Article lisible + aligné à gauche ===== */
.article-page,
.article-page * {
  text-align: left !important;
}

.article-page .blocarticletext {
  font-size: 20px !important;
  line-height: 1.85 !important;
}

.article-page .blocarticletext p,
.article-page .blocarticletext div {
  text-align: left !important;
}

.article-page .blocarticletitre h1 {
  text-align: left !important;
}

.article-page .blocarticlepublie,
.article-page .metawrap {
  justify-content: flex-start !important;
  text-align: left !important;
}

/* Si ton thème met du "center" quelque part */
.article-page .blocarticle,
.article-page .blocarticlebando,
.article-page .blocsocialstructure,
.article-page .bloccommentstructure {
  text-align: left !important;
}

/* Option: largeur de lecture + confort */
.article-page .blocarticletext {
  max-width: 820px;
  margin: 0 auto;
}
