.home.benefits_btns_inner{
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  padding-bottom: 30px;
  flex-wrap: wrap;
  margin-top: 45px;
}
.home .banner_partners.container {
  display: none;
}
.home .banner_top .banner_top_wrapper{
  margin-bottom: 10px;
}
.home.benefits_btns_inner .benefits_btn{
  border-radius: 10px;
  border: 2px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  gap: 12px;
  color: var(--dark-purple);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.04em;
  text-align: left;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.home.benefits_btns_inner .ben_img img{
  display: block;
}

.home.benefits_btns_inner .ben_img{
/*    width: 33px;*/
translate: 0 -1px;
    display: block;
}
.home.benefits_btns_inner span {
  font-weight: 900;
  display: block;
}
.home.benefits_btns_inner .bottom{
  font-size: 12px;
  line-height: 0.5;
}

.article-main h1.title {
  color: var(--dark-purple);
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0 0 35px;
}
.article-main h2.subtitle {
  color: var(--dark-purple);
  font-size: 28px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0 0 35px;
}
.single .article-main h1.title {
  color: var(--dark-purple);
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.04em;
  text-align: left;
  flex: 0 0 49%;
  margin: 0;
}
.single.single-post .article-content{
  width: 75%;
  margin: 5px auto 0;
  font-size: 16px;
}

.d-flex{
  display: flex;
}
.justify-content-center{
  justify-content: center;
}
.post-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.post-list article {
  background: #fff;
  border: 2px solid #E7E7E7;
  border-radius: 20px;
  background-color: var(--white);
  overflow: hidden;
  box-shadow: 0px 4px 40px 0px rgba(30, 25, 60, 0.1019607843);
    min-height: 430px;
    position: relative;
}
.post-list article header h1{
  font-weight: bold;
  font-size: 18px;
  margin: 15px 0;
}
.post-list article header,
.post-list article p{
  padding: 0 15px;
}
.post-list article p{
  font-size: 13px;
}
.post-list article p.content {
  min-height: 100px;
}
.readMore{
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.04em;
  text-align: left;
  padding: 14px 0px;
  position: relative;
  color: var(--white);
  border-radius: 12px;
  background-color: var(--pink);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  -moz-column-gap: 7px;
  column-gap: 7px;
  width: 50%;
  height: 45px;
  margin: 0 auto 25px;
}
.readMore > a {
  height: 100%;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.readMore:hover{
  background-color: #FD2488;
}
.readMore .banner_main_btn_anim::after{
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  background-image: url("../images/arrow_svg.svg");
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  opacity: 1;
}
.readMore .banner_main_btn_anim::before{
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  background-image: url("../images/ball_svg.svg");
  width: 40px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.2s ease;
}
.readMore:hover .banner_main_btn_anim::before{
  opacity: 1;
  right: 30px;
}
.readMore:hover .banner_main_btn_anim::after{
  opacity: 0;
}
.readMore .banner_main_btn_anim{
  display: flex;
  position: relative;
  width: 0;
  transition: all 0.4s ease-in-out;
}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 10px 0;
}

.page-numbers {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--light-purple);
    text-decoration: none;
    font-size: 16px;
}

.page-numbers:hover {
    background-color: #f1f1f1;
}

.page-numbers.current {
    background-color: var(--light-purple);
    color: white;
    font-weight: bold;
}

.page-numbers:active, .page-numbers:focus {
    outline: none;
    border-color: var(--light-purple);
}

.next, .prev {
    padding: 8px 12px;
    color: var(--light-purple);
    text-decoration: none;
}

.next:hover, .prev:hover {
    background-color: #f1f1f1;
}

.page-numbers.current:hover {
    background-color: #0056b3;
}

/* Conteneur principal de la pagination */
.navigation-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

/* Styles pour les liens précédents et suivants */
.prev-post a, .next-post a {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color:  var(--light-purple);
    font-size: 16px;
    text-decoration: none;
    transition: 0.5s;

}

/* Hover effet sur les liens */
.prev-post a:hover, .next-post a:hover {
    background-color: var(--light-purple);
  border-color: var(--light-purple);
  color: #fff;
  transition: 0.5s;
}

*/

.single article{
  position: relative;
  text-align: justify;
}
.single header{
  display: flex;
  margin-bottom: 40px;
  align-items: center;
  justify-content: space-between;
}
.single header .thumb{
  flex: 0 0 51%;
}
.fixed-nav{
  position: fixed;
  bottom: 25px;
  height: 80px; 
  display: flex;
  z-index: 1200;
}
.fixed-nav-prev{
    left: 0;    
}
.fixed-nav-next{
  right: 0;
}
.fixed-nav .photo{
  position: relative;
  z-index: 1200;
  background: #fff;
}
.fixed-nav .arrow {
  width: 35px;
  background-color: var(--light-purple);
  position: relative;
  z-index: 1200;
  height: 100%;
}
.fixed-nav .desc {
  background: #fff;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  padding: 6px 15px;
  position: relative;
  transition: all .3s ease-in-out;
  width: 190px;
  height: 80px;
  text-align: left;
  overflow: hidden;
}
.fixed-nav-prev .desc{
  margin-left: -400px;
}
.fixed-nav-prev:hover .desc{
  margin-left: 0;
}
.fixed-nav-next .desc{
  margin-right: -220px;
}
.fixed-nav-next:hover .desc{
  margin-right: 0;
}
.single .banner_top,
.banner_top.article-main{
  background: none;
}
.gradient-single{
  height: 2px;
  background: linear-gradient(90deg, rgba(115, 80, 210, 0) 0%, #EB1E7D 27%, #5FA5F0 67.5%, rgba(255, 200, 0, 0) 100%);
  margin-bottom: 80px;
  margin-top: 75px;
}
.text-intro {
  width: 75%;
  margin: 0 auto 35px;
  text-align: justify;
  text-align-last: center;
  font-size: 16px;
  line-height: 1.5;
}
.share_container {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 40px;
}
.share_container span{
  font-size: 14px;
}

.social-icon {
    display: flex; /* Utilisation de Flexbox pour aligner les icônes horizontalement */
    gap: 5px; /* Espace entre chaque icône */
}

.social-icon a {
    display: flex;
    justify-content: center; /* Assure que les icônes sont centrées dans leurs conteneurs */
    align-items: center;
}
.post-list .adv_business1_advantage_link{
  margin-top: 0;
  margin-bottom: 0;
}
.btn-pink{
  position: relative;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  margin:3% 0 6%;
}

.article-content h1 {
  color: var(--dark-purple);
  font-size: 38px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.04em;
  margin: 0;
}

.article-content h2,
.article-ape .faq_section h2 {
  font-weight: 700;
  margin: 25px 0;
    font-size: 24px;
}
.article-content h3 {
  font-weight: 600;
  font-size: 20px;
  margin: 20px 0;
}
.article-content h4 {
  font-weight: 600;
  font-size: 18px;
  margin: 20px 0;
}
.article-content h5, .article-content h6 {
  font-weight: 600;
  font-size: 16px;
  margin: 20px 0;
}
.article-content p {
  font-size: 16px;
  margin: 20px auto;
}
.article-content ul {
  font-size: 16px;
  list-style:disc;
  margin-left: 25px;
}
.article-content .breadcrumb ul{
  margin-left: 0;
}
.article-content ol {
  font-size: 18px;
}
.article-content a, #autre-articles a, #autre-articles ul {
  color: var(--light-purple);
}
.article-content a:hover{
  text-decoration: underline;
}
.article-content ul + p,
.article-content ol + p {
  margin-top: 25px;
}
#autre-articles{
  margin: 75px auto 25px;
  width: 75%;
}
#autre-articles h3 {
  font-size: 16px;
  font-weight: bold;
}
#autre-articles ul{
  list-style:disclosure-closed;
  padding-left: 55px;
}
#autre-articles a{
  font-size: 13px;
}
#autre-articles a:hover{
  text-decoration: underline;
}
.article-main .article-content,
.article-main .breadcrumb{
  width: 100%;
  margin: auto auto 25px;
}
.header.sticky{
  background: #fff !important;
}

.dynamic-table {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin: auto;
  font-size: 13px;
  border: 1px solid var(--color-black);
}

.dt-row {
  display: flex;
  width: 100%;
}

.dt-cell {
  padding:8px 12px;
  border: 1px solid var(--color-black);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  min-height: 44px;
  word-break: break-word;
  flex:1;
  margin:1px;
}

/* Gestion générique des cellules fusionnées (via classes ou attributs data) */
.dt-cell[colspan="2"], .dt-cell.span-2 {
  flex: 2;
}

.dt-cell[colspan="3"], .dt-cell.span-3 {
  flex: 3;
}

.dt-cell[colspan="4"], .dt-cell.span-4 {
  flex: 4;
}

/* Pour les cellules vides fusionnées */
.dt-cell:empty {
  border: none;
  padding: 0;
}

/* Styles pour la première ligne (en-têtes) */
.first-row .dt-cell {
  font-weight: bold;
/*  background-color: #f8f8f8;*/
}
.dt-row .first-col{
/*   background: var(--pink);*/
   font-weight: bold;
}
.dt-row.first-row .dt-cell {
/*  background: var(--light-purple);*/
}

.single .article-main.article-ape h1.title{
    text-align: center;
  flex:100%;
}
.single-code-naf-ape .article-main.article-ape h1.title{
    text-align: left;
  flex:100%;
  font-size: 36px;
}
.code-naf-ape-template-default .gradient-single {
  margin-bottom: 50px;
  margin-top: 30px;
}
.code-naf-ape-template-default table,
#main-code-naf-ape table{
  font-size: 16px;
  text-align: center;
  border: 1px solid #132128;
  margin-top: 25px;
  width: 100%;
}
.code-naf-ape-template-default table td,
#main-code-naf-ape table td,
.code-naf-ape-template-default table th,
#main-code-naf-ape table th{
  padding: 5px;
  border: 1px solid #132128;
}
.single-code-naf-ape blockquote, 
#main-code-naf-ape blockquote, 
.encadre-bon-a-savoir,
.encadre,
.info-box,
blockquote{
  background: linear-gradient(white, white) padding-box, linear-gradient(98.37deg, #7350D2 0.07%, #EB1E7D 27.05%, #5FA5F0 67.52%, #FFC800 100%) border-box;
  border: 2px solid transparent;
  padding: 5px 25px;
  border-radius: 20px;
  margin-top: 25px;
}
.breadcrumb {
  margin-bottom: 25px;
  font-size: 12px;
}
.breadcrumb a{
  color: var(--light-purple);
  font-weight: 600;
  letter-spacing: -1.3px;
}
.breadcrumb a:hover{
  text-decoration: underline;
}
.breadcrumb li {
  list-style: none;
  font-size: 12px;
  letter-spacing: -0.6px;
}
.point_important blockquote{
  align-items: center;
  gap:25px;
}
#zone_cta a{
  margin-top: 0;
}
#main-code-naf-ape > section:first-child {
  margin-top: 90px;
}

#main-code-naf-ape > section:not(:first-child) {
  margin-top: 45px;
}
#main-code-naf-ape .faq_section .faq_item h3{
  display: none;
}
.summary_wrap{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  font-size: 14px;
  padding: 15px;
  letter-spacing: -0.04;
  width: content-width;
  width: 360px;
  line-height: 1.5;
  max-height: calc(62vh - 200px);
  overflow: auto;
  border: 1px solid rgba(30, 25, 60, 0.1215686275);
  border-radius: 16px;
  background: #fff;
}
.summary_wrap > div {
  text-decoration: underline;
  font-weight: bold;
  margin-bottom: 25px;
  margin-left: 15px;
}
.summary {
  color: var(--light-purple);
}
.summary a:hover{
  text-decoration: underline;
}
.summary_wrap .summary {
  margin-top: 0; /* ou 10px si tu veux un léger espace contrôlé */
  margin-bottom: 0;
  padding-bottom: 10px; /* facultatif si besoin d’air en bas */
}
.summary_wrap > div {
  margin-bottom: 15px; /* au lieu de 25px si trop espacé */
}

#main-code-naf-ape h1 {
    margin-top: 35px;
}

#main-code-naf-ape h2,
#main-code-naf-ape h3,
#main-code-naf-ape h4,
#main-code-naf-ape h5{
  color: var(--dark-purple);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 25px auto 35px;
}

#main-code-naf-ape h2{  font-size: 32px;}
#main-code-naf-ape h3{  font-size: 28px;}
#main-code-naf-ape h4{
  color: var(--dark-purple);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.04em;
  text-align: left;
  width: 100%;
}
#main-code-naf-ape h5{  font-size: 20px;}
#zone-recherche {
  margin-top: 18px;
  width: 360px;
}
.input-search {
  --svg-color: #c2c2c2;
  align-items: center;
  background-color: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 10px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 10px;
  letter-spacing: -.04em;
  line-height: 20px;
  padding: 15px 20px;
}
.input-search input {
  border:none;
  display: block;
  width: 100%;
  outline:0 none;
}
.input-result{
  border: 1px solid #c2c2c2;
  border-radius: 10px;
  padding: 15px 0;
  position: relative;
  background: #fff;
}
.input-result ul{
   background-color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 16px;
  margin: 0 !important;
  padding: 12px 0 12px 12px;
  width: 100%;
  max-height: 195px;
  overflow-y: auto;
  padding-right: 12px;
}
/*.input-result ul li {
  padding: 8px 0 !important;
  border-bottom: 1px solid transparent;
}*/
.input-result ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 16px; 
}
.result-item {
  margin:10px 0;
  display: block;
  padding: 0px 25px;
}
.result-item:hover{
  text-decoration: underline;
}
main h1,
main h2,
main h3,
main h4 {
  scroll-margin-top: 100px; /* adapte à la hauteur de ton sticky header */
}
#main-code-naf-ape h1,
#main-code-naf-ape h2,
#main-code-naf-ape h3,
#main-code-naf-ape h4,
#main-code-naf-ape h5,
#main-code-naf-ape h6{
  text-align: left;
}
#main-code-naf-ape section p,
#main-code-naf-ape section:not(#zone_sommaire) ul li a,
#main-code-naf-ape section:not(#zone_sommaire) li{
  font-size: 16px !important;
  color: var(--dark-purple) !important;
  margin:20px auto;
  padding:0;
  text-align: left;
  text-rendering: optimizespeed;
  letter-spacing: -0.04;
  line-height: 28px;
}
#zone_sommaire{
 position: fixed;
  top: 125px;
  left: 75px;
/*  max-height: calc(100vh - 200px);*/
  align-self: start;
  overflow-y: auto;
  z-index: 1;
/*  background: #fff;*/
}

#main-code-naf-ape .adv_business_bg_grad{
  padding-top: 0;
}
.cta_interne .adv_business1_advantage_link {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.78px;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 35px auto 80px;
}
.cta_interne .adv_business1_advantage_link:hover{
  text-decoration: none;
} 
.content-width {
  width: 60%;
  margin: 5% 10% 8% auto;
}
.main.banner_top.article-main.article-ape .content-width{
/*  width: 100%;*/
  margin-top: 0;
}
#main-code-naf-ape ul,
#main-code-naf-ape ol{
  margin:0 0 0 15px;
  padding:0;
}
#main-code-naf-ape ul > li > p,
#main-code-naf-ape ul > li{
  margin: 0 !important;
}
#main-code-naf-ape #zone_sommaire .summary_wrap li,
.article-main.article-ape #zone_sommaire .summary_wrap li{
  margin-bottom: 10px !important;
}
#main-code-naf-ape .adv_business .adv_business_title{
  text-align: left;
  background: #fbfbfb;
  letter-spacing: -0.04;
  padding: 0;
}
#main-code-naf-ape .adv_business .adv_business_title::before,
#main-code-naf-ape .adv_business .adv_business_title::after{
  content: none;
}
#main-code-naf-ape .breadcrumb{
  margin-bottom: 0;
}
#main-code-naf-ape .content-width {
  margin: 7% 10% 0 auto;
}
#main-code-naf-ape .breadcrumb ul{
  margin-left: 0;
}
.faq_section .faq_item h4.top_inner {
  color: var(--pink) !important;
}
#main-code-naf-ape .faq_section{
  margin-bottom: 60px;
}
.code-naf-ape-template-default .faq_section{
  margin-bottom: 0;
}
.code-naf-ape-template-default .adv_business1_advantage_link{
  margin-top: 80px;
}

.single .faq_section .faq_item h4{
  margin: 0;
}
.single .faq_section .faq_item .item_faq{
  padding: 10px 24px 0 0;
}

/**
Single activité
*/
/* reset de ce qui gênait */
.single-activite header.d-block,.single-metier header.d-block{ display:block;width: 75%; }

/* conteneur encadré comme l’aperçu */
.header-hero{
  margin: 0 auto 24px;
  padding: 15px 20px 15px;
/*  background: var(--panel-bg);*/
/*  border: 2px solid #DDE3EB;*/
  border-radius: 24px;
}

/* ligne de stats au-dessus du titre */
.header-hero .numbers{
  font-size: 15px;
/*  color: var(--muted);*/
  margin: 0 0 12px 0;
}

/* Titre principal */
.single .article-main .header-hero h1.title,
.header-hero .title{
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
/*  color: var(--text);*/
  margin: 0 0 16px 0;
}

/* Sous-titres / texte d’accroche */
.single .article-main .header-hero h2,
.header-hero .subtitle{
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
  font-weight: 500;
/*  color: var(--muted);*/
  margin: 0 0 6px 0;
}
.single .header-hero.d-block.encadre .cta-hero .adv_business1_advantage_link{
  margin-top: 20px;
}

.single .article-main .header-hero h4{ display:none; } /* on masque l’ancien h4 */
.header-hero .subtitle + p{
  font-size: 15px;
  line-height: 1.5;
/*  color: var(--muted);*/
  margin: 0 0 6px 0;
}
/* Badges */
.badges{
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 12px auto;
  justify-content: center;
}
.badges li{ width:auto; } /* override de ton ancien width */
.badge{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
/*  border: 1px solid var(--chip-border);*/
  border-radius: 12px;
}
.badge img{
  width: 175px;
  display:block;
}

/* Baseline */
i.info{
  display:block;
  margin-top: 12px;
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
}
.encadre-hero{
  background: #fff;
  border: 1px solid rgba(30, 25, 60, 0.1215686275);
  padding: 5px 25px;
  border-radius: 16px;
  margin-top: 25px;
  box-shadow: 1px 1px 8px -5px #000;
}
.single-activite .article-content.article-layout,
.single-metier .article-content.article-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 32px;
  align-items: start;
}
.single-activite main,
.single-metier main{
  overflow: visible;
}
.sticky-right {
  position: sticky;
  top: 90px;
}
.sticky-right h3{
  font-size: 16px;
  letter-spacing: -1px;
}
.sticky-right .encadre .adv_business1_advantage_link{
  margin-top: 0;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}

.single-activite .sg_terms,
.single-metier .sg_terms {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 24px;
}

.single-activite .sg_terms .sg_terms_title,
.single-metier .sg_terms .sg_terms_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.04em;
  text-align: left;
}

.single-activite .sg_terms .sg_terms_list,
.single-metier .sg_terms .sg_terms_list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.single-activite .sg_terms .sg_terms_list .sg_terms_item,
.single-metier .sg_terms .sg_terms_list .sg_terms_item {
  border-radius: 10px;
  background-color: var(--white);
  padding: 12px 16px;
  box-shadow: 0px 4px 20px 0px #4651661F;
}

.single-activite .sg_terms .sg_terms_list .sg_terms_item:hover,
.single-metier .sg_terms .sg_terms_list .sg_terms_item:hover {
  background-color: var(--light-blue);
}

.single-activite .sg_terms .sg_terms_list .sg_terms_item:hover a,
.single-metier .sg_terms .sg_terms_list .sg_terms_item:hover a, {
  color: var(--white);
}

.single-activite .sg_terms .sg_terms_list .sg_terms_item .sg_terms_link,
.single-metier .sg_terms .sg_terms_list .sg_terms_item .sg_terms_link {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.78px;
  text-align: center;
  color: var(--dark-purple);
}

.blogpost_ai {
  border: 1px solid var(--wp--preset--color--cyan-bluish-gray);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 1.5rem;
  display: flex;
}
.heading-style-h6 {
  letter-spacing: -.2px;
  font-size: 1.125rem;
}
.text-weight-bold {
  font-weight: 700;
}
.spacer-small {
  width: 100%;
  padding-top: 1rem;
  font-size: 15px;
}
.hflex-center-left.max-width-full.gap-1rem.wrap{  flex-flow: wrap;
}
.hflex-center-left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.gap-1rem {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}
.max-width-full {
  width: 100%;
  max-width: none;
}
.blogpost_ai-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  cursor: pointer;
  border-radius: 16px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 2px 4px;
  text-decoration: none;
  display: flex;
  font-size: .875rem;
}
.w-embed::before, .w-embed::after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.blogpost_ai-link {
  cursor: pointer;
}
.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}
.avis-ai ul{gap: 10px;align-items: center;}
.avis-ai li{width: 20px}
.avis-ai h6{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -1px;
}


/* Pour les écrans très petits */
@media screen and (max-width: 768px) {

  .single-activite .sg_terms .sg_terms_list,
  .single-metier .sg_terms .sg_terms_list{
    display: block;
  }
  .sticky-right{ position:initial; }
  .single-activite .article-content.article-layout,.single-metier .article-content.article-layout{display: block;}
  .single-activite header.d-block,
  .single-metier header.d-block {
    width: 95%;
  }
  .header-hero .numbers{
    font-size: 12px;
  }
  .single .article-main .header-hero h1.title, .header-hero .title{
    font-size: 24px;
    line-height: 1;
  }
  .single .article-main .header-hero h2, .header-hero .subtitle{
    font-size: 19px;
    line-height: 1;
  }
  .header-hero .subtitle + p{
    font-size: 14px;
    line-height: 1;
  }
  .single .header-hero.d-block.encadre .cta-hero .adv_business1_advantage_link {
  margin-top: 20px;
  font-size: 14px;
}
i.info {
  margin-top: 10px;
  font-size: 10px;
  text-align: center;
}
#zone_sommaire{
  display: block;
  position: relative;
  top: auto;
  left: auto;
  width: 95%;
  margin: 80px auto 0;
}
#zone-recherche {
    width: 100%;
}
.code-naf-ape-template-default .banner_top .banner_top_wrapper {
    padding-top: 70px;
}
.summary_wrap, .btn_left{
    display: none;
}
main h1,
main h2,
main h3,
main h4 {
  scroll-margin-top: 60px; /* adapte à la hauteur de ton sticky header */
}
#main-code-naf-ape{
  flex: auto;
}
.content-width {
  width: 100%;
  margin: auto !important;
}
.content-width.container {
    padding: 0;
}
#main-code-naf-ape section p, #main-code-naf-ape section:not(#zone_sommaire) ul li a, #main-code-naf-ape section:not(#zone_sommaire) li {
  font-size: 13px !important;
}
.code-naf-ape-template-default table, #main-code-naf-ape table {
  font-size: 13px;
}
  .dt-row {
    flex-direction: column;
    margin-bottom: 1rem;
    border-bottom: 2px solid #aaa;
  }
  
  .dt-cell {
    width: 100% !important;
    flex: none !important;
  }
  
  /* Ne pas afficher les cellules vides en mode mobile */
  .dt-cell:empty {
    display: none;
  } 
  
  /* Ajout d'attributs data pour afficher les en-têtes en mode mobile */
  .dt-cell[data-label]:before {
    content: attr(data-label) ": ";
    font-weight: bold;
    margin-right: 0.5rem;
  }

  .single-code-naf-ape .article-main.article-ape h1.title {
      font-size: 26px;
  }
  .single-code-naf-ape blockquote, #main-code-naf-ape blockquote, .encadre-bon-a-savoir, blockquote {
      margin: 0;
  }
  .content-width .adv_business1_advantage_link {
        width: 85%;
    }
    .share_container {
        margin: 30px auto;
        width: 50%;
    }
}

@media screen and (max-width: 1025px) {
  .logo_inner{
  transform: scale(0.777);
}
.header .burger_wrapper > .burger{
/*  z-index: 1000;*/
}
  .burger_drop_menu  .mob-top-wrap .burger{
    position: absolute !important;
    left: 15px;
    top: 10px;
/*    z-index: 2000;*/
  }
  .header .burger_wrapper.active .burger_drop_menu {
  position: fixed;
  top: 20px;
  display: flex;
  left: -100%;
  width: 100vw;
  height: 100%;
  background: #fff;
  pointer-events: none;
  transition: left 0.3s ease;
  z-index: 10;
}
.header .burger_wrapper.active .burger_drop_menu .header_menu{
  padding-top: 110px;
}
.header .burger_wrapper.active.visible .burger_drop_menu {
  left: 0;
  pointer-events: auto;
}
.logo_inner{
  align-items: flex-start;
}
.logo_inner .header_anim {
  width: 31px;
  height: 31px;
}
.mob-top-wrap{
  position: absolute;
  top: 0;
  width: 100%;
  justify-content: center;
  display: flex;
}
 
}

@media only screen and (max-width : 997px) {
  .home.benefits_btns_inner {
    padding-bottom: 0px;
    margin-top: 40px;
/*    flex-direction: column;*/
  }
  .banner_partners.container{
    display: none;
  }
  .home.benefits_btns_inner .benefits_btn {
    width: 31%;
    gap: 2px;
    padding: 10px 0;
    justify-content: space-around;
  }
  .home.benefits_btns_inner span {
    font-size: 0.9em;
    line-height: 1em;
  }
  .home.benefits_btns_inner .bottom {
    font-size: 0.6em;
    line-height: 0.8;
  }
}
#sticky-cta{
  display: none;
  position: fixed;
  bottom: -100px;
  background: #fff;
  padding: 15px;
  width: 100%;
  z-index: 9;
  transition: all 0.5s;
}
.copy{
  padding: 0 30px 15px;
  font-size: 12px;
}
footer .container .content_top .footer_left .footer_menus_list .menu .menu-item-has-children h3 {
  font-size: 15px;
  line-height: 15px;
}
footer .container .content_top .footer_left .footer_menus_list .menu .menu-item-has-children .sub-menu li a{
  font-size: 13px;
  line-height: 15px;
}
footer .container .content_top .footer_left .footer_menus_list .menu {
  display: flex;
  flex-wrap: wrap; /* Permet le retour à la ligne */
  width: 100%;
  gap: 10px;
    justify-content: space-between; /* ou space-evenly */
}
footer .container .content_top .footer_left .footer_menus_list .menu > li {
/*  flex: 1 1 23%; /* largeur fixe pour toutes */*/
  box-sizing: border-box;
}

/*/* Chaque colonne */
footer .container .content_top .footer_left .footer_menus_list .menu > li {
/*  flex: 1 1 200px; /* largeur minimale d'une colonne */*/
}*/

/* Positionner les colonnes */
footer .container .content_top .footer_left .footer_menus_list .menu > li:nth-child(1) {
  order: 1;
}
footer .container .content_top .footer_left .footer_menus_list .menu > li:nth-child(2) {
  order: 2;
}
footer .container .content_top .footer_left .footer_menus_list .menu > li:nth-child(3) {
  order: 3;
}
footer .container .content_top .footer_left .footer_menus_list .menu > li:nth-child(4) {
  order: 4;
/*  width: 100%; /* Pour forcer à passer à la ligne entière */*/
}
@media (max-width: 768px) {
   footer {
    margin-bottom: 80px;
    padding-bottom: 0;
  }
  footer .container .content_top .footer_left .footer_menus_list .menu > li:nth-child(4),
  footer .container .content_top .footer_left .footer_menus_list .menu > li:nth-child(3),
  footer .container .content_top .footer_left .footer_menus_list .menu > li:nth-child(2){
    margin-top: 25px;
  }
    footer .container .content_top .footer_left .footer_menus_list .menu .menu-item-has-children {
    width: 100%;
  }
  .copy {
    padding: 30px 30px 15px;
    font-size: 12px;
    text-align: center;
  }
  .desk-only{
    display: none;
  }
  #sticky-cta.visible{
    display: block;
    bottom: 0;
  }
    .navigation-links {
        flex-direction: column;
        align-items: center;
    }
    .article-main .article-content,.article-main .breadcrumb{
    width: 95%;
  }
  .breadcrumb ul{
    flex-wrap: wrap;
  }
  .breadcrumb ul li:nth-child(3){
    flex-basis: 100%;
  }
    .prev-post a, .next-post a {
        width: 100%;
        text-align: center;
    }
    .post-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .gradient-single {
    margin-bottom: 70px;
    margin-top: 35px;
  }
  .single header {
    display: block;
  }
  .single .article-content {
    max-width: 95%;
    text-align: left;
    font-size: 16px;
  }
  .single header .thumb img{
    width: 100%;
    height: auto !important;
  }
  .article-main > section{
    padding-left: 0;
  }
  .article-main h1.title, .article-main h2.subtitle{
    text-align: left;
  }
  .text-intro {
    width: 95%;
    text-align: left;
    text-align-last: left;
  }
  .post-list article, .post-list article p.content {
    min-height: auto;
  }
  .btn-pink {
    position: relative;
    bottom: 0;
    margin: 25px 0;
  }
  .single .article-main h1.title {
    font-size: 34px;
    line-height: 34px;
    text-align: left;
    margin-bottom: 25px;
  }
  #autre-articles {
    margin:55px auto 5px;
    width: 100%;
  }
  #autre-articles ul {
    list-style:disclosure-closed;
    padding-left: 20px;
  }
  .article-content h1 {
    font-size: 32px;
    line-height: 32px;
  }
  .header .burger_wrapper.active .burger_drop_menu .burger_btns_wrapper {
    padding-bottom: 35px;
  }
  
  #sticky-cta .adv_business1_advantage_link{
    margin-top: 0;
  }

}

@media only screen and (max-width : 575px) {
      .benefits .benefits_wrapper .benefits_inner:has(.benefits_wrapper_links){
      margin-bottom: 50px;
      padding-bottom: 120px;
    }
    .benefits .benefits_wrapper .benefits_inner .benefits_content .benefits_wrapper_links{
      bottom: 15px;
    }
}
.code-naf-ape-template-default .btn_left .adv_business1_advantage_link{
  margin-top: 20px;
}

.cta-hero.cta-in-content > a {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 40px;
}
.cta-hero > a:hover{ text-decoration: none;}

#sticky-cta2{
  position: fixed;
  bottom: -100%;
  left: calc(50% - 225px);
  background: #fff;
  padding: 5px 15px;
  width: 450px;
  z-index: 9;
  transition: all 0.5s;
  border-radius: 10px;
  border: 3px solid rgba(217,219,230,.7)
}
#sticky-cta2.visible{
  bottom: 2%;
}
.btns-sticky{
  justify-content: space-between;
}
.btns-sticky img{width: 19px;}
#sticky-cta2 .expert_link{
  border: 1px solid rgba(30, 25, 60, 0.122);
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: var(--dark-purple);
  border-radius: 12px;
  transition: 0.3s ease-in-out;
}
#sticky-cta2 .expert_link:hover{
  color: var(--dark-purple);
  border: 1px solid rgba(30, 25, 60, 0.239);
  transform: scale(1);
  background-color: var(--white);
}
.no-mt.no-mb.no-ml.no-mr{
  margin: 0 !important;
  border-radius: 8px;
  font-size: 13px;
  line-height: 13px;
  padding: 10px 4px 10px 14px;
}

#anw2-launcher-2bGkMCS8szSqqxBa4eam8Q{
  bottom: 70px !important;
}