/**
 * Medwol brand palette — aligned with medwol-hero-pp-boxes.png
 * (industrial blue boxes, neutral gray, white / light concrete tones).
 * Loaded after style.css; requires body.medwol-theme.
 */

body.medwol-theme {
  /* Primary accent — vibrant blue from stacked PP boxes */
  --tanspot-base: #1e73be;
  --tanspot-base-rgb: 30, 115, 190;

  /* Dark UI — deep blue-slate (headers, hero, footer, button disc) */
  --tanspot-black: #15232f;
  --tanspot-black-rgb: 21, 35, 47;

  /* Body / secondary text — cool slate gray */
  --tanspot-gray: #4a5568;
  --tanspot-gray-rgb: 74, 85, 104;

  /* Section wash — soft blue-gray (replaces warm #F4F5F9) */
  --tanspot-primary: #eef2f7;
  --tanspot-primary-rgb: 238, 242, 247;

  /* Borders / dividers */
  --tanspot-bdr-color: #d1dae6;
  --tanspot-bdr-color-rgb: 209, 218, 230;
}

/* Template hardcodes orange in a few FAQ rules — map to theme variables */
body.medwol-theme .faq-one__shape-1,
body.medwol-theme .faq-one__shape-2 {
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(var(--tanspot-base-rgb), 0.55) 0%,
    rgba(var(--tanspot-black-rgb), 0) 100%
  );
}

body.medwol-theme .faq-one__experience-box {
  background: linear-gradient(270deg, var(--tanspot-base) 45%, #ffffff 100%);
}

/* Medwol partials that used literal #585b6b */
body.medwol-theme .medwol-about-why__panel-body p,
body.medwol-theme .medwol-about-who-collage__caption,
body.medwol-theme .medwol-quote-form-box__hint {
  color: var(--tanspot-gray);
}

/* Premium: soft depth on primary CTAs */
body.medwol-theme .thm-btn {
  box-shadow: 0 4px 18px rgba(var(--tanspot-base-rgb), 0.28);
}

body.medwol-theme .thm-btn:hover {
  box-shadow: 0 6px 24px rgba(var(--tanspot-base-rgb), 0.38);
}

body.medwol-theme ::selection {
  background: rgba(var(--tanspot-base-rgb), 0.22);
  color: var(--tanspot-black);
}

/* logo-3–based asset: white panel + theme blue accents; slightly wider cap for horizontal mark */
body.medwol-theme .main-menu__logo-link img {
  background-color: #ffffff;
  max-width: min(240px, 46vw);
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.medwol-theme .main-menu__logo-tagline {
  text-shadow: 0 1px 2px rgba(var(--tanspot-black-rgb), 0.45);
}

/* CTA block (About, etc.): template cta-one-shape-*.png files are orange — they sat on
   var(--tanspot-black) but still read as an orange strip; tint to brand blue */
body.medwol-theme .cta-one__shape-1 {
  filter: hue-rotate(200deg) saturate(0.72) brightness(0.92);
  opacity: 0.11;
}

body.medwol-theme .cta-one__shape-bg {
  filter: hue-rotate(200deg) saturate(0.65) brightness(0.95);
  opacity: 0.11;
}

body.medwol-theme .cta-one__shape-2 {
  opacity: 0.16;
}

body.medwol-theme .cta-one__shape-2 img,
body.medwol-theme .cta-one__shape-3 img {
  filter: hue-rotate(200deg) saturate(0.68) brightness(0.95);
}

body.medwol-theme .cta-one::before {
  background: linear-gradient(
    180deg,
    rgba(var(--tanspot-primary-rgb), 0.95) 0%,
    var(--tanspot-primary) 100%
  );
}

/* --- Home: journey showcase (manufacture → deliver → in-use) --- */
body.medwol-theme .medwol-journey-showcase {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 72px 0 80px;
  overflow: hidden;
  box-sizing: border-box;
}

body.medwol-theme .medwol-journey-showcase__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    var(--tanspot-black) 0%,
    #1a2f42 42%,
    rgba(var(--tanspot-base-rgb), 0.22) 100%
  );
  pointer-events: none;
}

body.medwol-theme .medwol-journey-showcase .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.medwol-theme .medwol-journey-showcase__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

body.medwol-theme .medwol-journey-showcase__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

body.medwol-theme .medwol-journey-showcase__title {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

body.medwol-theme .medwol-journey-showcase__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

body.medwol-theme .medwol-journey-showcase__frame {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

/*
 * 16:9 box: padding-bottom is % of *this element's width* (not vw).
 * Works at 384px wide and up — Swiper fills the box absolutely.
 */
body.medwol-theme .medwol-journey-aspect {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #0d1820;
  border-radius: inherit;
}

body.medwol-theme .medwol-journey-aspect .medwol-journey-swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: unset;
  background: #0d1820;
  box-sizing: border-box;
}

body.medwol-theme .medwol-journey-aspect .medwol-journey-showcase__video-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: unset;
  background: #0d1820;
}

body.medwol-theme .medwol-journey-aspect .medwol-journey-showcase__video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

body.medwol-theme .medwol-journey-swiper .swiper-wrapper,
body.medwol-theme .medwol-journey-swiper .swiper-slide {
  height: 100%;
  box-sizing: border-box;
}

body.medwol-theme .medwol-journey-swiper .swiper-slide {
  width: 100% !important;
  max-width: 100% !important;
  flex-shrink: 0;
}

body.medwol-theme .medwol-journey-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

body.medwol-theme .medwol-journey-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

body.medwol-theme .medwol-journey-swiper .swiper-slide-active .medwol-journey-slide__img {
  transform: scale(1.07);
}

@media (prefers-reduced-motion: reduce) {
  body.medwol-theme .medwol-journey-slide__img,
  body.medwol-theme .medwol-journey-swiper .swiper-slide-active .medwol-journey-slide__img {
    transform: scale(1.02);
    transition: none;
  }
}

body.medwol-theme .medwol-journey-slide__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 25, 35, 0.88) 0%,
    rgba(15, 25, 35, 0.45) 45%,
    rgba(15, 25, 35, 0.2) 100%
  );
  pointer-events: none;
}

body.medwol-theme .medwol-journey-slide__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 32px 36px;
  max-width: 520px;
}

@media (min-width: 768px) {
  body.medwol-theme .medwol-journey-slide__content {
    padding: 36px 48px 44px;
  }
}

body.medwol-theme .medwol-journey-slide__step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 10px;
}

body.medwol-theme .medwol-journey-slide__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 10px;
}

body.medwol-theme .medwol-journey-slide__text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

body.medwol-theme .medwol-journey-pagination.swiper-pagination {
  bottom: 18px !important;
  left: 0;
  right: 0;
}

body.medwol-theme .medwol-journey-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  margin: 0 6px !important;
  transition: background 0.25s ease, transform 0.25s ease;
}

body.medwol-theme .medwol-journey-pagination .swiper-pagination-bullet-active {
  background: var(--tanspot-base);
  transform: scale(1.15);
}

body.medwol-theme .medwol-journey-showcase__cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin: 36px 0 0;
  text-align: center;
}

body.medwol-theme .medwol-journey-showcase__cta.thm-btn {
  margin: 0;
}

body.medwol-theme .medwol-journey-showcase__cta-secondary {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.medwol-theme .medwol-journey-showcase__cta-secondary:hover {
  color: #fff;
}

/* Video: dimensions come from .medwol-journey-aspect (see above) */

/* --- Shop ↔ product cross-links (catalog discovery) --- */
body.medwol-theme .medwol-catalog-discovery {
  padding: 56px 0 48px;
  background: linear-gradient(
    180deg,
    rgba(var(--tanspot-primary-rgb), 0.65) 0%,
    var(--tanspot-primary) 55%,
    #fff 100%
  );
}

body.medwol-theme .medwol-catalog-discovery--embed {
  padding: 36px 28px 40px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(var(--tanspot-base-rgb), 0.08) 0%,
    #fff 48%,
    rgba(var(--tanspot-primary-rgb), 0.9) 100%
  );
  box-shadow: 0 12px 40px rgba(21, 35, 47, 0.08);
  border: 1px solid rgba(var(--tanspot-bdr-color-rgb), 0.85);
}

body.medwol-theme .medwol-catalog-discovery__intro {
  max-width: 820px;
  margin: 0 auto 28px;
}

body.medwol-theme .medwol-catalog-discovery__heading {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--tanspot-black);
  margin-bottom: 12px;
}

body.medwol-theme .medwol-catalog-discovery__sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--tanspot-gray);
  margin: 0;
}

body.medwol-theme .medwol-catalog-discovery__card {
  height: 100%;
}

body.medwol-theme .medwol-catalog-discovery__card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(var(--tanspot-bdr-color-rgb), 0.9);
  box-shadow: 0 6px 22px rgba(21, 35, 47, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.2s ease;
}

body.medwol-theme .medwol-catalog-discovery__card-link:hover {
  box-shadow: 0 14px 36px rgba(var(--tanspot-base-rgb), 0.18);
  transform: translateY(-3px);
  border-color: rgba(var(--tanspot-base-rgb), 0.45);
}

body.medwol-theme .medwol-catalog-discovery__card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--tanspot-base);
  color: #fff;
}

body.medwol-theme .medwol-catalog-discovery__card-img-wrap {
  aspect-ratio: 4 / 3;
  background: #eef2f7;
  overflow: hidden;
}

body.medwol-theme .medwol-catalog-discovery__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

body.medwol-theme .medwol-catalog-discovery__card-link:hover .medwol-catalog-discovery__card-img {
  transform: scale(1.05);
}

body.medwol-theme .medwol-catalog-discovery__card-body {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.medwol-theme .medwol-catalog-discovery__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tanspot-black);
  margin: 0 0 8px;
  line-height: 1.3;
}

body.medwol-theme .medwol-catalog-discovery__card-text {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--tanspot-gray);
  margin: 0 0 12px;
  flex: 1;
}

body.medwol-theme .medwol-catalog-discovery__card-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tanspot-base);
}

body.medwol-theme .medwol-catalog-discovery__card-cta i {
  font-size: 0.75em;
  margin-left: 2px;
}

body.medwol-theme .medwol-catalog-discovery__foot {
  margin-top: 28px;
}

body.medwol-theme .medwol-catalog-discovery__hero {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--tanspot-bdr-color-rgb), 0.85);
  box-shadow: 0 16px 44px rgba(21, 35, 47, 0.1);
}

body.medwol-theme .medwol-catalog-discovery__hero-row {
  min-height: 220px;
}

body.medwol-theme .medwol-catalog-discovery__hero-visual {
  min-height: 200px;
}

body.medwol-theme .medwol-catalog-discovery__hero-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

body.medwol-theme .medwol-catalog-discovery__hero-panel {
  background: var(--tanspot-black);
  color: #fff;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.medwol-theme .medwol-catalog-discovery__hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 10px;
}

body.medwol-theme .medwol-catalog-discovery__hero-title {
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.25;
}

body.medwol-theme .medwol-catalog-discovery__hero-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
  max-width: 520px;
}

body.medwol-theme .medwol-catalog-discovery__hero-btn.thm-btn {
  align-self: flex-start;
}

body.medwol-theme .medwol-catalog-discovery__related-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tanspot-black);
  margin: 0 0 8px;
  text-align: center;
}

body.medwol-theme .medwol-catalog-discovery__related-sub {
  text-align: center;
  color: var(--tanspot-gray);
  font-size: 0.98rem;
  margin: 0 0 22px;
}

@media (max-width: 575px) {
  body.medwol-theme .medwol-catalog-discovery__card-body {
    padding: 12px 12px 14px;
  }

  body.medwol-theme .medwol-catalog-discovery__hero-panel {
    padding: 24px 20px 28px;
  }
}

/* ============================================================
   Home: banner + journey showcase — full responsive (mobile+)
   Overrides responsive.css hiding .banner-one__img below 1200px.
   ============================================================ */

@media (max-width: 1399.98px) and (min-width: 1200px) {
  body.medwol-home.medwol-theme section.banner-one {
    min-height: clamp(560px, 78vh, 1040px);
    padding-bottom: 120px;
  }

  body.medwol-home.medwol-theme .banner-one__img img {
    max-height: min(720px, calc(85vh - 120px));
  }
}

@media (max-width: 1199.98px) {
  body.medwol-home.medwol-theme section.banner-one {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0 !important;
    padding: 96px 0 40px !important;
    overflow: visible;
  }

  body.medwol-home.medwol-theme .banner-one__line-shpae1,
  body.medwol-home.medwol-theme .banner-one__line-shpae2 {
    display: none !important;
  }

  body.medwol-home.medwol-theme .banner-one .container {
    order: 1;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
  }

  body.medwol-home.medwol-theme .banner-one__img {
    display: flex !important;
    order: 2;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    max-width: min(560px, 100%);
    margin: 28px auto 0;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
  }

  body.medwol-home.medwol-theme .banner-one__img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(42vh, 380px);
    object-fit: contain;
    object-position: center bottom;
    animation: none;
  }

  body.medwol-home.medwol-theme .banner-one__pattern {
    z-index: 0;
  }
}

@media (max-width: 991.98px) {
  body.medwol-home.medwol-theme section.banner-one {
    padding-top: 88px !important;
    padding-bottom: 36px !important;
  }

  body.medwol-home.medwol-theme .banner-one__sub-title {
    font-size: clamp(12px, 2.8vw, 16px);
    line-height: 1.35;
  }

  body.medwol-home.medwol-theme .banner-one__title {
    font-size: clamp(26px, 6.5vw, 44px) !important;
    line-height: 1.15 !important;
  }

  body.medwol-home.medwol-theme .banner-one__text {
    font-size: 16px;
  }

  body.medwol-home.medwol-theme .banner-one__img {
    margin-top: 20px;
    max-width: min(480px, 92vw);
  }

  body.medwol-home.medwol-theme .banner-one__img img {
    max-height: min(38vh, 340px);
  }
}

@media (max-width: 575.98px) {
  body.medwol-home.medwol-theme section.banner-one {
    padding-top: 80px !important;
    padding-bottom: 28px !important;
  }

  body.medwol-home.medwol-theme .banner-one__img {
    max-width: 100%;
    margin-top: 16px;
  }

  body.medwol-home.medwol-theme .banner-one__img img {
    max-height: min(36vh, 280px);
  }

  body.medwol-home.medwol-theme .banner-one__btn-and-review-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Journey / motion block — all viewports */
@media (max-width: 1199.98px) {
  body.medwol-theme .medwol-journey-showcase {
    padding: 52px 0 64px;
  }

  body.medwol-theme .medwol-journey-showcase__head {
    margin-bottom: 28px;
    padding-left: 4px;
    padding-right: 4px;
  }

  body.medwol-theme .medwol-journey-showcase__lead {
    font-size: 0.98rem;
  }
}

@media (max-width: 767.98px) {
  body.medwol-theme .medwol-journey-showcase {
    padding: 40px 0 48px;
  }

  body.medwol-theme .medwol-journey-showcase__frame {
    border-radius: 12px;
    max-width: 100%;
  }

  body.medwol-theme .medwol-journey-slide__scrim {
    background: linear-gradient(
      180deg,
      rgba(15, 25, 35, 0.15) 0%,
      rgba(15, 25, 35, 0.55) 45%,
      rgba(15, 25, 35, 0.92) 100%
    );
  }

  body.medwol-theme .medwol-journey-slide__content {
    max-width: 100%;
    padding: 16px 16px 52px;
  }

  body.medwol-theme .medwol-journey-slide__step {
    font-size: 10px;
    margin-bottom: 6px;
  }

  body.medwol-theme .medwol-journey-slide__title {
    font-size: clamp(1.05rem, 4.2vw, 1.45rem);
    margin-bottom: 6px;
  }

  body.medwol-theme .medwol-journey-slide__text {
    font-size: 0.85rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.medwol-theme .medwol-journey-pagination.swiper-pagination {
    bottom: 10px !important;
  }

  body.medwol-theme .medwol-journey-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px !important;
  }

  body.medwol-theme .medwol-journey-showcase__cta-wrap {
    flex-direction: column;
    margin-top: 28px;
  }
}

@media (max-width: 380px) {
  body.medwol-home.medwol-theme .banner-one__img img {
    max-height: min(34vh, 240px);
  }

  body.medwol-theme .medwol-journey-slide__text {
    -webkit-line-clamp: 2;
  }
}

/* ============================================================
   Site-wide mobile: kill horizontal scroll (shapes, scroll-btn)
   ============================================================ */
@media (max-width: 991.98px) {
  html {
    overflow-x: hidden;
  }

  body.medwol-theme {
    overflow-x: hidden;
  }
}

/* Banner blue strips: large fixed right/left values overflow small viewports */
@media (max-width: 1199.98px) {
  body.medwol-theme .banner-one__line-shpae1,
  body.medwol-theme .banner-one__line-shpae2 {
    display: none !important;
  }
}

/* About section decorative shapes: negative left/right poke outside */
@media (max-width: 991.98px) {
  body.medwol-theme .about-one__shape-1,
  body.medwol-theme .about-one__shape-2 {
    display: none !important;
  }

  body.medwol-theme .about-one__img-box {
    overflow: hidden;
    border-radius: 12px;
  }
}

/* Scroll-to-top: template uses right:-12px → horizontal overflow */
@media (max-width: 767.98px) {
  body.medwol-theme .scroll-to-top {
    right: 6px !important;
    left: auto !important;
    max-width: calc(100vw - 12px);
  }

  body.medwol-theme .scroll-to-top.show {
    bottom: 18px;
  }
}

/* Journey: pagination + overlay on narrow screens */
@media (max-width: 767.98px) {
  body.medwol-theme .medwol-journey-pagination.swiper-pagination {
    max-width: 100%;
    padding-left: 6px;
    padding-right: 6px;
    box-sizing: border-box;
  }

  body.medwol-theme .medwol-journey-slide__scrim,
  body.medwol-theme .medwol-journey-slide__content {
    max-width: 100% !important;
  }
}

/* Content images: fluid in flow layouts (not journey slides — those are absolute + cover) */
body.medwol-theme .banner-one__img img,
body.medwol-theme .about-one__img img {
  max-width: 100%;
  height: auto;
}

/* ~384px-wide phones: slightly tighter copy inside slides */
@media (max-width: 420px) {
  body.medwol-theme .medwol-journey-showcase .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.medwol-theme .medwol-journey-slide__content {
    padding: 12px 12px 44px;
  }

  body.medwol-theme .medwol-journey-showcase__title {
    font-size: 1.35rem;
  }

  body.medwol-theme .medwol-journey-showcase__lead {
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

/* Key benefits infographic + supply-chain flow (home + about) */
body.medwol-theme .medwol-benefits-flow {
  padding: 56px 0 64px;
  background: #f6f8fb;
}

body.medwol-theme .medwol-benefits-flow--about {
  padding-top: 48px;
  padding-bottom: 40px;
}

body.medwol-theme .medwol-benefits-flow__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

body.medwol-theme .medwol-benefits-flow__lead {
  max-width: 640px;
  margin: 12px auto 0;
  color: #585b6b;
  font-size: 1rem;
  line-height: 1.6;
}

/* Key benefits: text grid (replaces static infographic image) */
body.medwol-theme .medwol-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 28px;
  text-align: left;
}

body.medwol-theme .medwol-benefits-grid__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(30, 115, 190, 0.14);
  box-shadow: 0 8px 28px rgba(30, 115, 190, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.medwol-theme .medwol-benefits-grid__item:hover {
  border-color: rgba(30, 115, 190, 0.28);
  box-shadow: 0 12px 36px rgba(30, 115, 190, 0.1);
}

body.medwol-theme .medwol-benefits-grid__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #1e73be;
  color: #1e73be;
  font-size: 1.1rem;
  background: rgba(30, 115, 190, 0.06);
}

body.medwol-theme .medwol-benefits-grid__body {
  min-width: 0;
}

body.medwol-theme .medwol-benefits-grid__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--tanspot-black, #1a1a1a);
}

body.medwol-theme .medwol-benefits-grid__line {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #585b6b;
}

body.medwol-theme .medwol-benefits-grid__badge {
  margin: 8px 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e73be;
}

body.medwol-theme .medwol-benefits-grid__badge span {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(30, 115, 190, 0.12);
}

@media (max-width: 991px) {
  body.medwol-theme .medwol-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  body.medwol-theme .medwol-benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  body.medwol-theme .medwol-benefits-grid__item {
    padding: 14px 16px;
  }
}

body.medwol-theme .medwol-benefits-flow__figure {
  margin: 28px 0 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(30, 115, 190, 0.08);
}

body.medwol-theme .medwol-benefits-flow__img {
  display: block;
  width: 100%;
  height: auto;
}

body.medwol-theme .medwol-benefits-flow__divider {
  height: 1px;
  margin: 40px auto 32px;
  max-width: 200px;
  background: linear-gradient(90deg, transparent, rgba(30, 115, 190, 0.35), transparent);
}

body.medwol-theme .medwol-benefits-flow__flow-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tanspot-black, #1a1a1a);
  margin-bottom: 10px;
}

body.medwol-theme .medwol-benefits-flow__flow-lead {
  max-width: 640px;
  margin: 0 auto;
  color: #585b6b;
  font-size: 1rem;
  line-height: 1.6;
}

body.medwol-theme .medwol-benefits-flow__figure--flow {
  margin-top: 24px;
}

body.medwol-theme .medwol-benefits-flow__img--flow {
  background: #fff;
}

@media (max-width: 575px) {
  body.medwol-theme .medwol-benefits-flow {
    padding: 40px 0 48px;
  }

  body.medwol-theme .medwol-benefits-flow__flow-title {
    font-size: 1.25rem;
  }
}

/* Home: testimonials strip (owl carousel) */
body.medwol-theme .medwol-home-testimonials {
  padding-top: 50px;
  padding-bottom: 70px;
}

body.medwol-theme .medwol-home-testimonials .section-title {
  margin-bottom: 12px;
}

body.medwol-theme .medwol-home-testimonials__lead {
  max-width: 720px;
  margin: 14px auto 0;
  color: #585b6b;
  font-size: 1rem;
  line-height: 1.6;
}

body.medwol-theme .medwol-home-testimonials .testimonial-two__middle {
  margin-top: 28px;
}

body.medwol-theme .medwol-home-testimonials__more {
  margin: 28px 0 0;
}

/* Inner pages: testimonials (shared header bg pattern with contact/about) */
body.medwol-theme .medwol-inner-page-header .page-header__bg {
  background-size: cover;
}

body.medwol-theme .medwol-testimonials-page {
  padding-top: 90px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  body.medwol-theme .medwol-testimonials-page {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
