/* ===============================
   DOMUTRACK ARTICLE V2 CLEAN
   =============================== */

:root{
  --vert:#1B5E20;
  --vert-2:#2E7D32;
  --vert-dark:#123E16;

  --jaune:#FFC107;

  --fond:#F7F5F0;
  --blanc:#ffffff;

  --texte:#1A1A1A;
  --texte-soft:#5E655F;

  --ligne:rgba(27,94,32,.10);

  --ombre:0 30px 80px rgba(18,62,22,.10);

  --max:1140px;

  --radius:26px;
}

/* ===============================
   BASE
   =============================== */

body{
  margin:0;
  font-family:'Inter', sans-serif;
  background:var(--fond);
  color:var(--texte);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

/* ===============================
   HEADER
   =============================== */

header{
  position:sticky;
  top:0;
  z-index:1000;

  backdrop-filter:blur(10px);
  background:rgba(247,245,240,.9);

  border-bottom:1px solid var(--ligne);
}

.header-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 24px;

  display:flex;
  align-items:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand-tagline{
  font-size:.82rem;
  color:var(--texte-soft);
}

.logo{
  width:44px;
  height:44px;
  border-radius:12px;
  object-fit:contain;
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.brand-name{
  font-weight:800;
  color:var(--vert);
}

.main-nav{
  margin-left:auto;
  display:flex;
  gap:10px;
}

.main-nav a{
  padding:8px 14px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  color:var(--texte);
}

.main-nav a.active{
  background:var(--vert);
  color:#fff;
}

/* ===============================
   BREADCRUMB
   =============================== */

.breadcrumb-wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 24px 0;
}

.breadcrumb{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.breadcrumb-link{
  padding:6px 12px;
  border-radius:999px;
  background:rgba(27,94,32,.08);
  color:var(--vert);
  font-weight:600;
  text-decoration:none;
}

.breadcrumb-current{
  color:var(--texte-soft);
}

/* ===============================
   HERO FULL WIDTH
   =============================== */

.article-hero{
  width:100%;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);

  padding:90px 0 80px;

  background:
    radial-gradient(circle at top right, rgba(255,193,7,.2), transparent 40%),
    linear-gradient(135deg,var(--vert-dark),var(--vert),var(--vert-2));

  color:#fff;
}

.article-hero-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

.article-hero h1{
  font-size:clamp(2.2rem,4vw,3rem);
  line-height:1.1;
  margin-bottom:20px;
}

.highlight{
  color:var(--jaune);
}

.hero-subtitle{
  opacity:.9;
  margin-bottom:10px;
}

.hero-box{
  margin-top:25px;
  padding:20px;
  border-radius:16px;

  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.2);
}

.hero-box a{
  color:var(--jaune);
  font-weight:700;
}

/* ===============================
   TOC
   =============================== */

.toc-v2{
  margin-top:-40px;
  margin-bottom:60px;
}

.toc-v2-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:25px;

  background:#fff;
  border-radius:20px;
  box-shadow:var(--ombre);
}

.toc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.toc-card{
  padding:14px;
  border-radius:12px;
  background:#F4F6F2;
  text-decoration:none;
  color:var(--texte);
  font-weight:600;
}

.toc-card:hover{
  background:#E8F5E9;
}

/* ===============================
   ARTICLE CARD
   =============================== */

.article-shell{
  padding:100px 0 140px;
}

.article-container{
  max-width:1000px;
  margin:0 auto;
  padding:60px;

  background:#fff;
  border-radius:28px;
  box-shadow:var(--ombre);
}

/* ===============================
   CONTENT
   =============================== */

.article-section{
  margin-bottom:100px;
}

.section-title{
  display:flex;
  align-items:flex-start;
  gap:14px;

  font-size:30px;
  font-weight:800;
  line-height:1.2;
  margin:0 0 24px;
  color:#1B5E20;
}


.section-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:36px;
  height:36px;
  flex:0 0 36px;

  border-radius:10px;
  background:#E8F5E9;
  color:#1B5E20;
  font-weight:700;
  font-size:16px;

  margin-top:2px;
}

.section-title span{
  display:inline-flex;
}

.article-container p{
  font-size:17px;
  line-height:1.8;
}

.article-container ul{
  list-style:none;
  padding-left:0;
}

.article-container li{
  position:relative;
  padding-left:26px;
  margin-bottom:10px;
}

.article-container li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--vert);
}

blockquote{
  margin:30px 0;
  padding:20px;
  background:#F1F8F4;
  border-left:4px solid var(--vert);
  border-radius:10px;
}

/* ===============================
   TABLE
   =============================== */

table{
  width:100%;
  border-collapse:collapse;
  margin-top:20px;
}

th{
  background:var(--vert);
  color:#fff;
}

td, th{
  padding:10px;
  border:1px solid #ddd;
}

/* ===============================
   CTA
   =============================== */

.article-cta{
  margin-top:50px;
  padding:30px;
  border-radius:20px;

  background:linear-gradient(135deg,var(--vert),var(--vert-2));
  color:#fff;
  text-align:center;
}

.cta-button{
  display:inline-block;
  margin-top:20px;
  padding:14px 28px;
  border-radius:999px;

  background:var(--jaune);
  color:var(--vert-dark);

  font-weight:800;
  text-decoration:none;
}

/* ===============================
   CROSS LINKS (GUIDES) — CLEAN
   =============================== */

.article-crosslinks{
  margin:120px 0;
}

.article-crosslinks-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

.crosslinks-head{
  max-width:720px;
  margin-bottom:40px;
}

.crosslinks-label{
  display:inline-flex;
  align-items:center;
  gap:6px;

  padding:6px 12px;
  border-radius:999px;

  font-size:12px;
  font-weight:700;
  text-transform:uppercase;

  background:rgba(27,94,32,.08);
  border:1px solid rgba(27,94,32,.12);
  color:var(--vert);
}

.article-crosslinks .crosslinks-head h2{
  font-size:30px;
  margin:12px 0;
}

.article-crosslinks .crosslinks-head p{
  color:var(--texte-soft);
  line-height:1.6;
}

/* GRID */
.crosslinks-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:22px;
}

/* CARD */
.crosslink-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;

  border:1px solid rgba(27,94,32,.08);

  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:all .25s ease;
}

.crosslink-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.crosslink-card img{
  width:100%;
  height:170px;
  object-fit:cover;
}

/* CONTENT */
.crosslink-content{
  padding:20px;
}

.crosslink-content h3{
  font-size:18px;
  margin-bottom:10px;
}

.crosslink-content p{
  font-size:14px;
  color:#666;
  margin-bottom:14px;
}

.crosslink-content .article-link{
  font-weight:600;
  color:var(--vert);
  text-decoration:none;
}

.crosslink-content .article-link:hover{
  text-decoration:underline;
}

/* ===============================
   FAQ — VERSION PREMIUM
   =============================== */

.faq-section{
  margin:120px 0;
}

.faq-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

/* HEAD */
.faq-head{
  max-width:720px;
  margin-bottom:40px;
}

.faq-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:6px;

  padding:6px 12px;
  border-radius:999px;

  font-size:12px;
  font-weight:700;
  text-transform:uppercase;

  background:rgba(27,94,32,.08);
  border:1px solid rgba(27,94,32,.12);
  color:var(--vert);
}

.faq-section .faq-head h2{
  font-size:30px;
  margin:12px 0;
}

.faq-section .faq-head p{
  color:var(--texte-soft);
}

/* LIST */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* ITEM */
.faq-item{
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(27,94,32,.08);
  overflow:hidden;

  transition:.25s ease;
}

.faq-item.active{
  border-color:var(--vert);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

/* QUESTION */
.faq-question{
  width:100%;
  padding:20px;

  background:none;
  border:none;

  text-align:left;
  font-size:16px;
  font-weight:600;

  cursor:pointer;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ICON */
.faq-icon{
  font-size:20px;
  color:var(--vert);
  transition:.2s;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;

  transition:max-height .3s ease;

  padding:0 20px;
}

.faq-answer p{
  margin:15px 0;
  color:#555;
  line-height:1.6;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

/* ===============================
   ISOLATION CONTENU ARTICLE
   =============================== */

.article-container h2{
  all:unset;
  display:block;

  font-family:'Manrope', sans-serif;
  color:#1B5E20;

  font-size:30px;
  font-weight:800;
  line-height:1.3;

  margin-bottom:24px;
}

.article-container h3{
  font-size:20px;
  font-weight:600;
  color:#1B5E20;
  margin-top:30px;
  margin-bottom:12px;
}

/* ===============================
   INFO CARD (STYLE HUB / LANDING)
   =============================== */

.info-card{
  background:#fff;
  border-radius:16px;
  padding:20px;

  border:1px solid rgba(27,94,32,.10);

  box-shadow:0 8px 20px rgba(0,0,0,0.04);

  transition:.2s ease;
}

.info-card:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.info-card h3{
  margin-bottom:10px;
}

.info-card ul{
  margin:0;
}

/* ===============================
   BT01 PREMIUM (UPGRADE)
   =============================== */

.bt01-inner{
  background:linear-gradient(135deg, #FFF8E1, #FFE9A7);
  border:1px solid rgba(255,193,7,.6);

  border-radius:20px;
  padding:30px;

  box-shadow:
    0 15px 40px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
}

/* titre */
.bt01-title{
  display:flex;
  align-items:center;
  gap:10px;

  font-weight:800;
  font-size:20px;

  color:#7A5C00;

  margin-bottom:16px;
}

/* emoji plus visible */
.bt01-title::before{
  content:"⚠️";
  font-size:22px;
}

/* liste */
.bt01-inner ul{
  margin-top:14px;
  padding-left:0;
  list-style:none;
}

.bt01-inner li{
  margin-bottom:10px;
  padding-left:26px;
  position:relative;
}

.bt01-inner li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#1B5E20;
  font-weight:bold;
}

/* tip */
.bt01-tip{
  margin-top:18px;
  padding-top:14px;

  border-top:1px solid rgba(0,0,0,.08);

  font-weight:500;
}

.bt01-box{
  margin:60px 0; /* ← espace haut + bas */
}
.insight-box{
  margin:30px 0;
  padding:22px 24px;

  border-radius:14px;

  background:linear-gradient(135deg,#E8F5E9,#F1F8F4);

  border:1px solid rgba(27,94,32,.18);

  box-shadow:0 10px 25px rgba(18,62,22,.08);
}

.insight-box strong{
  color:#1B5E20;
  display:block;
  margin-bottom:6px;
}

/* ===============================
   Transition visuelle paragraphe
   =============================== */

.article-guide{
  background:#ffffff;
  border-radius:28px;

  padding:70px 70px;

  border:1px solid rgba(27,94,32,.05);

  box-shadow:
    0 60px 120px rgba(18,62,22,.12),
    0 20px 50px rgba(18,62,22,.06);
}

.article-guide section p{
  max-width:720px;
}

.article-guide h3{
  margin-top:35px;
}

.section-title + p{
  margin-bottom:25px;
}

.article-guide section:last-child{
  margin-bottom:40px;
}

.article-crosslinks{
  margin:40px 0 100px;
}

/* ===============================
   Footer
   =============================== */
    footer.site-footer{
      background:#0F2112;
      color:rgba(255,255,255,.78);
      padding:28px 24px 42px;
      text-align:center;
    }
    footer.site-footer a{
      color:rgba(255,255,255,.82);
    }
    footer.site-footer a:hover{text-decoration:underline}



 /* ===============================
   CTA FINAL (ALIGN LANDING)
   =============================== */
   
/* CTA ARTICLE ALIGNÉ */
.final-cta{
  padding:60px 0;
}

/* IMPORTANT → largeur alignée article */
.final-cta .article-container{
  max-width:1000px;
  margin:0 auto;
  padding:0 24px;
}


/* carte */
.final-card{
  background:linear-gradient(135deg, var(--vert), var(--vert-2));
  color:#fff;
  border-radius:28px;

  padding:48px 32px;

  box-shadow:
    0 30px 80px rgba(18,62,22,.18),
    0 10px 30px rgba(18,62,22,.08);

  text-align:center;
}

/* titre */
.final-card h2{
  color:#ffffff;
  text-shadow:0 6px 25px rgba(0,0,0,.25);
  margin:0 0 16px;
  font-family:var(--font-display);
  font-size:clamp(1.5rem,3vw,2.4rem);
  line-height:1.1;
}

/* texte */
.final-card p{
  max-width:640px;
  margin:0 auto 28px;
  color:rgba(255,255,255,.9);
  font-size:1.05rem;
}

/* bouton */
.final-actions{
  margin-bottom:20px;
}

.final-card .btn-primary{
  display:inline-block;

  background:var(--jaune);
  color:#123E16;

  padding:18px 34px;
  border-radius:999px;

  font-weight:800;
  font-size:1.1rem;

  text-decoration:none;

  box-shadow:
    0 25px 60px rgba(255,193,7,.45),
    0 10px 25px rgba(0,0,0,.15);

  transition:.25s ease;
}

.final-card .btn-primary:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:
    0 30px 70px rgba(255,193,7,.55),
    0 15px 35px rgba(0,0,0,.2);
}

/* trust */
.final-trust{
  font-size:.9rem;
  color:rgba(255,255,255,.85);
}

.final-cta{
  margin:100px 0 120px;
}

/* ===============================
   QUICK ANSWER INTÉGRÉ
   =============================== */

.toc-qa{
  margin-bottom:24px;
}

.toc-qa-title{
  font-weight:800;
  color:#1B5E20;
  margin-bottom:10px;
  font-size:16px;
}

.toc-qa p{
  margin:6px 0;
  color:#1A1A1A;
}

.toc-qa ul{
  margin:10px 0;
  padding-left:18px;
}

.toc-qa li{
  margin-bottom:6px;
}

.toc-qa-highlight{
  margin-top:10px;
  font-weight:500;
}

/* séparation douce */
.toc-separator{
  height:1px;
  background:rgba(27,94,32,.08);
  margin:20px 0;
}

/* titre sommaire (léger) */
.toc-title{
  font-size:13px;
  font-weight:700;
  color:#5E655F;
  margin-bottom:12px;
}
/* ===============================
   CORRECTION
   =============================== */

.article-section .section-title{
  display:flex !important;
  align-items:flex-start !important;
  flex-direction:row !important;
}

.article-section .section-badge{
  display:inline-flex !important;
}

.article-section .section-title{
  display:flex;
  align-items:flex-start;
  gap:16px; /* ← espace propre */
}

.article-section .section-badge{
  margin-right:2px; /* sécurité si gap ignoré */
}

.article-section{
  scroll-margin-top:100px;
}

/* ===============================
   FAB NAVIGATION MOBILE
   =============================== */

.fab-nav{
  position:fixed;
  bottom:20px;
  right:20px;
  z-index:999;
}

/* bouton */
.fab-button{
  width:56px;
  height:56px;
  border-radius:50%;

  background:linear-gradient(135deg,#1B5E20,#2E7D32);
  color:#fff;

  border:none;
  font-size:22px;
  font-weight:700;

  box-shadow:0 15px 40px rgba(0,0,0,.25);
  cursor:pointer;

  transition:.2s ease;
}

.fab-button:hover{
  transform:scale(1.05);
}

/* menu */
.fab-menu{
  position:absolute;
  bottom:70px;
  right:0;

  width:220px;

  background:#fff;
  border-radius:16px;
  padding:12px;

  box-shadow:0 20px 50px rgba(0,0,0,.2);

  display:none;
  flex-direction:column;
  gap:6px;
}

.fab-menu a{
  text-decoration:none;
  color:#1A1A1A;
  font-weight:600;
  font-size:14px;

  padding:10px 12px;
  border-radius:10px;

  transition:.2s ease;
}

.fab-menu a:hover{
  background:#F4F6F2;
}

/* actif */
.fab-menu.active{
  display:flex;
}


.section-badge {
  flex-shrink: 0;
}

.section-title {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ================= TABLE DOMUTRACK ================= */

.dt-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.dt-row {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.dt-cell {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.4;
}

.dt-cell::before {
  content: attr(data-label);
  font-weight: 600;
  color: #1B5E20;
  flex-shrink: 0;
}

/* HEADER STYLE */
.dt-header {
  display: none;
}

.dt-header .dt-cell:first-child {
  border-top-left-radius: 8px;
}

.dt-header .dt-cell:last-child {
  border-top-right-radius: 8px;
}

.section-split{
  display:flex;
  align-items:center;
  gap:60px;
  margin-top:40px;
}

/* TEXTE */
.section-text{
  flex:1;
}

/* IMAGE CARD */
.section-split .article-illustration{
  flex:0 0 320px;

  padding:25px;
  border-radius:28px;

  background:linear-gradient(135deg,#F4F6F2,#E8F5E9);

  box-shadow:
    0 30px 60px rgba(18,62,22,.12),
    0 10px 25px rgba(18,62,22,.08);
}

.article-illustration img{
  max-width:100%;
  height:auto;
  display:block;
  margin:0 auto;
}

.section-split .article-illustration img{
  max-width:240px;
}

/* CAPTION */
.article-illustration figcaption{
  margin-top:12px;
  font-size:13px;
  color:#5E655F;
  text-align:center;
}

/* ===============================
   COMPARAISON EXCEL VS DOMUTRACK
   =============================== */

.article-compare{
  margin-top:60px;
}

.section-intro{
  color:#5E655F;
  max-width:720px;
  margin-bottom:30px;
}

.compare-table{
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(27,94,32,.12);
  background:#fff;
  box-shadow:0 18px 40px rgba(18,62,22,.08);
}

.compare-row{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:20px;
  padding:18px 22px;
  align-items:center;
}

.compare-head{
  background:#1B5E20;
  color:#fff;
  font-size:.75rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.compare-row:not(.compare-head){
  border-top:1px solid rgba(27,94,32,.08);
}

.compare-row strong{
  color:#1B5E20;
}

.compare-no{
  color:#9AA19B;
  font-weight:500;
}

.compare-yes{
  color:#1B5E20;
  font-weight:700;
}

/* CTA */

/* ===============================
   CTA COMPARAISON (ARTICLE)
   =============================== */

.compare-cta-box{
  margin:60px auto 0;          /* centre horizontal */
  max-width:720px;             /* 👈 largeur contrôlée */

  text-align:center;

  padding:42px 28px;

  background:#fff;
  border-radius:24px;

  border:1px solid rgba(27,94,32,.10);

  box-shadow:
    0 20px 50px rgba(18,62,22,.08),
    0 8px 20px rgba(18,62,22,.04);
}

/* TITRE */
.compare-cta-box h2{
  color:var(--vert);
  margin-bottom:14px;

  font-size:clamp(1.6rem,2.5vw,2rem);
  line-height:1.2;
}

/* TEXTE */
.compare-cta-box p{
  color:var(--texte-soft);
  margin-bottom:28px;
  font-size:1rem;
}

/* BOUTON (CLONE CTA FINAL) */
.compare-cta-box .btn-primary{
  display:inline-block;

  background:linear-gradient(135deg,#FFC107,#FFB300);
  color:#123E16;

  padding:18px 34px;
  border-radius:999px;

  font-weight:900;
  font-size:1.1rem;

  text-decoration:none;
  letter-spacing:.2px;

   box-shadow:
    0 12px 25px rgba(255,193,7,.35),  /* halo réduit */
    0 6px 12px rgba(0,0,0,.12);       /* structure */

  transition:.25s ease;
}

/* HOVER */
.compare-cta-box .btn-primary:hover{
  transform:translateY(-3px) scale(1.03);

  box-shadow:
    0 30px 70px rgba(255,193,7,.55),
    0 15px 35px rgba(0,0,0,.2);
}

/* TRUST */
.compare-cta-trust{
  margin-top:16px;
  font-size:.9rem;
  color:#5E655F;
}

/* ===============================
   TABLE EXCEL (ISOLÉ)
   =============================== */

.table-excel-wrapper{
  width:100%;
  overflow-x:auto;
  margin-top:20px;
}

.table-excel{
  width:100%;
  min-width:600px;
  border-collapse:collapse;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
}

.table-excel th{
  background:var(--vert);
  color:#fff;
  text-align:left;
  padding:14px;
  font-size:14px;
}

.table-excel td{
  padding:14px;
  border-bottom:1px solid #eee;
  font-size:14px;
}

.table-excel tr:last-child td{
  border-bottom:none;
}
/* ================= DESKTOP VERSION ================= */


/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width:767px){

  .article-container{
    padding:30px 20px;
  }

  .toc-grid{
    grid-template-columns:1fr;
  }

  .brand-text{
    display:none;
  }

  .final-actions {
    display: flex;
    justify-content: center;
  }

  .btn-primary {
    width: auto;
    max-width: 100%;
    padding: 16px 20px;
    text-align: center;
    white-space: normal;
    border-radius: 999px;
  }

   .section-title {
    font-size: 24px;
    line-height: 1.3;
  }

    .dt-cell{
    flex-direction: column;     /* 🔥 LA CLÉ */
    align-items: flex-start;
    gap: 4px;
  }

  .dt-cell::before{
    margin-bottom: 2px;
    font-size: 13px;
    opacity: 0.7;
  }


  /* HEADER SIMULATION */
  

  .dt-table .dt-row:first-child .dt-cell {
    font-weight: 600;
    color: #1B5E20;
  }
  
  .final-card{
    padding:36px 22px;
    border-radius:22px;
  }

  .final-card .btn-primary{
    width:100%;
}

  .dt-header{
    display: none !important;
  }

    .section-split{
    flex-direction:column;
    gap:30px;
  }

  .section-split .article-illustration{
    width:100%;
    max-width:320px;
  }

   .compare-row{
    grid-template-columns:1fr;
    gap:8px;
    padding:16px;
  }

  .compare-head{
    display:none;
  }

  .compare-row strong{
    margin-bottom:4px;
  }

  }



@media (min-width:768px){

  .dt-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
  }

  .dt-row {
    display: table-row;
  }

  .dt-cell {
    word-break: break-word;
    display: table-cell;
    padding: 14px;
    border-bottom: 1px solid #eee;
  }

  .dt-cell::before {
    display: none;
  }

 .dt-header{
   background: var(--vert);
    display: table-row;
  }

  .dt-header .dt-cell {
    color: #fff;
    border-bottom: none;
  }

  .dt-header{
    display: table-row !important;
  }

}

