:root {
  --lt-bg: #f7fffd;
  --lt-surface: #ffffff;
  --lt-surface-alt: #eefcf9;
  --lt-ink: #080f0e;
  --lt-ink-muted: #4d5c5a;
  --lt-accent: #00a896;
  --lt-accent-mid: #02c39a;
  --lt-accent-light: #00d4a8;
  --lt-border: #e0f5f1;
  --lt-border-mid: #c4ece6;
  --lt-mono: 'IBM Plex Mono', monospace;
  --lt-body: 'Poppins', -apple-system, Arial, sans-serif;
}
body { font-family: var(--lt-body); color: var(--lt-ink); background: var(--lt-bg); }
h1 { font-family: var(--lt-body); color: var(--lt-ink); font-size: 34px; line-height: 1.2; margin: 0 0 8px; }
h2 { font-family: var(--lt-body); color: var(--lt-ink); font-size: 24px; margin: 36px 0 12px; }
h3 { font-family: var(--lt-body); color: var(--lt-ink); font-size: 18px; margin: 24px 0 8px; }
p { font-family: var(--lt-body); line-height: 1.75; color: var(--lt-ink-muted); font-size: 16px; }
ul, ol { font-family: var(--lt-body); color: var(--lt-ink-muted); line-height: 1.7; padding-left: 22px; }
li { margin: 6px 0; }
a { color: var(--lt-accent); text-decoration: none; }
a:hover { color: var(--lt-accent-mid); }
table { width: 100%; border-collapse: collapse; margin: 20px 0; font-family: var(--lt-body); }
th, td { border: 1px solid var(--lt-border); padding: 10px 12px; text-align: left; font-size: 15px; color: var(--lt-ink-muted); }
th { background: var(--lt-surface-alt); color: var(--lt-ink); }
.lt-toc {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 40px 0;
}
.lt-toc-title {
  font-family: var(--lt-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lt-accent);
  margin-bottom: 16px;
  display: block;
}
.lt-toc a {
  display: block;
  padding: 6px 0;
  color: var(--lt-ink-muted);
  text-decoration: none;
  font-size: 14.5px;
  border-bottom: 1px solid var(--lt-border);
  font-weight: 500;
}
.lt-toc a:last-child { border-bottom: none; }
.lt-toc a:hover { color: var(--lt-accent); padding-left: 4px; }
.lt-box {
  background: var(--lt-surface);
  border: 1px solid var(--lt-border);
  border-left: 4px solid var(--lt-accent);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 40px 0;
  font-size: 15.5px;
  color: var(--lt-ink-muted);
}
.lt-box strong {
  font-family: var(--lt-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;

  color: var(--lt-accent);
  display: block;
  margin-bottom: 8px;
}
/* Article grids: 3 per row on desktop, responsive fallback */
.lt-cards-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 1024px) { .lt-cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .lt-cards-grid { grid-template-columns: 1fr; } }

/* Lead magnet (email opt-in) */
.lt-lead {
  background: linear-gradient(160deg, #0e9e8e, #0b7d72);
  color: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(14, 158, 142, .18);
}
.lt-lead-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 10px;
}
.lt-lead h3 { color: #fff; font-size: 18px; line-height: 1.2; margin: 0 0 8px; }
.lt-lead p { color: rgba(255, 255, 255, .92); font-size: 13px; line-height: 1.5; margin: 0 0 14px; }
.lt-lead form { display: flex; flex-direction: column; gap: 8px; }
.lt-lead input {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: var(--lt-body);
}
.lt-lead button {
  width: 100%;
  padding: 11px;
  border: 0;
  border-radius: 10px;
  background: #ffd54a;
  color: #173a2f;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease;
  font-family: var(--lt-body);
}
.lt-lead button:hover { background: #ffc926; }
.lt-lead-note { margin: 10px 0 0; font-size: 11px; color: rgba(255, 255, 255, .7); }
.lt-lead-msg { margin-top: 10px; font-size: 13px; font-weight: 600; color: #fff; }

/* Bottom-of-page lead band */
.lt-lead-band { margin-top: 24px; }
.lt-lead-band .lt-lead { max-width: 520px; margin-left: auto; margin-right: auto; }

/* Daily motivational quote */
.lt-quote-band { margin-top: 8px; }
.lt-quote-frame {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 34px 22px;
  background: linear-gradient(160deg, #ffffff, #f3fffb);
  border: 1px solid #cdeee7;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 168, 150, .10);
  text-align: center;
}
.lt-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  line-height: 0.5;
  color: #00a896;
  display: block;
  height: 28px;
}
.lt-quote-text {
  font-family: var(--lt-body);
  font-size: 19px;
  line-height: 1.5;
  color: #0d1f1c;
  margin: 12px 0 14px;
  font-weight: 600;
}
.lt-quote-foot {
  font-size: 11.5px;
  color: #5c7570;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-weight: 700;
}
/* ---------- Sidebar widget card chrome (Most Viewed, Latest, Calculator) ---------- */
.lt-widget {
  background: #ffffff;
  border: 1px solid #e4efed;
  border-radius: 14px;
  overflow: hidden;
}
.lt-widget-title {
  font-family: var(--lt-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  color: #0d1f1c;
  margin: 0;
  padding: 12px 14px;
  background: #eafaf6;
  border-bottom: 1px solid #e4efed;
}
.lt-widget-body { padding: 12px 14px; }

/* ---------- Mini post rows ---------- */
.lt-mini-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #eef5f3;
  text-decoration: none;
}
.lt-mini-row:last-child { border-bottom: 0; }
.lt-mini-row:hover .lt-mini-title { color: #00a896; }
.lt-mini-thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 9px;
  overflow: hidden;
  background: #eafaf6;
}
.lt-mini-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lt-mini-meta { display: flex; flex-direction: column; min-width: 0; }
.lt-mini-title {
  font-size: 13px;
  font-weight: 600;
  color: #0d1f1c;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lt-mini-date { font-size: 11px; color: #7d918d; margin-top: 3px; }

/* ---------- Bigger, more readable text + images (fix "ecriture/image petite") ---------- */
body {   }
.lt-mini-title {  }
.lt-mini-date {  }
.lt-widget-title {  }
.lt-mini-thumb { width: 56px !important; height: 56px !important; }
.lt-lead p {  }
.lt-quote-text {  }
.lt-card-ex {  }
.lt-cards-title {  }

/* ===== Professional reading scale (global + single articles) ===== */
html {  }
body {   }

/* Single-article body: large, readable, pro feel */
.single .entry-content,
.single .entry-content p,
.single .entry-content li,
.single .entry-content blockquote {   color: #2a3331; }
.single .entry-content p { margin: 0 0 1.2em; }
.single .entry-content h2 {   margin: 1.6em 0 0.6em; }
.single .entry-content h3 {   margin: 1.4em 0 0.5em; }
.single .entry-content h4 {   margin: 1.2em 0 0.5em; }

/* Widen article content (keep sidebar) */
.ast-right-sidebar #primary { width: 70% !important; }
.ast-right-sidebar #secondary { width: 30% !important; }
.ast-container { max-width: 1240px !important; }

/* Featured + in-content images larger */
.single .post-thumbnail,
.single .ast-single-post-featured-section { margin-bottom: 28px; display: block; }
.single .post-thumbnail img,
.single .entry-content img,
.single .entry-content .wp-block-image img,
.single .ast-single-post-featured-section img { width: 100% !important; max-width: 100% !important; height: auto !important; }

/* ===== Even bigger article + sidebar "bonne vision" ===== */
html {  }
.single .entry-content,
.single .entry-content p,
.single .entry-content li,
.single .entry-content blockquote {   }
.single .entry-content h2 {  }
.single .entry-content h3 {  }
.single .entry-content h4 {  }
.ast-container { max-width: 1280px !important; }

/* Sidebar: keep it comfortably sized (not small) */
.lt-mini-thumb { width: 64px !important; height: 64px !important; }
.lt-mini-row { padding: 11px 0 !important; }
.lt-mini-title {   }
.lt-mini-date {  }
.lt-widget-title {  }
.lt-widget-body { padding: 14px 16px !important; }
.lt-calc input, .lt-calc select {  padding: 8px !important; }
.lt-calc button {  padding: 10px !important; }
.lt-lead { padding: 26px 22px !important; }
.lt-lead h3 {  }
.lt-lead p {  }
.lt-quote-frame { padding: 32px 38px 26px !important; }
.lt-quote-text {  }

/* ===== Encore plus grand : article + sidebar ===== */
html {  }
.single .entry-content,
.single .entry-content p,
.single .entry-content li,
.single .entry-content blockquote {   }
.single .entry-content h2 {  }
.single .entry-content h3 {  }
.single .entry-content h4 {  }
.ast-container { max-width: 1320px !important; }

/* Sidebar encore plus lisible */
.lt-mini-thumb { width: 72px !important; height: 72px !important; }
.lt-mini-row { padding: 13px 0 !important; }
.lt-mini-title {  }
.lt-mini-date {  }
.lt-widget-title {  }
.lt-widget-body { padding: 16px 18px !important; }
.lt-calc input, .lt-calc select {  padding: 9px !important; }
.lt-calc button {  padding: 11px !important; }
.lt-lead { padding: 30px 26px !important; }
.lt-lead h3 {  }
.lt-lead p {  }
.lt-quote-frame { padding: 36px 42px 30px !important; }
.lt-quote-text {  }

/* ===== Encore plus grand, dans les normes, avec de l'air ===== */
html {  }
.single .entry-content,
.single .entry-content p,
.single .entry-content li,
.single .entry-content blockquote {   }
.single .entry-content h2 {  margin: 1.8em 0 0.6em; }
.single .entry-content h3 {  margin: 1.5em 0 0.5em; }
.single .entry-content h4 {  margin: 1.3em 0 0.5em; }
.ast-container { max-width: 1360px !important; }

/* Sidebar : plus grand + plus d'air */
.lt-mini-thumb { width: 80px !important; height: 80px !important; }
.lt-mini-row { padding: 14px 0 !important; }
.lt-mini-title {  }
.lt-mini-date {  }
.lt-widget-title {  }
.lt-widget-body { padding: 18px 20px !important; }
.lt-widget { margin-bottom: 22px !important; }
.lt-calc input, .lt-calc select {  padding: 10px !important; }
.lt-calc button {  padding: 12px !important; }
.lt-lead { padding: 34px 30px !important; }
.lt-lead h3 {  }
.lt-lead p {  }
.lt-quote-frame { padding: 40px 46px 34px !important; }
.lt-quote-text {  }

/* ===== Sidebar collée : accompagne l'article sur toute sa hauteur ===== */
.ast-right-sidebar #secondary,
.ast-left-sidebar #secondary {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 100px !important;
  align-self: flex-start !important;
}

/* ===== Sidebar = pleine hauteur de l'article, peu de blanc ===== */
.ast-right-sidebar #secondary,
.ast-left-sidebar #secondary {
  position: static !important;
  align-self: stretch !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* ===== Agrandir le petit texte (hero / footer / légendes) sans rallonger le hero ===== */
/* Hero : texte plus lisible, hero reste compact */
.lt-h1 {  }
.lt-desc {  }
.lt-badge {  }
.lt-stat-num {  }
.lt-stat-lbl {  }
.lt-trust-item {  }
.lt-disclaimer {  }
.lt-cat-tag {  }

/* Footer + petites légendes d'articles */
.site-footer, .custom-site-footer, .footer-text, .footer-column, .footer-column a, .footer-bottom {   }
.entry-content .wp-caption-text, .entry-content figcaption, .entry-content .has-small-font-size {   }

/* ===== Augmentation GLOBALE du texte (toutes les pages) ===== */
html {  }
body, body p, body li, body td, body dd, body dt, body blockquote {
  
  
}
/* Cartes accueil + sidebar plus lisibles */
.lt-card-title {  }
.lt-card-ex {   }
.lt-desc {  }
.lt-mini-title {  }
.lt-widget-title {  }
.lt-mini-date {  }

/* ===== Photos affichées COMPLETES (pas coupées), dans le cadre du theme ===== */
.single .post-thumb-img-content img,
.post-thumbnail img,
.wp-block-post-featured-image img,
.site-content .ast-single-post-featured-section img,
.lt-img-wrap img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

/* ===== Photos COMPLETES (priorité haute pour battre le theme) ===== */
body.single .post-thumb-img-content img,
body .post-thumbnail img,
body .wp-block-post-featured-image img,
body .site-content .ast-single-post-featured-section img,
body .lt-img-wrap img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

/* ===== E-E-A-T trust box (YMYL Google criteria) ===== */
.lt-eeat-box {
  border: 1px solid #e6efed;
  border-left: 4px solid #00a896;
  background: #f6faf9;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 28px 0 8px;
  color: #46605b;
}
.lt-eeat-head { font-weight: 700; color: #0c1614; margin-bottom: 6px;  }
.lt-eeat-bio { margin: 0 0 8px;   }
.lt-eeat-note, .lt-eeat-link {  margin: 6px 0 0; color: #5c7570;  }
.lt-eeat-box a { color: #007a68; font-weight: 600; text-decoration: underline; }

/* ===== Article title: prominent but not oversized ===== */
.single .entry-title,
.ast-single-post .entry-title,
.single h1.entry-title {
  
  min-height: 0 !important;
  
  margin-bottom: .3em !important;
}
