/* ===== MERIVITA PALETTE (rouge éditorial) ===== */
:root {
  --primary: #b23a30;
  --primary-dark: #a02c23;
  --primary-darker: #7c211b;
  --primary-light: #f7e9e7;
  --ink: #1c1c1c;
  --ink-soft: #3a3a3a;
  --body: #2b2b2b;
  --muted: #6e7280;
  --rule: #e5e5e5;
  --bg: #ffffff;
  --soft: #f6f1ea;
  --highlight: #fff5b8;
  --link: #a02c23;
  --link-hover: #7c211b;
  --gold: #d4a946;
}

* { box-sizing: border-box; }
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }

/* ===== HEADER (green bar, logo left + advertorial label right) ===== */
.header {
  background: #fff;
  padding: 0;
  border-top: 5px solid var(--primary-dark);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header .logo {
  max-height: 72px;
  width: auto;
  display: block;
}
.header .advertorial-label {
  font-family: 'Lora', Georgia, serif;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  color: var(--primary-dark);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ===== DISCLOSURE ===== */
.disclosure {
  background: var(--primary-light);
  padding: 9px 0;
  text-align: center;
  font-size: 12px;
  color: var(--primary-darker);
  border-bottom: 1px solid #d4dfd6;
  letter-spacing: 0.04em;
}

/* ===== LAYOUT ===== */
.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }

/* ===== ARTICLE HEAD ===== */
.article-head { padding: 36px 0 0; }
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumb span { color: var(--primary-dark); font-weight: 700; }
h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.18;
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 .green { color: var(--primary-dark); }
.section-kicker {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--primary-dark);
}
.subhead {
  font-size: 18px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
}
.byline-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  margin: 18px 0 14px;
}
.share-icons {
  margin-left: auto;
  display: flex;
  gap: 6px;
  align-items: center;
}
.share-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.share-icon:hover { transform: scale(1.12); opacity: 0.92; }
.share-icon svg { width: 14px; height: 14px; fill: #fff; display: block; }
.share-fb { background: #1877F2; }
.share-tw { background: #000; }
.share-pin { background: #E60023; }
.share-wa { background: #25D366; }
.share-email { background: #6e7280; }

@media (max-width: 520px) {
  .share-icon { width: 26px; height: 26px; }
  .share-icon svg { width: 12px; height: 12px; }
  .share-icons { gap: 4px; }
}
.byline-bar .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--primary-light);
}
.byline-bar .author-info { line-height: 1.3; font-family: 'Lora', Georgia, serif; }
.byline-bar .author-meta #article-date {
  font-style: italic;
}
.byline-bar .author-meta .meta-views {
  font-weight: 600;
  color: var(--primary-darker);
  white-space: nowrap;
}
.byline-bar .author-meta .eye-icon {
  width: 12px;
  height: 12px;
  color: var(--primary-dark);
  vertical-align: -1px;
  display: inline-block;
}
.byline-bar .author-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.byline-bar .author-meta {
  font-family: 'Lora', Georgia, serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ===== BODY ===== */
.body p {
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.7;
}
.body p strong { color: var(--ink); font-weight: 700; }
.body a { color: var(--link); text-decoration: underline; }
.body a:hover { color: var(--link-hover); }

h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 34px;
  line-height: 1.18;
  margin: 56px 0 22px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.01em;
}
h2 .green { color: var(--primary-dark); }
h2 + .hero-image-wrap, h2 + .inline-img { margin-top: 4px; }

/* ===== HIGHLIGHT ===== */
.hl { background: var(--highlight); padding: 2px 4px; font-weight: 600; color: var(--ink); }

/* ===== TEXT EMPHASIS ===== */
.red { color: #B22828; }
.body strong.red { color: #B22828; }
.body em { font-style: italic; color: var(--ink); }
.body .underline { text-decoration: underline; text-decoration-color: var(--primary); text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ===== INLINE IMAGE ===== */
.img-wrap-left {
  float: left;
  width: 44%;
  margin: 4px 22px 12px 0;
}
.img-wrap-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  background: var(--soft);
}
.img-wrap-left .img-caption {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
  line-height: 1.4;
}
.clearfix::after { content: ""; display: block; clear: both; }

/* ===== IMAGE + TEXT FLEX ROW (vertically centered) ===== */
.image-text-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 4px 0 20px;
}
.image-text-row-img {
  flex: 0 0 44%;
  max-width: 44%;
}
.image-text-row-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.image-text-row-img .img-caption {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
  line-height: 1.4;
}
.image-text-row-text { flex: 1; }
.image-text-row-text p { margin: 0 0 14px; }
.image-text-row-text p:last-child { margin-bottom: 0; }

/* All inline images = hero style (full body-column width, max-height 480px) */
.inline-img { margin: 26px 0; }
.inline-img img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.inline-img.full img {
  max-height: 480px;
}
.inline-img.product img {
  object-fit: contain;
  background: var(--soft);
  max-height: 480px;
}
.inline-img .img-caption {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
  text-align: center;
}

/* ===== DOCTOR QUOTE ===== */
.doctor-quote {
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  padding: 22px 26px;
  margin: 30px 0;
  border-radius: 0 4px 4px 0;
}
.doctor-quote p {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--primary-darker);
  margin: 0 0 12px;
  font-weight: 400;
}
.doctor-quote .attrib {
  font-family: 'Lora', Georgia, serif;
  font-size: 13px;
  color: var(--primary-dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.doctor-quote .attrib::before { content: "— "; }

/* ===== IMAGE/CTA BLOCK ===== */
.image-cta {
  margin: 32px 0;
  background: transparent;
  border: 0;
}
.image-cta .thumb {
  width: 100%;
  display: block;
  background: transparent;
}
.image-cta .thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.image-cta .cta-bar { margin-top: 10px; }
.image-cta .cta-bar a { border-radius: 8px; }
.cta-bar a {
  display: block;
  background: var(--primary);
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.cta-bar a:hover { background: var(--primary-dark); }
.cta-bar a::after { content: " →"; }

/* ===== STAGES BOX ===== */
.stages {
  background: var(--soft);
  border-left: 4px solid var(--primary);
  padding: 22px 26px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
.stages h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  margin: 0 0 16px;
  color: var(--primary-darker);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stage {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.stage:last-child { border-bottom: 0; }
.stage .num {
  background: var(--primary);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.stage .text strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}
.stage .text span {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 6px;
}
.stat {
  background: var(--primary-darker);
  color: #fff;
  padding: 18px 12px;
  border-radius: 4px;
  text-align: center;
}
.stat .num {
  font-family: 'Roboto Slab', serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
}
.stat .label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.stats-caption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  margin: 0 0 24px;
}

/* ===== REVIEWS ===== */
.reviews-head {
  margin: 38px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.reviews-head h2 {
  margin: 0 0 6px;
  color: var(--primary-darker);
}
.reviews-head .count {
  font-size: 14px;
  color: var(--muted);
}
.reviews-head .count strong { color: var(--primary-dark); font-weight: 700; }
.review {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.review .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}
.review .content { flex: 1; }
.review .stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.review .meta {
  font-size: 13px;
  color: var(--primary-darker);
  font-weight: 700;
  margin-bottom: 6px;
}
.review .meta .city { color: var(--muted); font-weight: 400; }
.review p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 42px 30px;
  border-radius: 8px;
  text-align: center;
  margin: 44px 0 32px;
}
.final-cta .badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.3);
}
.final-cta h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 28px;
}
.final-cta p {
  color: rgba(255,255,255,0.92);
  margin: 0 0 6px;
  font-size: 15px;
}
.final-cta .urgency {
  font-size: 13px;
  color: var(--highlight);
  letter-spacing: 0.04em;
  margin: 12px 0 22px;
  font-style: italic;
}
.final-cta .cta-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--primary-darker);
  text-decoration: none;
  padding: 26px 28px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
  animation: cta-breathe-white 2.4s ease-in-out infinite;
  transition: background 0.2s;
}
.final-cta .cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(127,160,130,0.18), transparent);
  transform: skewX(-20deg);
  animation: cta-shine 3.6s ease-in-out infinite;
}
.final-cta .cta-btn:hover {
  animation-play-state: paused;
  transform: scale(1.02);
}

@keyframes cta-breathe-white {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 24px rgba(0,0,0,0.28);
    transform: scale(1.015);
  }
}
.final-cta .meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.final-cta .meta-row span::before { content: "✓ "; color: var(--highlight); font-weight: 700; }

/* ===== CLOSER ===== */
.closer {
  padding: 12px 0 0;
  border-top: 1px solid var(--rule);
  margin: 32px 0 0;
}
.closer p {
  font-size: 17px;
  line-height: 1.7;
}
.closer .punch {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-darker);
  margin: 22px 0;
  text-align: center;
  line-height: 1.4;
}
.closer .center-cta { margin: 24px 0 0; }
.closer .center-cta a {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 26px 28px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 4px 14px rgba(127,160,130,0.35);
  position: relative;
  overflow: hidden;
  animation: cta-breathe 2.4s ease-in-out infinite;
  transition: background 0.2s;
}
.closer .center-cta a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: cta-shine 3.6s ease-in-out infinite;
}
.closer .center-cta a:hover { background: var(--primary-dark); animation-play-state: paused; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.78);
  margin-top: 56px;
  padding: 36px 0;
  text-align: center;
}
.footer .footer-logo {
  max-height: 42px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer p {
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HERO IMAGE (inside body column, aligned with content) ===== */
.hero-image-wrap {
  margin: -2px 0 18px;
}
.article-head + .hero-image-wrap {
  margin-top: 2px;
}
.hero-image {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ===== PORTRAIT CIRCLE (Dr. Delvaux feature) ===== */
.portrait-circle-wrap {
  text-align: center;
  margin: 32px 0 24px;
}
.portrait-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  display: inline-block;
}
.portrait-caption {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-darker);
  line-height: 1.5;
}
.portrait-caption span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  margin-top: 2px;
}

/* ===== ARTICLE LAYOUT (body + sidebar grid) ===== */
.article-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 720px) 320px;
  gap: 64px;
  align-items: start;
  justify-content: center;
}
.article-layout .body {
  min-width: 0;
}

/* ===== PRODUCT SIDEBAR (testimonials version) ===== */
.product-sidebar {
  position: sticky;
  top: 24px;
  height: fit-content;
  margin-top: 78px;
}
.sb-header {
  text-align: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.sb-header-title {
  font-family: 'Roboto Slab', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-darker);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sb-header-sub {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.sb-header-sub strong { color: var(--primary-dark); font-weight: 700; }
.sb-testimonial {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.sb-testimonial:last-child { margin-bottom: 0; }
.sb-disclaimer {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 8px;
}
.sb-ba {
  margin: 0 0 10px;
  border-radius: 4px;
  overflow: hidden;
}
.sb-ba img {
  width: 100%;
  height: auto;
  display: block;
}
.sb-ba-slot {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #e8dccb, #d6cfc1);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5px;
}
.sb-ba-slot .ba-label {
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.04em;
  font-style: italic;
  background: rgba(0,0,0,0.5);
  padding: 1px 7px;
  border-radius: 100px;
}
.sb-name {
  font-size: 12px;
  color: var(--ink);
  margin: 0 0 6px;
}
.sb-name strong { color: var(--primary-darker); font-weight: 700; }
.sb-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 12px;
}
.sb-learn {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  text-decoration: none !important;
  padding: 8px 22px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.sb-learn:hover { background: var(--primary-dark); }
.sidebar-badge {
  display: inline-block;
  background: var(--primary-darker);
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.sidebar-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.sidebar-rating {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.sidebar-rating strong { color: var(--primary-darker); font-weight: 700; }
.sidebar-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  text-align: left;
}
.sidebar-benefits li {
  font-size: 13px;
  line-height: 1.45;
  color: var(--body);
  padding: 7px 0 7px 26px;
  position: relative;
}
.sidebar-benefits li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 7px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}
.sidebar-product-img {
  max-width: 170px;
  width: 100%;
  height: auto;
  margin: 8px auto 10px;
  display: block;
}
.sidebar-product-name {
  font-family: 'Roboto Slab', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-darker);
  margin-bottom: 18px;
  line-height: 1.3;
}
.sidebar-cta {
  display: block;
  background: var(--primary-darker);
  color: #fff !important;
  text-align: center;
  padding: 14px 18px;
  border-radius: 6px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.sidebar-cta:hover { background: var(--primary-dark); }
.sidebar-meta {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.sidebar-meta div { color: var(--primary-dark); }

/* ===== THREE-THINGS LIST (with circle icons) ===== */
.three-things {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.three-things li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-left: 3px solid var(--primary);
  margin-bottom: 14px;
  background: var(--primary-light);
  border-radius: 0 6px 6px 0;
  font-size: 16px;
  line-height: 1.55;
}
.three-things li strong { color: var(--primary-darker); }
.tt-icon {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background-size: cover;
  background-position: center;
}
.tt-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.tt-chlorine img { transform: scale(0.95); }
.tt-limescale img { transform: none; }
.tt-metals img {
  object-fit: cover;
  transform: scale(1.1);
}
.tt-chlorine  { background: linear-gradient(135deg, #b9dcea, #5ca9c8); }
.tt-limescale { background: linear-gradient(135deg, #f5ece0, #d4c5a3); }
.tt-metals    { background: linear-gradient(135deg, #d4a78a, #8b6a52); }
.tt-text { flex: 1; min-width: 0; }

@media (max-width: 520px) {
  .three-things li { gap: 12px; padding: 14px; }
  .tt-icon { width: 64px; height: 64px; }
}

/* ===== INLINE CTA (mid-body) — full width with breathing animation ===== */
.cta-block-inline {
  margin: 32px 0;
}
.inline-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: #fff !important;
  padding: 26px 28px;
  border-radius: 100px;
  text-decoration: none !important;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(127,160,130,0.35);
  position: relative;
  overflow: hidden;
  animation: cta-breathe 2.4s ease-in-out infinite;
  transition: background 0.2s;
}
.inline-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: cta-shine 3.6s ease-in-out infinite;
}
.inline-cta:hover {
  background: var(--primary-dark);
  animation-play-state: paused;
}

@keyframes cta-breathe {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(127,160,130,0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 22px rgba(127,160,130,0.55);
    transform: scale(1.015);
  }
}
@keyframes cta-shine {
  0% { left: -75%; }
  60% { left: 125%; }
  100% { left: 125%; }
}

/* ===== TESTIMONIAL (Olavita-style with Learn More CTA) ===== */
.testimonial {
  padding: 24px 0 32px;
  margin: 0;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.testimonial:last-of-type { border-bottom: 0; }
.testimonial-disclaimer {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 12px;
  text-align: center;
}
.ba-images {
  margin: 0 0 16px;
  border-radius: 10px;
  overflow: hidden;
}
.ba-images img {
  width: 100%;
  height: auto;
  display: block;
}
.ba-slot {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e8dccb, #d6cfc1);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}
.ba-label {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-style: italic;
  background: rgba(0,0,0,0.45);
  padding: 2px 10px;
  border-radius: 100px;
}
.testimonial-name {
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 8px;
}
.testimonial-name strong { color: var(--primary-darker); font-weight: 700; }
.testimonial-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 18px;
  position: relative;
  padding: 0;
  text-align: center;
}
.testimonial-quote::before {
  content: "\201C";
  font-family: 'Roboto Slab', serif;
  font-size: 48px;
  line-height: 0;
  color: var(--primary);
  position: relative;
  top: 18px;
  margin-right: 4px;
}
.testimonial-quote::after {
  content: "\201D";
  font-family: 'Roboto Slab', serif;
  font-size: 48px;
  line-height: 0;
  color: var(--primary);
  position: relative;
  top: 18px;
  margin-left: 2px;
}
.testimonial-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 38px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.testimonial-cta:hover { background: var(--primary-dark); }

/* ===== FAQ ===== */
.faq {
  margin: 24px 0 32px;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq-q {
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-darker);
  margin: 0 0 8px;
  line-height: 1.4;
}
.faq-q::before {
  content: "Q. ";
  color: var(--primary);
  font-weight: 900;
}
.faq-a {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--primary-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  body { font-size: 18px; }
  h1 { font-size: 30px; line-height: 1.2; }
  h2 { font-size: 26px; margin: 38px 0 16px; line-height: 1.22; }
  .portrait-circle { width: 160px; height: 160px; }
  .subhead { font-size: 18px; }
  .body p { font-size: 18px; }
  .img-wrap-left { width: 100%; float: none; margin: 0 0 20px; }
  .image-text-row { flex-direction: column; gap: 16px; }
  .image-text-row-img { flex: 0 0 100%; max-width: 100%; }
  .stats { grid-template-columns: 1fr; gap: 8px; }
  .doctor-quote { padding: 18px 20px; }
  .doctor-quote p { font-size: 16px; }
  .final-cta { padding: 32px 22px; }
  .final-cta h2 { font-size: 23px; }
  .review { gap: 12px; }
  .review .avatar { width: 48px; height: 48px; }
  .wrap { padding: 0 18px; }
  /* === MOBILE BYLINE — tighter + share icons wrap below === */
  .byline-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
    margin: 14px 0 10px;
  }
  .byline-bar .author-avatar { width: 42px; height: 42px; }
  .byline-bar .author-name { font-size: 14px; }
  .byline-bar .author-meta { font-size: 11px; line-height: 1.45; }
  .byline-bar .author-meta .eye-icon { width: 11px; height: 11px; }
  .byline-bar .author-info { flex: 1 1 calc(100% - 56px); min-width: 0; }
  .share-icons {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    padding-top: 10px;
    border-top: 1px solid var(--rule);
  }
  .share-icon { width: 28px; height: 28px; }
  .share-icon svg { width: 13px; height: 13px; }
  .article-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
    padding: 0 18px;
    gap: 0;
  }
  .product-sidebar { display: none; margin-top: 0; }
  .ba-slot { font-size: 10px; }
  .three-things li { font-size: 15px; }
  .hero-image-wrap { margin-bottom: 28px; }
  .hero-image { max-height: 320px; border-radius: 6px; }
  .article-head { padding: 28px 0 18px; }
  .dr-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dr-portrait-sticky {
    position: static;
    max-width: 240px;
    margin: 0 auto;
  }
  .header .logo { max-height: 50px; }
  .header-inner { padding: 8px 18px; }
  .header .advertorial-label { font-size: 10px; letter-spacing: 0.18em; }
}
