.elementor-2023 .elementor-element.elementor-element-714b2bec{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-4bfcdd4b *//* === BLOC CSS associé (mobile-first, alternance blanc/gris) === */
.article-wrapper {
  --cta-color: #f0700f; /* demandé : blog Club */
}

/* Sections */
.article-wrapper .post-section {
  padding: 3rem 1rem;
  background: #fff; /* par défaut : blanc */
}
.article-wrapper .post-section:nth-of-type(even) {
  background: #f7f7f7; /* alternance gris clair */
}
.article-wrapper .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Titres & textes */
.article-wrapper h2 {
  font-size: 1.625rem !important;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.article-wrapper h3 {
  font-size: 1.375rem !important;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.article-wrapper p {
  margin-bottom: 1rem;
}
.article-wrapper ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.article-wrapper ul li {
  margin-bottom: 0.5rem;
}

/* CTA générique (à utiliser quand on placera le bouton) */
.article-wrapper .cta-box {
  text-align: center;
  margin: 2.5rem 0;
}
.article-wrapper .btn-cta {
  display: inline-block;
  padding: 0.9em 2em;
  font-weight: 700;
  border: 2px solid currentColor;
  border-radius: 50px;
  background: #fff;
  color: var(--cta-color);
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.article-wrapper .btn-cta:hover {
  background: var(--cta-color);
  color: #fff;
}

/* FAQ (si présente plus tard) */
.article-wrapper .faq-item {
  margin: 1rem 0;
  background: #fff;           /* fond blanc demandé par défaut */
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}
.article-wrapper .faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--cta-color);
  list-style: none;
}
.article-wrapper .faq-item[open] summary {
  margin-bottom: 0.5rem;
}
.article-wrapper .faq-item p {
  margin-bottom: 0.5rem;
}

/* Images */
.article-wrapper img {
  max-width: 100%;
  height: auto;
}

/* Fin bloc CSS */
/* === BLOC CSS Témoignages (spécificité renforcée) === */
.article-wrapper .post-section .testimonial {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  border-left: 5px solid var(--cta-color);
  border-radius: 14px;
  padding: 1.1rem 1rem 1rem 1.2rem;
  margin: 1.2rem 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.article-wrapper .post-section .testimonial::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 10px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(240,112,15,0.18); /* écho à --cta-color */
  pointer-events: none;
}

.article-wrapper .post-section .testimonial h3 {
  margin-top: 0;
  margin-bottom: .6rem;
}

.article-wrapper .post-section .testimonial p {
  margin-bottom: .5rem;
}

.article-wrapper .post-section .testimonial p strong {
  color: var(--cta-color);
  font-weight: 700;
}

/* Variante pour objections */
.article-wrapper .post-section .testimonial.is-objection {
  border-left-color: #999;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.015), rgba(0,0,0,0.015)) ,
    #fff;
}

.article-wrapper .post-section .testimonial.is-objection::before {
  content: "⚠︎";
  top: 12px;
  left: 12px;
  font-size: 1rem;
  color: var(--cta-color);
  opacity: .6;
}

/* Espacement entre plusieurs témoignages */
.article-wrapper .post-section .testimonial + .testimonial {
  margin-top: 1rem;
}

/* Respect du mode mobile-first */
@media (min-width: 720px) {
  .article-wrapper .post-section .testimonial {
    padding: 1.25rem 1.25rem 1.1rem 1.4rem;
  }
}
/* === BLOC CSS additionnel : tableau responsive === */
.article-wrapper .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0 1.25rem;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

.article-wrapper .comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px; /* assure un scroll horizontal sur mobile si nécessaire */
  font-size: 0.95rem;
}

.article-wrapper .comparison-table thead th {
  text-align: left;
  font-weight: 700;
  padding: 0.75rem 0.75rem;
  border-bottom: 2px solid #eaeaea;
  white-space: nowrap;
}

.article-wrapper .comparison-table tbody td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}

.article-wrapper .comparison-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Accent sur la 1ère colonne */
.article-wrapper .comparison-table tbody td:first-child {
  font-weight: 600;
}

/* Amélioration touche mobile */
@media (max-width: 480px) {
  .article-wrapper .comparison-table {
    font-size: 0.92rem;
    min-width: 560px;
  }
}
/* Fin bloc CSS */
/* === BLOC CSS FAQ === */
.article-wrapper .faq-item {
  margin: 1rem 0;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.article-wrapper .faq-item summary {
  cursor: pointer;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  color: var(--cta-color);
  position: relative;
  list-style: none;
}

.article-wrapper .faq-item summary::-webkit-details-marker {
  display: none; /* supprime le triangle par défaut */
}

.article-wrapper .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.article-wrapper .faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

.article-wrapper .faq-item p {
  padding: 0 1.2rem 1rem;
  margin: 0;
  color: #444;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Animation ouverture */
.article-wrapper .faq-item[open] {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-color: var(--cta-color);
}

.article-wrapper {
  --brand: #f0700f;
  --link: var(--brand);
}

/* Cartouche Hub */
.article-wrapper .hub-callout {
  background: #fff8f2;
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 24px 0;
  line-height: 1.55;
}

.article-wrapper .hub-callout p {
  margin: 0;
}

.article-wrapper .hub-callout .hub-actions {
  margin-top: 12px;
}

/* Liens : orange + soulignés (hors CTA) */
.article-wrapper .hub-callout a {
  color: var(--link);
  text-decoration: underline;
}

.article-wrapper .hub-callout a:hover {
  opacity: 0.9;
}

/* CTA : non souligné */
.article-wrapper .hub-callout .btn-cta {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 9999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  text-decoration: none; /* override souligné */
}

/* Accessibilité : focus visibles */
.article-wrapper .hub-callout a:focus-visible,
.article-wrapper .hub-callout .btn-cta:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 10px;
}/* End custom CSS */