:root {
  --bv-ink: #263238;
  --bv-ink-soft: #4f5f58;
  --bv-bg: #fbfaf6;
  --bv-surface: #ffffff;
  --bv-surface-warm: #fff7f0;
  --bv-sage: #6f8f7a;
  --bv-sage-deep: #365846;
  --bv-mineral: #557d89;
  --bv-apricot-soft: #DFAF9F;
  --bv-clay: var(--bv-apricot-soft);
  --bv-rose-soft: #e9b6ad;
  --bv-amber: #f0c97b;
  --bv-danger: #9b4d44;
  --bv-border: #e6ddd1;
  --bv-shadow: rgba(38, 50, 56, .10);

  --bv-font-title: Hind, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bv-font-body: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bv-measure: 68ch;
  --bv-h1: clamp(2.35rem, 4vw, 4.4rem);
  --bv-h2: clamp(1.55rem, 2.2vw, 2.35rem);
  --bv-h3: clamp(1.2rem, 1.6vw, 1.55rem);
  --bv-body: clamp(1rem, .3vw + .94rem, 1.08rem);

  --bv-space-1: .375rem;
  --bv-space-2: .75rem;
  --bv-space-3: 1rem;
  --bv-space-4: 1.5rem;
  --bv-space-5: 2rem;
  --bv-space-6: 3rem;
  --bv-space-7: 4.5rem;
  --bv-radius-sm: .65rem;
  --bv-radius-md: 1.1rem;
  --bv-radius-lg: 1.8rem;
  --bv-radius-organic: 2.2rem 1.1rem 2rem 1.2rem;
  --bv-shadow-card: 0 16px 40px rgba(38, 50, 56, .08);
  --bv-shadow-hover: 0 22px 54px rgba(38, 50, 56, .12);
}

body.wp-theme-generatepress {
  background: var(--bv-bg);
  color: var(--bv-ink);
  font-family: var(--bv-font-body);
  font-size: var(--bv-body);
  line-height: 1.72;
}

body.wp-theme-generatepress a {
  color: var(--bv-sage-deep);
  text-underline-offset: .18em;
}

body.wp-theme-generatepress a:hover,
body.wp-theme-generatepress a:focus {
  color: var(--bv-clay);
}

.bv-wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.bv-measure {
  max-width: var(--bv-measure);
}

.bv-section {
  padding-block: var(--bv-space-7);
}

.bv-stack > * + * {
  margin-top: var(--bv-space-4);
}

.bv-grid-2,
.bv-grid-3,
.bv-grid-auto,
.bv-split {
  display: grid;
  gap: var(--bv-space-5);
}

.bv-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bv-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bv-grid-auto { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.bv-split { grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); align-items: center; }

.bv-eyebrow {
  margin: 0 0 var(--bv-space-2);
  color: var(--bv-clay);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bv-lead {
  color: var(--bv-ink-soft);
  font-size: clamp(1.08rem, .6vw + 1rem, 1.28rem);
  line-height: 1.62;
}

.bv-topic-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.8rem, 8vw, 7rem) 0 clamp(2.6rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 85% 18%, rgba(233, 182, 173, .28), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(111, 143, 122, .18), transparent 32%),
    linear-gradient(135deg, #fffaf3 0%, #f7f4ec 58%, #f4eee6 100%);
}

.bv-topic-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -42% auto;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  border-radius: 44% 56% 49% 51%;
  background: linear-gradient(135deg, rgba(111, 143, 122, .16), rgba(185, 111, 93, .10));
  pointer-events: none;
}

.bv-topic-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--bv-ink);
  font-family: var(--bv-font-title);
  font-size: var(--bv-h1);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: none;
}

.bv-topic-hero__visual {
  min-height: 300px;
  border: 1px solid rgba(230, 221, 209, .9);
  border-radius: var(--bv-radius-organic);
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,247,240,.58)),
    radial-gradient(circle at 30% 28%, rgba(111,143,122,.30), transparent 23%),
    radial-gradient(circle at 70% 68%, rgba(185,111,93,.22), transparent 27%);
  box-shadow: var(--bv-shadow-card);
}

.bv-topic-nav,
.bv-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bv-space-2);
  margin-top: var(--bv-space-4);
}

.bv-topic-nav a,
.bv-tag-row span,
.bv-proof-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .42rem .72rem;
  border: 1px solid var(--bv-border);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: var(--bv-sage-deep);
  font-size: .83rem;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
}

.bv-topic-nav a:hover,
.bv-topic-nav a:focus {
  background: var(--bv-sage-deep);
  color: #fff;
}

.bv-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem .9rem;
  padding: .85rem 1rem;
  border: 1px solid var(--bv-border);
  border-left: 5px solid var(--bv-sage);
  border-radius: var(--bv-radius-md);
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 26px rgba(38, 50, 56, .05);
  color: var(--bv-ink-soft);
  font-size: .92rem;
}

.bv-proof-badge--solid { background: #e8f2eb; color: #244b34; border-color: #cbded1; }
.bv-proof-badge--moderate { background: #eef4f5; color: #315c68; border-color: #d1e2e5; }
.bv-proof-badge--limited { background: #fff4dc; color: #74501c; border-color: #efd99e; }
.bv-proof-badge--traditional { background: #fff0e9; color: #854f3e; border-color: #e9c4b7; }
.bv-proof-badge--risk { background: #f8e8e3; color: var(--bv-danger); border-color: #e6bcb3; }

.bv-note {
  position: relative;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius-organic);
  background: var(--bv-surface);
  box-shadow: var(--bv-shadow-card);
}

.bv-note::before {
  content: "";
  position: absolute;
  inset: 1rem auto 1rem 0;
  width: 5px;
  border-radius: 999px;
  background: var(--bv-sage);
}

.bv-note__eyebrow {
  margin: 0 0 .55rem;
  color: var(--bv-sage-deep);
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bv-note--consult::before { background: var(--bv-amber); }
.bv-note--avoid::before { background: var(--bv-danger); }
.bv-note--sources::before { background: var(--bv-mineral); }
.bv-note--takeaway { background: linear-gradient(135deg, #ffffff, #f7fbf7); }

.bv-card {
  overflow: hidden;
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius-lg);
  background: var(--bv-surface);
  box-shadow: var(--bv-shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bv-card:hover,
.bv-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--bv-shadow-hover);
  border-color: rgba(111, 143, 122, .45);
}

.bv-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 25% 30%, rgba(111,143,122,.26), transparent 26%),
    radial-gradient(circle at 78% 66%, rgba(233,182,173,.34), transparent 28%),
    linear-gradient(135deg, #faf6ef, #f1ede4);
}

.bv-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bv-card__body {
  padding: var(--bv-space-4);
}

.bv-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .7rem;
  margin-bottom: .55rem;
  color: var(--bv-ink-soft);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.bv-card__title {
  margin: 0 0 .65rem;
  color: var(--bv-ink);
  font-family: var(--bv-font-title);
  font-size: clamp(1.08rem, .8vw + .95rem, 1.35rem);
  line-height: 1.18;
  letter-spacing: -.018em;
}

.bv-card__title a {
  color: inherit;
  text-decoration: none;
}

.bv-card__excerpt {
  margin: 0 0 var(--bv-space-3);
  color: var(--bv-ink-soft);
  font-size: .95rem;
  line-height: 1.58;
}

.bv-author-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--bv-space-3);
  align-items: start;
  padding: var(--bv-space-4);
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius-lg);
  background: linear-gradient(135deg, #ffffff, #fffaf4);
}

.bv-author-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(111,143,122,.25), rgba(185,111,93,.18));
}

.bv-affiliate-disclosure,
.bv-buying-method {
  padding: var(--bv-space-4);
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius-md);
  background: var(--bv-surface-warm);
}

.bv-comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius-md);
  overflow: hidden;
  background: var(--bv-surface);
}

.bv-comparison-table th,
.bv-comparison-table td {
  padding: .85rem;
  border-bottom: 1px solid var(--bv-border);
  text-align: left;
  vertical-align: top;
}

.bv-comparison-table th {
  background: #f2efe6;
  color: var(--bv-sage-deep);
  font-weight: 850;
}

/* GeneratePress / WP Show Posts progressive enhancement */
.wp-show-posts.bv-topic-grid article,
.bv-topic-grid article {
  min-width: 0;
}

/* Affimax/Slick safety: do not override carousel internals globally */
.afxshop-list.slick-slider,
.afxshop-list.slick-slider .slick-track {
  display: block !important;
}

.bv-card--product .afxshop,
.bv-product-verdict .afxshop {
  border: 1px solid var(--bv-border);
  border-radius: var(--bv-radius-md);
  background: var(--bv-surface);
}

@media (max-width: 900px) {
  .bv-grid-2,
  .bv-grid-3,
  .bv-split {
    grid-template-columns: 1fr;
  }

  .bv-topic-hero {
    padding-block: 3.2rem 2.6rem;
  }

  .bv-topic-hero__visual {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .bv-wrap {
    width: min(100% - 24px, 1180px);
  }

  .bv-section {
    padding-block: var(--bv-space-6);
  }

  .bv-card__body,
  .bv-note,
  .bv-author-card,
  .bv-affiliate-disclosure,
  .bv-buying-method {
    padding: var(--bv-space-3);
  }

  .bv-author-card {
    grid-template-columns: 1fr;
  }

  .bv-comparison-table,
  .bv-comparison-table thead,
  .bv-comparison-table tbody,
  .bv-comparison-table th,
  .bv-comparison-table td,
  .bv-comparison-table tr {
    display: block;
  }

  .bv-comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .bv-comparison-table tr {
    border-bottom: 1px solid var(--bv-border);
  }
}


/* Biovida design system styles. */
body.category-sante.category-77{background:var(--bv-bg)!important;}
body.category-sante.category-77 .gb-container-ae74c347{position:relative!important;overflow:hidden!important;max-width:none!important;margin:0!important;padding:clamp(4rem,8vw,7.25rem) max(22px,calc((100vw - 1180px)/2)) clamp(2.8rem,6vw,5.1rem)!important;border:0!important;background:radial-gradient(circle at 82% 16%,rgba(223,175,159,.26),transparent 29%),radial-gradient(circle at 16% 82%,rgba(111,143,122,.20),transparent 34%),linear-gradient(135deg,#fffaf3 0%,#f6f2ea 58%,#f1eadf 100%)!important;text-align:left!important;}
body.category-sante.category-77 .gb-container-ae74c347 .gb-inside-container{max-width:1180px!important;margin:0 auto!important;}
body.category-sante.category-77 .gb-container-ae74c347 .gb-inside-container::before{content:none!important;display:inline-flex;align-items:center;margin:0 0 var(--bv-space-2);padding:.42rem .72rem;border:1px solid rgba(111,143,122,.28);border-radius:999px;background:rgba(255,255,255,.72);color:var(--bv-sage-deep);font-size:.82rem;font-weight:850;letter-spacing:.08em;text-transform:uppercase;}
body.category-sante.category-77 .gb-container-ae74c347 .gb-inside-container::after{content:none!important;display:block;max-width:760px;margin-top:var(--bv-space-3);color:var(--bv-ink-soft);font-size:clamp(1.08rem,.65vw + 1rem,1.28rem);line-height:1.62;}
body.category-sante.category-77 .gb-container-ae74c347 h1.gb-headline{max-width:850px!important;margin:0!important;color:var(--bv-ink)!important;font-family:var(--bv-font-title)!important;font-size:var(--bv-h1)!important;line-height:.98!important;letter-spacing:-.035em!important;text-align:left!important;text-transform:none!important;}
body.category-sante.category-77 .gb-container-ae74c347 h1.gb-headline::after{content:none!important;}
body.category-sante.category-77 #content.site-content{display:block!important;max-width:none!important;width:100%!important;margin:0!important;padding:0!important;background:var(--bv-bg)!important;}
body.category-sante.category-77 #main.site-main{display:block!important;width:min(1180px,calc(100% - 32px))!important;max-width:1180px!important;margin:0 auto!important;padding:clamp(2rem,4vw,3.2rem) 0 clamp(3rem,6vw,5rem)!important;}
body.category-sante.category-77 #main.site-main::before{content:none!important;display:block;margin:0 0 1.35rem;color:var(--bv-sage-deep);font-family:var(--bv-font-title);font-size:var(--bv-h2);line-height:1.1;letter-spacing:-.025em;}
body.category-sante.category-77 #main.site-main>.generate-columns-container{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:clamp(1.25rem,2vw,1.8rem)!important;width:100%!important;max-width:1180px!important;margin:0!important;align-items:stretch!important;}
body.category-sante.category-77 #main.site-main>.generate-columns-container>article.generate-columns{width:100%!important;max-width:none!important;min-width:0!important;float:none!important;clear:none!important;margin:0!important;box-sizing:border-box!important;display:flex!important;position:relative;overflow:hidden;padding:0!important;border:1px solid var(--bv-border)!important;border-radius:var(--bv-radius-lg)!important;background:var(--bv-surface)!important;box-shadow:var(--bv-shadow-card)!important;flex-direction:column;}
body.category-sante.category-77 #main.site-main article.tag-prudence-sante::after{content:none!important;position:absolute;top:.82rem;left:.82rem;padding:.38rem .62rem;border:1px solid #e6bcb3;border-radius:999px;background:rgba(248,232,227,.94);color:var(--bv-danger);font-size:.76rem;font-weight:850;line-height:1;}
@media(max-width:980px){body.category-sante.category-77 #main.site-main>.generate-columns-container{grid-template-columns:repeat(2,minmax(0,1fr))!important;}}
@media(max-width:640px){body.category-sante.category-77 .gb-container-ae74c347{padding:3.2rem 18px 2.6rem!important;}body.category-sante.category-77 .gb-container-ae74c347 h1.gb-headline::after{content:"";}body.category-sante.category-77 #main.site-main{width:min(100% - 24px,1180px)!important;padding-top:1.6rem!important;}body.category-sante.category-77 #main.site-main>.generate-columns-container{display:block!important;}body.category-sante.category-77 #main.site-main>.generate-columns-container>article.generate-columns{margin-bottom:1.15rem!important;}}

/* Legacy visual compatibility styles migrated from previous theme widget CSS. */
.site-footer img,
.footer-widgets img,
.footer-bar img,
.site-info img {
  height: auto !important;
}
.footer-widgets .widget_media_image img,
.footer-widgets .widget_text img,
.footer-widgets img.wp-image-4902,
.site-footer img.wp-image-4902 {
  width: auto !important;
  max-width: 247px !important;
  height: auto !important;
}
@media (min-width: 1024px) {
  .footer-widgets img.wp-image-4902,
  .site-footer img.wp-image-4902 {
    max-width: 247px !important;
  }
}
@media (min-width: 641px) and (max-width: 1023px) {
  .footer-widgets img.wp-image-4902,
  .site-footer img.wp-image-4902 {
    max-width: min(247px, 34vw) !important;
  }
}
@media (max-width: 640px) {
  .footer-widgets img.wp-image-4902,
  .site-footer img.wp-image-4902 {
    max-width: min(220px, 68vw) !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer .footer-bar img,
  .site-info img {
    max-width: min(180px, 58vw) !important;
  }
}




.home .entry-content > .gb-container:first-child{margin-bottom:0!important;}
.home .entry-content h1,.home .entry-content h2,.home .entry-content h3{letter-spacing:-.02em;}
.home .wp-block-latest-posts,.home .gb-query-loop-wrapper{max-width:1120px;margin-left:auto;margin-right:auto;}
.home article,.home .generate-columns{border-radius:18px;overflow:hidden;}
.home .entry-content img{max-width:100%;height:auto;}
.home .entry-content p{overflow-wrap:anywhere;}
@media(max-width:768px){
  .home .entry-content .gb-container{max-width:100%;overflow:hidden;}
  .home .entry-content h1{font-size:clamp(2rem,11vw,3rem)!important;line-height:1.02!important;}
  .home .entry-content h2{font-size:clamp(1.5rem,8vw,2.1rem)!important;}
  .home .wp-block-latest-posts li,.home .generate-columns{width:100%!important;max-width:100%!important;}
}




.site-footer img[src*="biovia-affi.png"],
.footer-widgets img[src*="biovia-affi.png"],
img[src*="biovia-affi.png"]{
  display:block!important;
  width:min(100%,760px)!important;
  max-width:calc(100vw - 44px)!important;
  height:auto!important;
  min-height:0!important;
  object-fit:contain!important;
  margin:28px auto 10px!important;
  padding:0!important;
  border:0!important;
  box-sizing:content-box!important;
  line-height:0!important;
  clear:both!important;
  flex:none!important;
}
@media(max-width:768px){
  .site-footer img[src*="biovia-affi.png"],
  .footer-widgets img[src*="biovia-affi.png"],
  img[src*="biovia-affi.png"]{
    width:calc(100vw - 44px)!important;
    max-width:520px!important;
    margin-top:22px!important;
  }
}



.site-footer .footer-widget-1 .textwidget,
.site-footer .footer-widget-1 .textwidget p { text-align:center !important; }
.site-footer .footer-widget-1 img.wp-image-4902,
.site-footer .footer-widget-1 img[src*="cropped-logo"] { display:block !important; margin:0 auto 16px !important; max-width:170px !important; width:auto !important; height:auto !important; }
@media (min-width:769px) { .site-footer .inside-footer-widgets .footer-widget-1 { display:flex; align-items:flex-start; justify-content:center; } }
@media (max-width:768px) { .site-footer .footer-widget-1 { text-align:center !important; } .site-footer .footer-widget-1 img.wp-image-4902 { margin-left:auto !important; margin-right:auto !important; } }



.site-footer .footer-widget-1 aside#text-3,
.site-footer .footer-widget-1 .widget_text,
.site-footer .footer-widget-1 .textwidget,
.site-footer .footer-widget-1 .textwidget p { width:100% !important; max-width:100% !important; text-align:center !important; }
.site-footer .footer-widget-1 { justify-content:center !important; }
.site-footer .footer-widget-1 img.wp-image-4902 { display:block !important; margin-left:auto !important; margin-right:auto !important; }



.site-footer .footer-widgets-container.grid-container{max-width:1120px !important;margin-left:auto !important;margin-right:auto !important;padding-left:24px !important;padding-right:24px !important;}
.site-footer .inside-footer-widgets{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:64px !important;margin-left:0 !important;margin-right:0 !important;width:100% !important;align-items:start !important;}
.site-footer .inside-footer-widgets>div{float:none !important;width:auto !important;max-width:none !important;padding-left:0 !important;padding-right:0 !important;margin:0 !important;left:auto !important;}
.site-footer .footer-widget-1{display:flex !important;justify-content:center !important;text-align:center !important;}
.site-footer .footer-widget-1 aside#text-3,.site-footer .footer-widget-1 .textwidget,.site-footer .footer-widget-1 p{width:100% !important;text-align:center !important;margin-left:auto !important;margin-right:auto !important;}
.site-footer .footer-widget-1 img.wp-image-4902,.site-footer .footer-widget-1 img[src*="cropped-logo"]{display:block !important;margin:0 auto 16px !important;width:auto !important;max-width:170px !important;height:auto !important;}
.site-footer .inside-site-info.grid-container{display:flex !important;justify-content:center !important;align-items:center !important;text-align:center !important;width:100% !important;max-width:100% !important;padding-left:20px !important;padding-right:20px !important;}
.site-footer .copyright-bar{display:block !important;width:100% !important;max-width:100% !important;margin:0 auto !important;text-align:center !important;float:none !important;}
.site-footer .footer-bar{display:none !important;}
@media(max-width:768px){.site-footer .inside-footer-widgets{grid-template-columns:1fr !important;gap:28px !important;text-align:center !important}.site-footer .footer-widget-2,.site-footer .footer-widget-3{text-align:center !important}.site-footer .footer-widgets-container.grid-container{padding-left:20px !important;padding-right:20px !important}}



.site-footer .footer-widget-1 aside#text-3,.site-footer .footer-widget-1 aside.widget,.site-footer .footer-widget-1 .inner-padding{padding-left:0 !important;padding-right:0 !important;}
.site-footer .footer-widget-1 .textwidget{width:100% !important;max-width:100% !important;}
.site-footer .site-info,.site-footer .inside-site-info{box-sizing:border-box !important;width:100% !important;max-width:100% !important;left:auto !important;margin-left:0 !important;margin-right:0 !important;overflow:hidden !important;}
.site-footer .inside-site-info.grid-container{padding-left:20px !important;padding-right:20px !important;}
.site-footer .copyright-bar{padding:0 !important;}



.site-footer img.site-info.inside-site-info,.site-footer img[src*="biovia-affi"]{display:block !important;width:760px !important;max-width:calc(100vw - 40px) !important;height:auto !important;margin:24px auto 10px !important;left:auto !important;}




body.home .site-content{max-width:1200px!important;width:calc(100% - 48px)!important;margin-left:auto!important;margin-right:auto!important;padding:0!important;display:block!important}
body.home #primary,body.home .site-main,body.home article{width:100%!important;max-width:none!important}
body.home .inside-article{max-width:none!important;width:100%!important;margin:0 auto!important;padding:0!important;background:transparent!important;box-shadow:none!important;border-radius:0!important}
body.home .entry-content{width:100%!important;max-width:none!important;font-size:17px!important;line-height:1.68!important}
body.home .entry-content>p,body.home .entry-content h1,body.home .entry-content h2,body.home .entry-content h3,body.home .entry-content h4,body.home .entry-content ul,body.home .entry-content ol{max-width:1080px!important;margin-left:auto!important;margin-right:auto!important}
body.home .entry-content .wp-block-cover,body.home .entry-content .wp-block-group,body.home .entry-content .wp-block-columns,body.home .entry-content .wp-block-query,body.home .entry-content .wp-block-latest-posts{max-width:1200px!important;margin-left:auto!important;margin-right:auto!important}

body.single-post .site-content{max-width:1080px!important;width:calc(100% - 48px)!important;margin-left:auto!important;margin-right:auto!important;padding:72px 20px!important;display:block!important}
body.single-post #primary,body.single-post .site-main,body.single-post article{width:100%!important;max-width:none!important}
body.single-post .inside-article{max-width:980px!important;width:100%!important;margin:0 auto!important;padding:46px 64px!important;box-sizing:border-box!important;border-radius:18px!important;background:#fff!important;box-shadow:0 10px 30px rgba(36,58,46,.07)!important}
body.single-post .entry-content{width:100%!important;max-width:none!important;font-size:18px!important;line-height:1.78!important}
body.single-post .entry-content>p,body.single-post .entry-content ul,body.single-post .entry-content ol,body.single-post .entry-content h2,body.single-post .entry-content h3,body.single-post .rank-math-breadcrumb{max-width:820px!important;margin-left:auto!important;margin-right:auto!important}
body.single-post .entry-content .wp-block-image,body.single-post .entry-content table,body.single-post .entry-content .wp-block-table{max-width:860px!important;margin-left:auto!important;margin-right:auto!important}

.entry-content .afxshop{background:#f7fbf8!important;border-color:#dce9e1!important}
.entry-content .afxshop-item{border-color:#d9e7df!important;box-shadow:0 10px 24px rgba(40,60,50,.06)!important}
.entry-content .afxshop-title{color:#183c2b!important;font-weight:800!important;line-height:1.25!important}
.entry-content .afxshop-wrap{background:#f3faf5!important;border:1px solid #d9e8df!important;color:#183c2b!important;border-radius:12px!important;padding:12px!important;display:block!important;box-shadow:none!important}
.entry-content .afxshop-merchant{display:flex!important;justify-content:center!important;align-items:center!important;gap:8px!important;color:#31513f!important;background:transparent!important;margin:0 0 10px!important;font-weight:700!important;opacity:1!important}
.entry-content .afxshop-mname{color:#31513f!important}.entry-content .afxshop-logo img{max-height:20px!important;width:auto!important;filter:none!important}.entry-content .afxshop-details{display:none!important}.entry-content .afxshop-btn{display:block!important;width:100%!important;margin:0!important}.entry-content .afxshop-button{display:block!important;width:100%!important;box-sizing:border-box!important;text-align:center!important}.entry-content .afxshop-button:before{content:attr(data-cta)!important;display:block!important;width:100%!important;box-sizing:border-box!important;background:#31513f!important;color:#fff!important;border-radius:10px!important;padding:11px 12px!important;line-height:1.2!important;font-weight:800!important;white-space:normal!important;box-shadow:0 4px 12px rgba(49,81,63,.18)!important}.entry-content .afxshop-button[data-cta="Voir le prix sur Amazon"]:before{content:"Voir le prix sur Amazon"!important}.entry-content .afxshop:after{color:#68786f!important}
@media(max-width:900px){body.home .site-content,body.single-post .site-content{width:calc(100% - 24px)!important;padding-left:0!important;padding-right:0!important}body.single-post .inside-article{padding:30px 22px!important;border-radius:14px!important}body.single-post .entry-content{font-size:17px!important}}



.entry-content .afxshop-button,.entry-content .afxshop-button[data-cta],.entry-content .afxshop-btn .afxshop-button{background:transparent!important;background-color:transparent!important;background-image:none!important;border:0!important;box-shadow:none!important;outline:0!important;padding:0!important;margin:0!important;color:inherit!important;min-height:0!important;height:auto!important;overflow:visible!important}.entry-content .afxshop-button:before{background:#31513f!important;background-image:none!important;color:#fff!important;border:0!important;box-shadow:0 4px 12px rgba(49,81,63,.18)!important}.entry-content .afxshop-wrap:before,.entry-content .afxshop-wrap:after,.entry-content .afxshop-button:after{display:none!important;content:none!important}.entry-content .afx-gradient{background:#f3faf5!important;background-image:none!important}.entry-content .afxshop-offer,.entry-content .afxshop-offer a{background:transparent!important;background-image:none!important;box-shadow:none!important;border:0!important;display:block!important;width:100%!important}



body.home .entry-content #wpsp-1253.wp-show-posts,
body.home .entry-content .wp-show-posts-columns.wp-show-posts{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:28px!important;max-width:1120px!important;width:100%!important;margin:28px auto 54px!important;padding:0!important;align-items:stretch!important;overflow:visible!important}
body.home .entry-content #wpsp-1253.wp-show-posts:before,body.home .entry-content #wpsp-1253.wp-show-posts:after{content:none!important;display:none!important}
body.home .entry-content #wpsp-1253 .wp-show-posts-single,
body.home .entry-content .wp-show-posts .wp-show-posts-single{display:flex!important;flex-direction:column!important;width:100%!important;max-width:none!important;min-width:0!important;height:auto!important;min-height:100%!important;float:none!important;clear:none!important;position:relative!important;left:auto!important;top:auto!important;margin:0!important;padding:0!important;background:#fff!important;border:1px solid #eadfe6!important;border-radius:18px!important;box-shadow:0 10px 26px rgba(80,45,65,.07)!important;overflow:hidden!important;text-align:left!important;box-sizing:border-box!important;transform:none!important}.entry-content #wpsp-1253 .wp-show-posts-inner{display:flex!important;flex-direction:column!important;height:100%!important;width:100%!important;margin:0!important;padding:0!important}.entry-content #wpsp-1253 .wp-show-posts-image{display:block!important;width:100%!important;margin:0!important;padding:0!important;text-align:initial!important;background:#fff4f7!important}.entry-content #wpsp-1253 .wp-show-posts-image a{display:block!important;width:100%!important;height:210px!important;overflow:hidden!important}.entry-content #wpsp-1253 .wp-show-posts-image img{display:block!important;width:100%!important;height:210px!important;max-width:none!important;object-fit:cover!important;border-radius:0!important;margin:0!important;box-shadow:none!important}.entry-content #wpsp-1253 .wp-show-posts-entry-header{display:block!important;padding:18px 20px 6px!important;margin:0!important;width:auto!important;max-width:none!important}.entry-content #wpsp-1253 h2,.entry-content #wpsp-1253 h3,.entry-content #wpsp-1253 .wp-show-posts-entry-title{display:block!important;width:auto!important;max-width:none!important;margin:0!important;padding:0!important;font-size:1.08rem!important;line-height:1.32!important;letter-spacing:0!important;color:#31513f!important;text-align:left!important}.entry-content #wpsp-1253 h2:after,.entry-content #wpsp-1253 h3:after{display:none!important;content:none!important}.entry-content #wpsp-1253 .wp-show-posts-entry-title a{color:#31513f!important;text-decoration:none!important}.entry-content #wpsp-1253 .wp-show-posts-entry-title a:hover{text-decoration:underline!important;text-underline-offset:.18em}.entry-content #wpsp-1253 .wp-show-posts-entry-meta{display:block!important;padding:0 20px 18px!important;margin:0!important;color:#7a6670!important;font-size:.9rem!important;text-align:left!important}.entry-content #wpsp-1253 .wp-show-posts-entry-meta a{color:#7a6670!important;text-decoration:none!important}.entry-content #wpsp-1253 .wp-show-posts-entry-summary{padding:0 20px 20px!important;color:#4b5a52!important;font-size:.95rem!important;line-height:1.55!important}
@media(max-width:980px){body.home .entry-content #wpsp-1253.wp-show-posts,body.home .entry-content .wp-show-posts-columns.wp-show-posts{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:22px!important;max-width:calc(100% - 24px)!important}}
@media(max-width:640px){body.home .entry-content #wpsp-1253.wp-show-posts,body.home .entry-content .wp-show-posts-columns.wp-show-posts{grid-template-columns:1fr!important}.entry-content #wpsp-1253 .wp-show-posts-image a,.entry-content #wpsp-1253 .wp-show-posts-image img{height:220px!important}}




body.archive.category #main.site-main{max-width:1180px;margin:0 auto;padding:64px 22px 74px;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;align-items:start;}
body.archive.category #main.site-main article.generate-columns{width:auto!important;float:none!important;background:#fff;border:1px solid #f1edf0;border-radius:18px;box-shadow:0 16px 36px rgba(47,36,44,.055);padding:0!important;margin:0!important;overflow:hidden;min-height:0;display:flex!important;flex-direction:column;}
body.archive.category #main.site-main article .inside-article{padding:26px 26px 28px!important;display:flex;flex-direction:column;min-height:0;}
body.archive.category #main.site-main article .post-image{margin:0 0 20px!important;min-height:0!important;}
body.archive.category #main.site-main article .post-image:empty,
body.archive.category #main.site-main article .post-image a:empty{display:none!important;margin:0!important;height:0!important;min-height:0!important;}
body.archive.category #main.site-main article .post-image img{display:block;width:100%!important;aspect-ratio:16/9;height:auto!important;max-height:185px;object-fit:cover;border-radius:14px;box-shadow:none;}
body.archive.category #main.site-main article .entry-header{margin-bottom:10px!important;}
body.archive.category #main.site-main article .entry-title{font-size:clamp(1.28rem,1.05rem + .45vw,1.72rem)!important;line-height:1.18!important;margin:0 0 10px!important;color:#6d5260!important;letter-spacing:-.01em;text-transform:none!important;}
body.archive.category #main.site-main article .entry-title a{color:inherit!important;text-decoration:none;}
body.archive.category #main.site-main article .entry-meta{font-size:.78rem!important;color:#8c7b83!important;margin:0 0 14px!important;}
body.archive.category #main.site-main article .entry-summary,
body.archive.category #main.site-main article .entry-content{font-size:.98rem;line-height:1.72;color:#263b44;margin:0!important;}
body.archive.category #main.site-main article .entry-summary p,
body.archive.category #main.site-main article .entry-content p{display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:0!important;}
body.archive.category #main.site-main article blockquote{display:none!important;}
body.archive.category .paging-navigation,
body.archive.category nav#nav-below{grid-column:1/-1;}
@media(max-width:980px){body.archive.category #main.site-main{grid-template-columns:repeat(2,minmax(0,1fr));padding:42px 18px 60px;gap:22px;}}
@media(max-width:640px){body.archive.category #main.site-main{display:block!important;padding:30px 18px 48px;}body.archive.category #main.site-main article.generate-columns{margin-bottom:22px!important;}body.archive.category #main.site-main article .inside-article{padding:22px!important;}body.archive.category #main.site-main article .post-image img{max-height:205px;}body.archive.category #main.site-main article .entry-summary p,body.archive.category #main.site-main article .entry-content p{-webkit-line-clamp:4;}}




body.archive.category #content.site-content{display:block!important;max-width:1220px!important;margin-left:auto!important;margin-right:auto!important;padding-left:20px!important;padding-right:20px!important;}
body.archive.category #primary.content-area{display:block!important;width:100%!important;max-width:none!important;float:none!important;margin:0!important;}
body.archive.category #main.site-main{display:block!important;width:100%!important;max-width:none!important;margin:0!important;padding:54px 0 72px!important;}
body.archive.category #main.site-main>.generate-columns-container{width:100%!important;max-width:none!important;display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:28px!important;align-items:start!important;margin:0!important;padding:0!important;}
body.archive.category #main.site-main>.generate-columns-container:before,body.archive.category #main.site-main>.generate-columns-container:after{display:none!important;content:none!important;}
body.archive.category #main.site-main article.generate-columns{width:auto!important;max-width:none!important;float:none!important;clear:none!important;margin:0!important;padding:0!important;}
body.archive.category #main.site-main article .inside-article{height:100%;padding:26px!important;background:#fff!important;border:1px solid #f1edf0!important;border-radius:18px!important;box-shadow:0 16px 36px rgba(47,36,44,.055)!important;overflow:hidden!important;}
body.archive.category #main.site-main article .post-image{margin:0 0 18px!important;}
body.archive.category #main.site-main article .post-image img{display:block!important;width:100%!important;height:auto!important;aspect-ratio:16/9!important;object-fit:cover!important;border-radius:14px!important;}
body.archive.category #main.site-main article .entry-title{font-size:clamp(1.18rem,1rem + .42vw,1.55rem)!important;line-height:1.18!important;margin:0 0 10px!important;text-transform:none!important;color:#6d5260!important;letter-spacing:-.01em!important;}
body.archive.category #main.site-main article .entry-meta{font-size:.77rem!important;color:#8c7b83!important;margin:0 0 14px!important;}
body.archive.category #main.site-main article .entry-summary p,body.archive.category #main.site-main article .entry-content p{display:-webkit-box!important;-webkit-line-clamp:5!important;-webkit-box-orient:vertical!important;overflow:hidden!important;margin-bottom:0!important;line-height:1.72!important;}
body.archive.category #main.site-main article blockquote{display:none!important;}
@media(max-width:980px){body.archive.category #main.site-main>.generate-columns-container{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:22px!important;}}
@media(max-width:640px){body.archive.category #content.site-content{padding-left:18px!important;padding-right:18px!important;}body.archive.category #main.site-main{padding:30px 0 48px!important;}body.archive.category #main.site-main>.generate-columns-container{display:block!important;}body.archive.category #main.site-main article.generate-columns{margin-bottom:22px!important;}body.archive.category #main.site-main article .inside-article{padding:22px!important;}body.archive.category #main.site-main article .entry-summary p,body.archive.category #main.site-main article .entry-content p{-webkit-line-clamp:4!important;}}




.entry-content .afxshop-list.slick-slider,
.entry-content ul.afxshop-list.afx-carousel.slick-slider{
  display:block!important;
  grid-template-columns:none!important;
  gap:0!important;
  overflow:visible!important;
  width:100%!important;
  max-width:100%!important;
}
.entry-content .afxshop-list.slick-slider .slick-list{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  overflow:hidden!important;
}
.entry-content .afxshop-list.slick-slider .slick-track{
  display:block!important;
}
.entry-content .afxshop-list.slick-slider .afxshop-item.slick-slide{
  float:left!important;
  display:flex!important;
  height:auto!important;
  min-height:430px!important;
  margin:0 9px!important;
}
.entry-content .afxshop-list.slick-slider .slick-arrow{
  z-index:4!important;
}
@media(max-width:760px){
  .entry-content .afxshop-list.slick-slider .afxshop-item.slick-slide{margin:0 6px!important;}
}

/* Biovida template system v1.0.3 */
:root{
  --bv-template-max: 1120px;
}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) .gb-container-ae74c347{
  background:radial-gradient(circle at 82% 18%,rgba(223,175,159,.22),transparent 28%),linear-gradient(135deg,#fbfaf6 0%,#f4efe7 62%,#edf3ee 100%)!important;
  min-height:clamp(210px,28vw,330px)!important;
  padding:clamp(3.2rem,7vw,6rem) max(22px,calc((100vw - var(--bv-template-max))/2)) clamp(2.8rem,5vw,4.2rem)!important;
  display:flex!important;
  align-items:center!important;
  text-align:left!important;
  border-bottom:1px solid rgba(230,221,209,.9);
}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) .gb-container-ae74c347 .gb-inside-container{max-width:var(--bv-template-max)!important;margin:0 auto!important;width:100%;}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) .gb-container-ae74c347 .gb-inside-container:before{
  content:none!important;display:inline-flex;margin-bottom:1rem;padding:.42rem .72rem;border-radius:999px;border:1px solid rgba(111,143,122,.28);background:rgba(255,255,255,.74);color:var(--bv-sage-deep);font:800 .78rem/1 var(--bv-font-text);letter-spacing:.08em;text-transform:uppercase;
}
body.page-id-5064 .gb-container-ae74c347 .gb-inside-container:before{content:none!important;}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) .gb-container-ae74c347 h1.gb-headline{
  max-width:900px!important;margin:0!important;color:var(--bv-ink)!important;font-family:var(--bv-font-title)!important;font-size:clamp(2.35rem,4.9vw,4.9rem)!important;line-height:.98!important;letter-spacing:-.045em!important;text-align:left!important;text-transform:none!important;
}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) #content.site-content{background:var(--bv-bg)!important;}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) #primary.content-area{max-width:var(--bv-template-max)!important;margin:0 auto!important;}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) article .inside-article{padding:clamp(1.4rem,3vw,2.2rem) 0 0!important;background:transparent!important;}
body.wp-child-theme-generatepress-child-biovida .rank-math-breadcrumb{max-width:var(--bv-template-max);margin:0 auto 1.2rem!important;padding:.75rem 1rem!important;border:1px solid var(--bv-border);border-radius:999px;background:rgba(255,255,255,.82);color:var(--bv-ink-soft);font-size:.86rem;line-height:1.3;box-shadow:0 8px 24px rgba(38,50,56,.045);}
body.wp-child-theme-generatepress-child-biovida .rank-math-breadcrumb p{margin:0!important;}
body.wp-child-theme-generatepress-child-biovida .rank-math-breadcrumb a{color:var(--bv-sage-deep);font-weight:800;text-decoration:none;}
.bv-template-trust{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;border:1px solid var(--bv-border);border-radius:22px;background:#fff;box-shadow:0 14px 34px rgba(38,50,56,.07);overflow:hidden;margin:0 0 clamp(1.6rem,3vw,2.4rem);}
.bv-template-trust__item{padding:1rem 1.1rem;border-right:1px solid var(--bv-border);}
.bv-template-trust__item span{display:block;margin-bottom:.3rem;color:var(--bv-ink-soft);font-size:.78rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.bv-template-trust__item strong{color:var(--bv-ink);font-family:var(--bv-font-title);font-size:1.05rem;line-height:1.2;}
.bv-template-trust__note{grid-column:1/-1;padding:1rem 1.1rem;background:linear-gradient(90deg,rgba(111,143,122,.10),rgba(85,125,137,.08));color:var(--bv-ink-soft);font-size:.96rem;line-height:1.55;border-top:1px solid var(--bv-border);}
.bv-method-panel{margin:0 0 clamp(1.8rem,3vw,2.6rem);padding:clamp(1.3rem,2.5vw,2rem);border:1px solid rgba(111,143,122,.25);border-radius:26px;background:linear-gradient(135deg,#ffffff 0%,#f6f3ec 100%);box-shadow:0 16px 38px rgba(38,50,56,.06);}
.bv-method-panel__kicker{margin:0 0 .45rem!important;color:var(--bv-sage-deep);font-weight:850;letter-spacing:.08em;text-transform:uppercase;font-size:.78rem;}
.bv-method-panel h2{margin:.1rem 0 1rem!important;color:var(--bv-ink)!important;font-family:var(--bv-font-title)!important;font-size:clamp(1.7rem,2.5vw,2.35rem)!important;line-height:1.08!important;}
.bv-method-panel__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;}
.bv-method-panel__grid p{margin:0!important;padding:1rem;border:1px solid var(--bv-border);border-radius:16px;background:rgba(255,255,255,.82);line-height:1.55;}
body.wp-child-theme-generatepress-child-biovida .entry-content>p{font-size:1.03rem;line-height:1.75;color:var(--bv-ink);}
body.wp-child-theme-generatepress-child-biovida .entry-content h2:not(.gb-headline){margin-top:clamp(2.2rem,4vw,3.2rem)!important;margin-bottom:1rem!important;color:var(--bv-ink)!important;font-family:var(--bv-font-title)!important;font-size:clamp(1.9rem,3vw,2.55rem)!important;line-height:1.08!important;letter-spacing:-.03em!important;}
body.wp-child-theme-generatepress-child-biovida .entry-content h2:not(.gb-headline):after{content:"";display:block;width:56px;height:4px;margin:.72rem 0 0;border-radius:99px;background:linear-gradient(90deg,var(--bv-sage),var(--bv-mineral));}
body.wp-child-theme-generatepress-child-biovida .entry-content h3{margin-top:1.8rem!important;color:var(--bv-sage-deep)!important;font-family:var(--bv-font-title)!important;font-size:clamp(1.25rem,2vw,1.6rem)!important;line-height:1.18!important;}
body.wp-child-theme-generatepress-child-biovida .entry-content ul:not(.afxshop-list){padding-left:1.3rem;line-height:1.7;}
body.wp-child-theme-generatepress-child-biovida .entry-content figure.wp-block-image{margin:2rem 0!important;}
body.wp-child-theme-generatepress-child-biovida .entry-content figure.wp-block-image img{border-radius:22px;box-shadow:0 14px 36px rgba(38,50,56,.08);}
body.wp-child-theme-generatepress-child-biovida .author-box{display:grid!important;grid-template-columns:96px minmax(0,1fr);gap:1rem;align-items:center;max-width:var(--bv-template-max);margin:3rem auto!important;padding:1.25rem!important;border:1px solid var(--bv-border);border-radius:24px;background:linear-gradient(135deg,#fff 0%,#f6f3ec 100%);box-shadow:0 14px 34px rgba(38,50,56,.07);}
body.wp-child-theme-generatepress-child-biovida .author-box .avatar{width:96px!important;height:96px!important;overflow:hidden;border-radius:22px;background:#f4efe7;}
body.wp-child-theme-generatepress-child-biovida .author-box .avatar img{width:96px!important;height:96px!important;object-fit:cover!important;border-radius:22px!important;}
body.wp-child-theme-generatepress-child-biovida .author-box .author-title,body.wp-child-theme-generatepress-child-biovida .author-box .author-name{font-family:var(--bv-font-title);font-size:1.25rem;font-weight:850;color:var(--bv-ink);margin:0 0 .3rem;}
body.wp-child-theme-generatepress-child-biovida .author-box p{margin:.2rem 0!important;color:var(--bv-ink-soft);line-height:1.6;}
body.home.wp-child-theme-generatepress-child-biovida #content.site-content{background:var(--bv-bg)!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child{position:relative;overflow:hidden;border-radius:0 0 34px 34px;background:radial-gradient(circle at 82% 14%,rgba(223,175,159,.28),transparent 30%),radial-gradient(circle at 12% 86%,rgba(111,143,122,.22),transparent 32%),linear-gradient(135deg,#fffaf3,#f2eee5 60%,#edf3ee)!important;border-bottom:1px solid var(--bv-border);}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline{color:var(--bv-ink)!important;font-family:var(--bv-font-title)!important;font-size:clamp(2.5rem,5.2vw,5.1rem)!important;line-height:.96!important;letter-spacing:-.05em!important;text-transform:none!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline:before{content:none!important;display:table;margin:0 0 1rem;padding:.45rem .74rem;border-radius:999px;border:1px solid rgba(111,143,122,.28);background:rgba(255,255,255,.72);color:var(--bv-sage-deep);font-family:var(--bv-font-text);font-size:.82rem;line-height:1;font-weight:850;letter-spacing:.08em;text-transform:uppercase;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>p strong{color:var(--bv-ink)!important;font-size:clamp(1.05rem,1vw,1.25rem);line-height:1.55;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h2{font-family:var(--bv-font-title)!important;color:var(--bv-ink)!important;font-size:clamp(1.8rem,3vw,2.5rem)!important;line-height:1.1!important;letter-spacing:-.03em!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content .wp-show-posts,body.home.wp-child-theme-generatepress-child-biovida .entry-content .wp-block-latest-posts{margin-top:1.5rem!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content .wp-show-posts .wp-show-posts-single,body.home.wp-child-theme-generatepress-child-biovida .entry-content .generate-columns{border-radius:22px!important;border:1px solid var(--bv-border)!important;background:#fff!important;box-shadow:0 14px 34px rgba(38,50,56,.06)!important;overflow:hidden;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content a{color:var(--bv-sage-deep);}
@media(max-width:780px){
  .bv-template-trust{grid-template-columns:1fr;}
  .bv-template-trust__item{border-right:0;border-bottom:1px solid var(--bv-border);}
  .bv-method-panel__grid{grid-template-columns:1fr;}
  body.wp-child-theme-generatepress-child-biovida .author-box{grid-template-columns:1fr;text-align:left;}
  body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) .gb-container-ae74c347{padding:3rem 18px!important;}
}

/* Biovida corrective layer v1.0.4 */
:root{
  --bv-pink-logo:#ff5ba7;
  --bv-pink-deep:#c22972;
  --bv-leaf:#20b66a;
  --bv-leaf-deep:#0d754d;
  --bv-cream:#fbfaf6;
  --bv-white:#ffffff;
  --bv-dark:#182824;
  --bv-dark-2:#25352f;
  --bv-text:#17262b;
}
html,body,body.wp-child-theme-generatepress-child-biovida,
body.wp-child-theme-generatepress-child-biovida #page,
body.wp-child-theme-generatepress-child-biovida #content.site-content,
body.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.wp-child-theme-generatepress-child-biovida .site-main,
body.wp-child-theme-generatepress-child-biovida .inside-article{background:var(--bv-white)!important;}
body.wp-child-theme-generatepress-child-biovida .site-header{background:#fff!important;border-bottom:1px solid rgba(24,40,36,.06);}
body.wp-child-theme-generatepress-child-biovida .main-navigation .main-nav ul li a{color:#654052!important;font-weight:800;}
body.wp-child-theme-generatepress-child-biovida .main-navigation .main-nav ul li a:hover{color:var(--bv-pink-deep)!important;}
/* Home: dark readable hero using logo pink/green, no misplaced pill */
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child{
  max-width:1200px!important;margin:0 auto!important;border-radius:28px!important;min-height:clamp(430px,48vw,620px)!important;overflow:hidden!important;border:0!important;background:#1d2d28!important;box-shadow:0 24px 60px rgba(24,40,36,.18)!important;position:relative!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child:before{
  content:"";position:absolute;inset:0;background:linear-gradient(110deg,rgba(16,34,29,.88) 0%,rgba(24,40,36,.78) 42%,rgba(194,41,114,.18) 100%),linear-gradient(0deg,rgba(0,0,0,.28),rgba(0,0,0,.10));z-index:1;pointer-events:none;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child:after{
  content:"";position:absolute;right:-80px;bottom:-80px;width:360px;height:360px;border-radius:999px;background:radial-gradient(circle,rgba(255,91,167,.30),transparent 66%);z-index:1;pointer-events:none;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-inside-container,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-grid-wrapper,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-grid-column,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-container,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-inside-container>*{position:relative;z-index:2;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child p:first-of-type,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child p:first-of-type strong{display:none!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline{max-width:760px!important;color:#fff!important;text-shadow:0 3px 20px rgba(0,0,0,.22);font-size:clamp(2.45rem,5.4vw,5.7rem)!important;line-height:.96!important;letter-spacing:-.055em!important;text-transform:none!important;text-align:left!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline:before{content:none!important;display:block!important;width:max-content;margin:0 0 1rem!important;padding:.55rem .85rem;border-radius:999px;border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.12);color:#f7f1ea!important;font-family:var(--bv-font-text);font-size:.78rem!important;line-height:1;font-weight:850;letter-spacing:.12em;text-transform:uppercase;backdrop-filter:blur(8px);}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child img{filter:saturate(.95) contrast(1.02) brightness(.58)!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child+ p,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>p:first-of-type{max-width:900px;margin:2.4rem auto!important;text-align:center!important;color:var(--bv-dark)!important;letter-spacing:.08em!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>p strong{color:var(--bv-pink-deep)!important;font-weight:850!important;}
/* Home sections: brand-specific editorial blocks */
body.home.wp-child-theme-generatepress-child-biovida .entry-content h2{color:var(--bv-dark)!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h2:after{content:"";display:block;width:52px;height:4px;margin:.7rem 0 0;border-radius:99px;background:linear-gradient(90deg,var(--bv-pink-logo),var(--bv-leaf));}
body.home.wp-child-theme-generatepress-child-biovida .entry-content figure img{border-radius:28px!important;filter:saturate(1.02)!important;box-shadow:0 16px 40px rgba(24,40,36,.10)!important;}
body.home.wp-child-theme-generatepress-child-biovida .entry-content a{color:var(--bv-leaf-deep)!important;}
/* Article/archive cards: same visual language as /sante */
body.wp-child-theme-generatepress-child-biovida .generate-columns article,
body.wp-child-theme-generatepress-child-biovida article.type-post:not(.page),
body.wp-child-theme-generatepress-child-biovida .wp-show-posts-single{
  border:1px solid rgba(24,40,36,.08)!important;border-radius:22px!important;background:#fff!important;box-shadow:0 12px 32px rgba(24,40,36,.06)!important;overflow:hidden!important;
}
body.wp-child-theme-generatepress-child-biovida .generate-columns article img,
body.wp-child-theme-generatepress-child-biovida .wp-show-posts-single img{border-radius:0!important;}
body.wp-child-theme-generatepress-child-biovida .generate-columns article .inside-article,
body.wp-child-theme-generatepress-child-biovida .wp-show-posts-single .wp-show-posts-inner{padding:1rem!important;background:#fff!important;}
body.wp-child-theme-generatepress-child-biovida .generate-columns article h2,
body.wp-child-theme-generatepress-child-biovida .generate-columns article h3,
body.wp-child-theme-generatepress-child-biovida .wp-show-posts-entry-title{font-family:var(--bv-font-title)!important;color:var(--bv-dark)!important;line-height:1.12!important;}
/* Single/page body: no boxed cream gutters */
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) .gb-container-ae74c347{background:linear-gradient(135deg,#1d2d28 0%,#25352f 58%,#46283a 100%)!important;border-bottom:0!important;color:#fff!important;}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) .gb-container-ae74c347 .gb-inside-container:before{background:rgba(255,255,255,.10)!important;border-color:rgba(255,255,255,.22)!important;color:#fff!important;}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) .gb-container-ae74c347 h1.gb-headline{color:#fff!important;text-shadow:0 3px 20px rgba(0,0,0,.20);}
.bv-template-trust,.bv-method-panel,body.wp-child-theme-generatepress-child-biovida .author-box{border-color:rgba(24,40,36,.09)!important;box-shadow:0 14px 38px rgba(24,40,36,.07)!important;background:#fff!important;}
.bv-template-trust__item span,.bv-method-panel__kicker{color:var(--bv-pink-deep)!important;}
.bv-template-trust__note{background:linear-gradient(90deg,rgba(255,91,167,.08),rgba(32,182,106,.08))!important;}
.bv-method-panel__grid p{border-color:rgba(24,40,36,.08)!important;background:#fff!important;}
body.wp-child-theme-generatepress-child-biovida .entry-content h2:not(.gb-headline):after{background:linear-gradient(90deg,var(--bv-pink-logo),var(--bv-leaf))!important;}
/* Comments form: remove old pink button/textarea look */
body.wp-child-theme-generatepress-child-biovida #comments{max-width:var(--bv-template-max);margin:2.4rem auto!important;padding:1.4rem!important;border:1px solid rgba(24,40,36,.08);border-radius:24px;background:#fff!important;box-shadow:0 14px 34px rgba(24,40,36,.05);}
body.wp-child-theme-generatepress-child-biovida #comments textarea,
body.wp-child-theme-generatepress-child-biovida #comments input[type="text"],
body.wp-child-theme-generatepress-child-biovida #comments input[type="email"],
body.wp-child-theme-generatepress-child-biovida #comments input[type="url"]{border:1px solid rgba(24,40,36,.16)!important;border-radius:16px!important;background:#fff!important;box-shadow:none!important;}
body.wp-child-theme-generatepress-child-biovida #comments .submit,
body.wp-child-theme-generatepress-child-biovida input[type="submit"]{background:var(--bv-dark)!important;color:#fff!important;border-radius:999px!important;padding:.9rem 1.35rem!important;font-weight:850!important;border:0!important;box-shadow:0 10px 24px rgba(24,40,36,.14)!important;}
body.wp-child-theme-generatepress-child-biovida #comments .submit:hover{background:var(--bv-pink-deep)!important;}
/* Footer/disclaimer: integrated, not random boxed strip */
body.wp-child-theme-generatepress-child-biovida .site-footer,
body.wp-child-theme-generatepress-child-biovida .footer-widgets,
body.wp-child-theme-generatepress-child-biovida .site-info{background:#fff!important;}
body.wp-child-theme-generatepress-child-biovida .site-footer{border-top:1px solid rgba(24,40,36,.08)!important;margin-top:3rem!important;}
body.wp-child-theme-generatepress-child-biovida .footer-widgets{padding:3rem 0 2rem!important;}
body.wp-child-theme-generatepress-child-biovida .site-footer img[src*="biovia-affi"]{display:block!important;max-width:760px!important;width:calc(100% - 40px)!important;height:auto!important;margin:0 auto 1.2rem!important;padding:.75rem 1rem!important;border-radius:999px!important;background:var(--bv-cream)!important;border:1px solid rgba(24,40,36,.07)!important;box-shadow:none!important;}
body.wp-child-theme-generatepress-child-biovida .site-info{color:#53645e!important;font-size:.88rem!important;padding:1rem!important;}
body.wp-child-theme-generatepress-child-biovida .site-info a{color:var(--bv-leaf-deep)!important;}
body.wp-child-theme-generatepress-child-biovida .generate-back-to-top{background:var(--bv-dark)!important;border-radius:999px!important;}
@media(max-width:780px){
  body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child{border-radius:0!important;min-height:440px!important;}
  body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline{font-size:clamp(2.2rem,11vw,3.6rem)!important;}
  body.wp-child-theme-generatepress-child-biovida .site-footer img[src*="biovia-affi"]{border-radius:18px!important;width:calc(100% - 24px)!important;}
}

/* Biovida home hero correction v1.0.5 */
:root{
  --bv-hero-pink:#ef6f9f;
  --bv-hero-pink-deep:#c72d75;
  --bv-hero-green:#25ad69;
  --bv-hero-ink:#543044;
}
/* Home: return to the lighter lotus/wellness identity. v1.0.4 dark hero was too heavy. */
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child{
  max-width:1200px!important;
  min-height:clamp(500px,56vw,690px)!important;
  margin:0 auto clamp(2.2rem,4vw,3.4rem)!important;
  border-radius:18px 18px 34px 34px!important;
  overflow:hidden!important;
  border:0!important;
  background-image:
    linear-gradient(90deg,rgba(197,62,118,.66) 0%,rgba(239,111,159,.70) 45%,rgba(247,125,145,.78) 100%),
    url('https://www.biovida.fr/wp-content/uploads/2022/08/bien-etre.jpg')!important;
  background-size:cover!important;
  background-position:center center!important;
  box-shadow:none!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  position:relative!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:1!important;
  pointer-events:none!important;
  background:
    radial-gradient(circle at 50% 35%,rgba(255,255,255,.16),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(168,31,91,.12))!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child:after{
  content:""!important;
  position:absolute!important;
  z-index:2!important;
  left:-3%!important;
  right:-3%!important;
  bottom:-1px!important;
  height:clamp(78px,11vw,145px)!important;
  background:#fff!important;
  clip-path:ellipse(72% 66% at 56% 100%)!important;
  pointer-events:none!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-inside-container,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-grid-wrapper,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-grid-column,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-container,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-inside-container>*{
  position:relative!important;
  z-index:3!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-inside-container{
  width:100%!important;
  max-width:1000px!important;
  margin:0 auto!important;
  padding:clamp(3.4rem,7vw,6.2rem) 24px clamp(5.4rem,9vw,8rem)!important;
  text-align:center!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-grid-wrapper,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-grid-column,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-container,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-container>.gb-inside-container{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  margin:0 auto!important;
  padding:0!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child img{
  display:none!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child p:first-of-type,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child p:first-of-type strong{
  display:none!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline{
  display:block!important;
  max-width:980px!important;
  margin:0 auto!important;
  color:#fff!important;
  font-family:var(--bv-font-title)!important;
  font-size:clamp(2.65rem,5.4vw,5rem)!important;
  line-height:1.08!important;
  letter-spacing:.005em!important;
  text-align:center!important;
  text-transform:uppercase!important;
  text-shadow:0 2px 18px rgba(111,37,75,.22)!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline:before{
  content:none!important;
  display:block!important;
  width:auto!important;
  margin:0 auto clamp(.85rem,1.6vw,1.25rem)!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  color:rgba(255,255,255,.92)!important;
  font-family:var(--bv-font-text)!important;
  font-size:clamp(.92rem,1.3vw,1.22rem)!important;
  font-weight:850!important;
  line-height:1.2!important;
  letter-spacing:.34em!important;
  text-transform:uppercase!important;
  text-shadow:0 2px 12px rgba(111,37,75,.18)!important;
  backdrop-filter:none!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline:after{
  content:""!important;
  display:block!important;
  width:56px!important;
  height:2px!important;
  margin:clamp(.9rem,1.6vw,1.25rem) auto 0!important;
  background:rgba(255,255,255,.92)!important;
  border-radius:999px!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child+ p,
body.home.wp-child-theme-generatepress-child-biovida .entry-content>p:first-of-type{
  max-width:880px!important;
  margin:0 auto clamp(2rem,4vw,3rem)!important;
  text-align:center!important;
  color:var(--bv-hero-ink)!important;
  letter-spacing:.04em!important;
  line-height:1.65!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>p strong{
  color:var(--bv-hero-ink)!important;
  font-weight:850!important;
}
/* Keep the corrected global white background, but soften home cards with Biovida pink/green accents. */
body.home.wp-child-theme-generatepress-child-biovida .entry-content h2:after{
  background:linear-gradient(90deg,var(--bv-hero-pink),var(--bv-hero-green))!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content a{
  color:#157a4d!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content .wp-show-posts-single,
body.home.wp-child-theme-generatepress-child-biovida .entry-content .generate-columns article{
  border-color:rgba(199,45,117,.10)!important;
}
@media(max-width:780px){
  body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child{
    min-height:500px!important;
    border-radius:0 0 28px 28px!important;
    background-position:center center!important;
  }
  body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-inside-container{
    padding:3.6rem 18px 6.4rem!important;
  }
  body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline{
    font-size:clamp(2.05rem,9vw,3.25rem)!important;
    line-height:1.1!important;
    letter-spacing:0!important;
  }
  body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline:before{
    font-size:.78rem!important;
    letter-spacing:.22em!important;
  }
}

/* Biovida global harmonisation v1.0.6 */
:root{
  --bv-brand-pink:#ef6f9f;
  --bv-brand-pink-deep:#c72d75;
  --bv-brand-green:#25ad69;
  --bv-brand-green-deep:#157a4d;
  --bv-brand-ink:#392735;
  --bv-white:#ffffff;
}
/* Decision: white everywhere. No cream/grey gutters, no nested boxed background. */
html,
body.wp-child-theme-generatepress-child-biovida,
body.wp-child-theme-generatepress-child-biovida #page,
body.wp-child-theme-generatepress-child-biovida #content.site-content,
body.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.wp-child-theme-generatepress-child-biovida #main.site-main,
body.wp-child-theme-generatepress-child-biovida .site-main,
body.wp-child-theme-generatepress-child-biovida article,
body.wp-child-theme-generatepress-child-biovida .inside-article,
body.wp-child-theme-generatepress-child-biovida .entry-content,
body.wp-child-theme-generatepress-child-biovida .container,
body.wp-child-theme-generatepress-child-biovida .grid-container,
body.wp-child-theme-generatepress-child-biovida .separate-containers .inside-article,
body.wp-child-theme-generatepress-child-biovida .one-container .site-content{
  background-color:#fff!important;
  background:#fff!important;
}
body.wp-child-theme-generatepress-child-biovida #page,
body.wp-child-theme-generatepress-child-biovida #content.site-content{
  max-width:none!important;
  width:100%!important;
  margin-left:0!important;
  margin-right:0!important;
  padding-left:0!important;
  padding-right:0!important;
}
body.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.wp-child-theme-generatepress-child-biovida #main.site-main{
  max-width:1120px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:24px!important;
  padding-right:24px!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.archive.wp-child-theme-generatepress-child-biovida #main.site-main{
  max-width:1200px!important;
}
/* Remove fake content card wrapper feeling on singles/pages. Content itself carries rhythm, not nested beige boxes. */
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) article .inside-article{
  padding-top:clamp(1.4rem,2.6vw,2.4rem)!important;
  padding-bottom:3rem!important;
  box-shadow:none!important;
  border:0!important;
}
body.wp-child-theme-generatepress-child-biovida .entry-content>p,
body.wp-child-theme-generatepress-child-biovida .entry-content>ul,
body.wp-child-theme-generatepress-child-biovida .entry-content>ol,
body.wp-child-theme-generatepress-child-biovida .entry-content>h2,
body.wp-child-theme-generatepress-child-biovida .entry-content>h3,
body.wp-child-theme-generatepress-child-biovida .entry-content>h4,
body.wp-child-theme-generatepress-child-biovida .entry-content>figure,
body.wp-child-theme-generatepress-child-biovida .entry-content>.wp-block-image,
body.wp-child-theme-generatepress-child-biovida .entry-content>.wp-block-table,
body.wp-child-theme-generatepress-child-biovida .entry-content>.wp-block-quote,
body.wp-child-theme-generatepress-child-biovida .entry-content>.wp-block-list{
  max-width:900px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
/* Archive/category hero: shorter, darker, white text, still Biovida lotus. */
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347{
  min-height:clamp(330px,32vw,460px)!important;
  height:auto!important;
  padding:clamp(3.2rem,6vw,5rem) 24px!important;
  display:flex!important;
  align-items:center!important;
  background-image:
    linear-gradient(90deg,rgba(24,45,37,.80) 0%,rgba(90,42,70,.58) 54%,rgba(199,45,117,.42) 100%),
    url('https://www.biovida.fr/wp-content/uploads/2022/08/bien-etre.jpg')!important;
  background-size:cover!important;
  background-position:center center!important;
  color:#fff!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container{
  max-width:980px!important;
  width:100%!important;
  margin:0 auto!important;
  padding:0!important;
  color:#fff!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 h1,
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-headline,
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 p{
  color:#fff!important;
  text-shadow:0 2px 18px rgba(35,24,33,.22)!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 h1.gb-headline{
  font-size:clamp(2.35rem,4.6vw,4.5rem)!important;
  line-height:1.04!important;
  letter-spacing:-.035em!important;
  max-width:820px!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container:before{
  background:rgba(255,255,255,.13)!important;
  border-color:rgba(255,255,255,.28)!important;
  color:#fff!important;
}
/* Generic page/single hero: stop using the same lotus background everywhere. Keep Home + archives branded image; pages/posts get a clean branded gradient. */
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347{
  min-height:clamp(300px,30vw,430px)!important;
  padding:clamp(3rem,6vw,5.2rem) 24px!important;
  background-color:#24362f!important;
  background-size:cover!important;
  background-position:center center!important;
  color:#fff!important;
}
body.wp-child-theme-generatepress-child-biovida.single-post > .gb-container-ae74c347{
  background-image:
    linear-gradient(90deg,rgba(25,49,38,.72),rgba(57,39,53,.62)),
    var(--bv-featured-bg, linear-gradient(135deg,#193126,#392735))!important;
}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347 .gb-inside-container{
  max-width:980px!important;
  margin:0 auto!important;
  padding:0!important;
  color:#fff!important;
}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347 h1,
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347 .gb-headline,
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347 p,
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347 a{
  color:#fff!important;
}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347 h1.gb-headline{
  max-width:860px!important;
  font-size:clamp(2.25rem,4.7vw,4.6rem)!important;
  line-height:1.04!important;
  letter-spacing:-.035em!important;
  text-shadow:0 2px 18px rgba(35,24,33,.24)!important;
}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347 .gb-inside-container:before{
  background:rgba(255,255,255,.13)!important;
  border-color:rgba(255,255,255,.28)!important;
  color:#fff!important;
}
/* Trust/breadcrumb blocks: keep useful information, reduce nested-box effect. */
body.wp-child-theme-generatepress-child-biovida .rank-math-breadcrumb{
  max-width:900px!important;
  margin:0 auto 1.2rem!important;
  box-shadow:none!important;
  background:#fff!important;
  border:1px solid rgba(57,39,53,.12)!important;
}
.bv-template-trust{
  max-width:900px!important;
  margin:0 auto clamp(1.6rem,3vw,2.4rem)!important;
  box-shadow:none!important;
  border-color:rgba(57,39,53,.12)!important;
  border-radius:18px!important;
}
.bv-template-trust__note{
  background:#fff!important;
  border-top:1px solid rgba(57,39,53,.10)!important;
}
.bv-method-panel{
  max-width:900px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  background:#fff!important;
  box-shadow:none!important;
  border-color:rgba(57,39,53,.12)!important;
}
.bv-method-panel__grid p{background:#fff!important;}
/* Archive cards: white page, white cards, Biovida accents. */
body.archive.wp-child-theme-generatepress-child-biovida .site-main{
  padding-top:clamp(2rem,4vw,3rem)!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main:before,
body.category-sante.wp-child-theme-generatepress-child-biovida #main:before{
  color:var(--bv-brand-ink)!important;
  font-family:var(--bv-font-title)!important;
}
body.wp-child-theme-generatepress-child-biovida .generate-columns article,
body.wp-child-theme-generatepress-child-biovida .wp-show-posts-single{
  background:#fff!important;
  border-color:rgba(199,45,117,.14)!important;
  box-shadow:0 10px 28px rgba(57,39,53,.055)!important;
}
body.wp-child-theme-generatepress-child-biovida .generate-columns article h2 a,
body.wp-child-theme-generatepress-child-biovida .generate-columns article h3 a,
body.wp-child-theme-generatepress-child-biovida .wp-show-posts-entry-title a{
  color:var(--bv-brand-ink)!important;
}
body.wp-child-theme-generatepress-child-biovida a{color:var(--bv-brand-green-deep);}
body.wp-child-theme-generatepress-child-biovida .entry-content h2:not(.gb-headline):after,
body.home.wp-child-theme-generatepress-child-biovida .entry-content h2:after{
  background:linear-gradient(90deg,var(--bv-brand-pink),var(--bv-brand-green))!important;
}
/* Kill plugin/theme grey islands unless they are intentional product/card surfaces. */
body.wp-child-theme-generatepress-child-biovida .comments-area,
body.wp-child-theme-generatepress-child-biovida #comments,
body.wp-child-theme-generatepress-child-biovida .site-footer,
body.wp-child-theme-generatepress-child-biovida .footer-widgets,
body.wp-child-theme-generatepress-child-biovida .site-info,
body.wp-child-theme-generatepress-child-biovida .widget,
body.wp-child-theme-generatepress-child-biovida .inside-footer-widgets{
  background:#fff!important;
}
@media(max-width:780px){
  body.wp-child-theme-generatepress-child-biovida #primary.content-area,
  body.wp-child-theme-generatepress-child-biovida #main.site-main{
    padding-left:16px!important;
    padding-right:16px!important;
  }
  body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347,
  body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347{
    min-height:300px!important;
    padding:2.8rem 18px!important;
  }
  body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 h1.gb-headline,
  body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) > .gb-container-ae74c347 h1.gb-headline{
    font-size:clamp(2rem,9vw,3.2rem)!important;
  }
  .bv-template-trust{grid-template-columns:1fr!important;}
}

/* Biovida hard global reset and archive alignment v1.0.7 */
:root{
  --bv-pink:#ef6f9f;
  --bv-pink-deep:#c72d75;
  --bv-green:#25ad69;
  --bv-green-deep:#157a4d;
  --bv-ink:#392735;
  --bv-soft-border:rgba(57,39,53,.12);
}
/* Loaded after GP Premium. White means white: no #fbfaf6/#f9f9f9 gutters. */
html,
body,
body.wp-child-theme-generatepress-child-biovida,
body.wp-child-theme-generatepress-child-biovida #page,
body.wp-child-theme-generatepress-child-biovida #content,
body.wp-child-theme-generatepress-child-biovida #content.site-content,
body.wp-child-theme-generatepress-child-biovida #primary,
body.wp-child-theme-generatepress-child-biovida #main,
body.wp-child-theme-generatepress-child-biovida .site,
body.wp-child-theme-generatepress-child-biovida .site-content,
body.wp-child-theme-generatepress-child-biovida .content-area,
body.wp-child-theme-generatepress-child-biovida .site-main,
body.wp-child-theme-generatepress-child-biovida .grid-container,
body.wp-child-theme-generatepress-child-biovida .container,
body.wp-child-theme-generatepress-child-biovida .inside-article,
body.wp-child-theme-generatepress-child-biovida .entry-content,
body.wp-child-theme-generatepress-child-biovida .comments-area,
body.wp-child-theme-generatepress-child-biovida .site-footer,
body.wp-child-theme-generatepress-child-biovida .footer-widgets,
body.wp-child-theme-generatepress-child-biovida .inside-footer-widgets,
body.wp-child-theme-generatepress-child-biovida .site-info{
  background:#fff!important;
  background-color:#fff!important;
}
body.wp-child-theme-generatepress-child-biovida #page,
body.wp-child-theme-generatepress-child-biovida #content.site-content{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  padding-left:0!important;
  padding-right:0!important;
}
body.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.wp-child-theme-generatepress-child-biovida #main.site-main{
  max-width:1120px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:24px!important;
  padding-right:24px!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.archive.wp-child-theme-generatepress-child-biovida #main.site-main,
body.blog.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.blog.wp-child-theme-generatepress-child-biovida #main.site-main,
body.author.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.author.wp-child-theme-generatepress-child-biovida #main.site-main{
  max-width:1200px!important;
}
/* Universal archive/blog/author hero aligned on /sante. */
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347,
body.blog.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347,
body.author.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347{
  min-height:clamp(300px,30vw,420px)!important;
  height:auto!important;
  padding:clamp(3rem,5.5vw,4.7rem) 24px!important;
  display:flex!important;
  align-items:center!important;
  background-image:linear-gradient(90deg,rgba(24,45,37,.84) 0%,rgba(70,38,58,.70) 54%,rgba(199,45,117,.50) 100%),url('https://www.biovida.fr/wp-content/uploads/2022/08/bien-etre.jpg')!important;
  background-size:cover!important;
  background-position:center center!important;
  color:#fff!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 *,
body.blog.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 *,
body.author.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 *{
  color:#fff!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 h1,
body.blog.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 h1,
body.author.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 h1{
  max-width:840px!important;
  color:#fff!important;
  font-family:var(--bv-font-title)!important;
  font-size:clamp(2.25rem,4.4vw,4.25rem)!important;
  line-height:1.04!important;
  letter-spacing:-.035em!important;
  text-transform:none!important;
  text-shadow:0 2px 18px rgba(35,24,33,.26)!important;
}
body.category-sante.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 h1,
body.category-sante.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 p,
body.category-sante.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-headline,
body.category-sante.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container,
body.category-sante.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container:before{
  color:#fff!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container,
body.blog.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container,
body.author.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container{
  max-width:980px!important;
  width:100%!important;
  margin:0 auto!important;
  padding:0!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container:before,
body.blog.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container:before,
body.author.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 .gb-inside-container:before{
  background:rgba(255,255,255,.14)!important;
  border:1px solid rgba(255,255,255,.28)!important;
  color:#fff!important;
}
/* If an archive has no GB hero block, create a consistent heading area from the native page-header. */
body.archive.wp-child-theme-generatepress-child-biovida .page-header,
body.blog.wp-child-theme-generatepress-child-biovida .page-header,
body.author.wp-child-theme-generatepress-child-biovida .page-header{
  max-width:none!important;
  margin:0 0 clamp(2rem,4vw,3rem)!important;
  padding:clamp(3rem,5.5vw,4.7rem) max(24px,calc((100vw - 980px)/2))!important;
  background-image:linear-gradient(90deg,rgba(24,45,37,.84),rgba(70,38,58,.70),rgba(199,45,117,.50)),url('https://www.biovida.fr/wp-content/uploads/2022/08/bien-etre.jpg')!important;
  background-size:cover!important;
  background-position:center center!important;
  color:#fff!important;
  border:0!important;
}
body.archive.wp-child-theme-generatepress-child-biovida .page-header h1,
body.blog.wp-child-theme-generatepress-child-biovida .page-header h1,
body.author.wp-child-theme-generatepress-child-biovida .page-header h1{color:#fff!important;font-family:var(--bv-font-title)!important;font-size:clamp(2.25rem,4.4vw,4.25rem)!important;line-height:1.04!important;text-transform:none!important;}
/* Replace unclear /sante section label with a clearer editorial label. */
body.category-sante.wp-child-theme-generatepress-child-biovida #main:before{content:none!important;}
body.archive.wp-child-theme-generatepress-child-biovida #main:before,
body.blog.wp-child-theme-generatepress-child-biovida #main:before,
body.author.wp-child-theme-generatepress-child-biovida #main:before{
  display:block!important;
  margin:0 0 1.6rem!important;
  color:var(--bv-ink)!important;
  font-family:var(--bv-font-title)!important;
  font-size:clamp(1.8rem,3vw,2.45rem)!important;
  line-height:1.08!important;
  letter-spacing:-.03em!important;
}
body.blog.wp-child-theme-generatepress-child-biovida #main:before{content:none!important;}
body.author.wp-child-theme-generatepress-child-biovida #main:before{content:none!important;}
body.archive.wp-child-theme-generatepress-child-biovida:not(.category-sante) #main:before{content:none!important;}
body.archive.wp-child-theme-generatepress-child-biovida #main:before:after,
body.blog.wp-child-theme-generatepress-child-biovida #main:before:after,
body.author.wp-child-theme-generatepress-child-biovida #main:before:after{content:"";display:block;width:56px;height:4px;margin:.72rem 0 0;border-radius:999px;background:linear-gradient(90deg,var(--bv-pink),var(--bv-green));}
/* Cards: spacing, excerpt clamp, cleaner blog/archive rhythm. */
body.archive.wp-child-theme-generatepress-child-biovida .generate-columns-container,
body.blog.wp-child-theme-generatepress-child-biovida .generate-columns-container,
body.author.wp-child-theme-generatepress-child-biovida .generate-columns-container{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:clamp(1.25rem,2vw,1.8rem)!important;
  margin:0!important;
  padding:0 0 3rem!important;
}
body.archive.wp-child-theme-generatepress-child-biovida .generate-columns,
body.blog.wp-child-theme-generatepress-child-biovida .generate-columns,
body.author.wp-child-theme-generatepress-child-biovida .generate-columns{
  width:100%!important;
  padding:0!important;
  margin:0!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main article,
body.blog.wp-child-theme-generatepress-child-biovida #main article,
body.author.wp-child-theme-generatepress-child-biovida #main article{
  width:100%!important;
  min-width:0!important;
  background:#fff!important;
  border:1px solid rgba(199,45,117,.14)!important;
  border-radius:24px!important;
  box-shadow:0 10px 28px rgba(57,39,53,.055)!important;
  overflow:hidden!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main article .inside-article,
body.blog.wp-child-theme-generatepress-child-biovida #main article .inside-article,
body.author.wp-child-theme-generatepress-child-biovida #main article .inside-article{
  padding:clamp(1rem,2vw,1.35rem)!important;
  display:block!important;
  background:#fff!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main article img,
body.blog.wp-child-theme-generatepress-child-biovida #main article img,
body.author.wp-child-theme-generatepress-child-biovida #main article img{
  aspect-ratio:16/9!important;
  width:100%!important;
  height:auto!important;
  object-fit:cover!important;
  border-radius:18px!important;
  margin-bottom:1rem!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main article h2,
body.blog.wp-child-theme-generatepress-child-biovida #main article h2,
body.author.wp-child-theme-generatepress-child-biovida #main article h2{
  margin:.2rem 0 .55rem!important;
  font-family:var(--bv-font-title)!important;
  font-size:clamp(1.18rem,1.6vw,1.45rem)!important;
  line-height:1.16!important;
  letter-spacing:-.018em!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main article h2 a,
body.blog.wp-child-theme-generatepress-child-biovida #main article h2 a,
body.author.wp-child-theme-generatepress-child-biovida #main article h2 a{color:var(--bv-ink)!important;text-decoration:none!important;}
body.archive.wp-child-theme-generatepress-child-biovida #main article .entry-summary,
body.blog.wp-child-theme-generatepress-child-biovida #main article .entry-summary,
body.author.wp-child-theme-generatepress-child-biovida #main article .entry-summary,
body.archive.wp-child-theme-generatepress-child-biovida #main article .entry-content,
body.blog.wp-child-theme-generatepress-child-biovida #main article .entry-content,
body.author.wp-child-theme-generatepress-child-biovida #main article .entry-content{
  margin-top:.7rem!important;
  color:#44554f!important;
  font-size:.96rem!important;
  line-height:1.55!important;
  display:-webkit-box!important;
  -webkit-line-clamp:3!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  max-height:4.75em!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main article .entry-summary p,
body.blog.wp-child-theme-generatepress-child-biovida #main article .entry-summary p,
body.author.wp-child-theme-generatepress-child-biovida #main article .entry-summary p,
body.archive.wp-child-theme-generatepress-child-biovida #main article .entry-content p,
body.blog.wp-child-theme-generatepress-child-biovida #main article .entry-content p,
body.author.wp-child-theme-generatepress-child-biovida #main article .entry-content p{
  margin:0!important;
  max-width:none!important;
}
/* Singles/pages: white content, no grey islands. */
body.single.wp-child-theme-generatepress-child-biovida #content,
body.page.wp-child-theme-generatepress-child-biovida #content,
body.single.wp-child-theme-generatepress-child-biovida .inside-article,
body.page.wp-child-theme-generatepress-child-biovida .inside-article{
  background:#fff!important;
}
body.single.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > .gb-container-ae74c347{
  min-height:clamp(300px,30vw,420px)!important;
  background-image:radial-gradient(circle at 18% 20%,rgba(239,111,159,.22),transparent 34%),radial-gradient(circle at 88% 72%,rgba(37,173,105,.18),transparent 34%),linear-gradient(135deg,#193126 0%,#392735 58%,#5a2a46 100%)!important;
}
body.single.wp-child-theme-generatepress-child-biovida > .gb-container-ae74c347 *,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > .gb-container-ae74c347 *{color:#fff!important;}
/* Footer copyright links */
body.wp-child-theme-generatepress-child-biovida .site-info,
body.wp-child-theme-generatepress-child-biovida .site-info a{color:#53645e!important;}
body.wp-child-theme-generatepress-child-biovida .site-info a{font-weight:800!important;text-decoration:none!important;}
@media(max-width:900px){
  body.archive.wp-child-theme-generatepress-child-biovida .generate-columns-container,
  body.blog.wp-child-theme-generatepress-child-biovida .generate-columns-container,
  body.author.wp-child-theme-generatepress-child-biovida .generate-columns-container{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:640px){
  body.archive.wp-child-theme-generatepress-child-biovida .generate-columns-container,
  body.blog.wp-child-theme-generatepress-child-biovida .generate-columns-container,
  body.author.wp-child-theme-generatepress-child-biovida .generate-columns-container{grid-template-columns:1fr!important;}
  body.wp-child-theme-generatepress-child-biovida #primary.content-area,
  body.wp-child-theme-generatepress-child-biovida #main.site-main{padding-left:16px!important;padding-right:16px!important;}
}

/* Biovida targeted fixes v1.0.8 */
/* Do not style WordPress admin bar. Previous broad reset touched body > div. */
#wpadminbar,#wpadminbar *{background:initial!important;color:initial!important;box-shadow:initial!important;}
#wpadminbar{background:#1d2327!important;color:#f0f0f1!important;}
#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#f0f0f1!important;}
#wpadminbar .ab-icon:before,#wpadminbar .ab-item:before,#wpadminbar .ab-item:after{color:#a7aaad!important;}
/* White everywhere on public site, with selectors matching the old more-specific generated rules. */
html:not(.wp-toolbar),
body.wp-child-theme-generatepress-child-biovida,
body.home.wp-child-theme-generatepress-child-biovida,
body.archive.wp-child-theme-generatepress-child-biovida,
body.blog.wp-child-theme-generatepress-child-biovida,
body.author.wp-child-theme-generatepress-child-biovida,
body.single.wp-child-theme-generatepress-child-biovida,
body.page.wp-child-theme-generatepress-child-biovida,
body.wp-child-theme-generatepress-child-biovida #page.site,
body.wp-child-theme-generatepress-child-biovida #content.site-content,
body.home.wp-child-theme-generatepress-child-biovida #content.site-content,
body.archive.wp-child-theme-generatepress-child-biovida #content.site-content,
body.blog.wp-child-theme-generatepress-child-biovida #content.site-content,
body.author.wp-child-theme-generatepress-child-biovida #content.site-content,
body.single.wp-child-theme-generatepress-child-biovida #content.site-content,
body.page.wp-child-theme-generatepress-child-biovida #content.site-content,
body.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.wp-child-theme-generatepress-child-biovida #main.site-main,
body.wp-child-theme-generatepress-child-biovida article,
body.wp-child-theme-generatepress-child-biovida .inside-article,
body.wp-child-theme-generatepress-child-biovida .entry-content{
  background:#ffffff!important;
  background-color:#ffffff!important;
}
body.wp-child-theme-generatepress-child-biovida #content.site-content,
body.home.wp-child-theme-generatepress-child-biovida #content.site-content,
body.archive.wp-child-theme-generatepress-child-biovida #content.site-content,
body.blog.wp-child-theme-generatepress-child-biovida #content.site-content,
body.author.wp-child-theme-generatepress-child-biovida #content.site-content,
body.single.wp-child-theme-generatepress-child-biovida #content.site-content,
body.page.wp-child-theme-generatepress-child-biovida #content.site-content{
  max-width:none!important;
  width:100%!important;
  margin-left:0!important;
  margin-right:0!important;
  padding-left:0!important;
  padding-right:0!important;
}
/* /sante and all archive heroes: same readable model. */
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
body.category-sante.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
body.category-bien-etre.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
body.category-conseils-beaute.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347{
  position:relative!important;
  min-height:clamp(300px,29vw,410px)!important;
  padding:clamp(3rem,5vw,4.4rem) 24px!important;
  display:flex!important;
  align-items:center!important;
  background-image:linear-gradient(90deg,rgba(28,46,39,.88) 0%,rgba(68,39,58,.76) 55%,rgba(199,45,117,.56) 100%),url('https://www.biovida.fr/wp-content/uploads/2022/08/bien-etre.jpg')!important;
  background-size:cover!important;
  background-position:center center!important;
  color:#fff!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container{
  max-width:980px!important;
  width:100%!important;
  margin:0 auto!important;
  padding:0!important;
  color:#fff!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before{
  content:none!important;
  display:inline-flex!important;
  margin:0 0 1rem!important;
  padding:.45rem .78rem!important;
  border-radius:999px!important;
  border:1px solid rgba(255,255,255,.28)!important;
  background:rgba(255,255,255,.13)!important;
  color:#fff!important;
  font:850 .78rem/1 var(--bv-font-text)!important;
  letter-spacing:.10em!important;
  text-transform:uppercase!important;
}
body.category-sante.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before{content:none!important;}
body.category-conseils-beaute.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before{content:none!important;}
body.category-bien-etre.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before{content:none!important;}
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before{content:none!important;}
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before{content:none!important;}
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1.gb-headline,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1{
  max-width:850px!important;
  color:#fff!important;
  font-family:var(--bv-font-title)!important;
  font-size:clamp(2.2rem,4.3vw,4.15rem)!important;
  line-height:1.04!important;
  letter-spacing:-.035em!important;
  text-transform:none!important;
  text-shadow:0 2px 18px rgba(35,24,33,.30)!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1.gb-headline:after,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1:after,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1:after{
  content:none!important;
  display:block!important;
  max-width:680px!important;
  margin:1rem 0 0!important;
  color:rgba(255,255,255,.90)!important;
  font-family:var(--bv-font-text)!important;
  font-size:clamp(1rem,1.35vw,1.18rem)!important;
  font-weight:500!important;
  line-height:1.55!important;
  letter-spacing:0!important;
  text-transform:none!important;
  text-shadow:none!important;
}
body.category-sante.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1.gb-headline:after{content:none!important;}
body.category-conseils-beaute.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1.gb-headline:after{content:none!important;}
body.category-bien-etre.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1.gb-headline:after{content:none!important;}
/* If native archive page-header is used instead of GB hero, align it too. */
body.archive.wp-child-theme-generatepress-child-biovida .page-header,
body.blog.wp-child-theme-generatepress-child-biovida .page-header,
body.author.wp-child-theme-generatepress-child-biovida .page-header{
  background-image:linear-gradient(90deg,rgba(28,46,39,.88),rgba(68,39,58,.76),rgba(199,45,117,.56)),url('https://www.biovida.fr/wp-content/uploads/2022/08/bien-etre.jpg')!important;
  color:#fff!important;
}
body.archive.wp-child-theme-generatepress-child-biovida .page-header *,
body.blog.wp-child-theme-generatepress-child-biovida .page-header *,
body.author.wp-child-theme-generatepress-child-biovida .page-header *{color:#fff!important;}
/* Single/article/page hero: dark overlay layer over featured image so white title is readable. Covers generated GB hero classes like c90f7c4e. */
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"],
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]{
  position:relative!important;
  overflow:hidden!important;
  min-height:clamp(320px,34vw,470px)!important;
  background-color:#24362f!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"]:before,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:1!important;
  pointer-events:none!important;
  background:linear-gradient(90deg,rgba(18,34,29,.72) 0%,rgba(48,35,45,.58) 52%,rgba(111,47,79,.52) 100%)!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"]:after,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]:after{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:2!important;
  pointer-events:none!important;
  background:radial-gradient(circle at 82% 18%,rgba(239,111,159,.20),transparent 36%),linear-gradient(180deg,rgba(0,0,0,.14),rgba(0,0,0,.20))!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] .gb-inside-container,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] .gb-inside-container{
  position:relative!important;
  z-index:3!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] h1,
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] p,
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] a,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] h1,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] p,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] a{
  color:#fff!important;
  text-shadow:0 2px 18px rgba(0,0,0,.28)!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] a,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] a{font-weight:800!important;}
/* Keep archive/blog card rhythm and clamp. */
body.blog.wp-child-theme-generatepress-child-biovida #main article .entry-summary,
body.archive.wp-child-theme-generatepress-child-biovida #main article .entry-summary,
body.author.wp-child-theme-generatepress-child-biovida #main article .entry-summary,
body.blog.wp-child-theme-generatepress-child-biovida #main article .entry-content,
body.archive.wp-child-theme-generatepress-child-biovida #main article .entry-content,
body.author.wp-child-theme-generatepress-child-biovida #main article .entry-content{
  display:-webkit-box!important;
  -webkit-line-clamp:3!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  max-height:4.75em!important;
}
@media(max-width:640px){
  body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
  body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
  body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347{min-height:290px!important;padding:2.7rem 18px!important;}
}

/* Biovida archive SEO/html and layout fixes v1.0.9 */
/* Public backgrounds: explicit white, and neutralize old var(--bv-bg) rules without touching admin bar. */
:root{--bv-bg:#ffffff!important;}
body.wp-child-theme-generatepress-child-biovida,
body.wp-child-theme-generatepress-child-biovida #page,
body.wp-child-theme-generatepress-child-biovida #content.site-content,
body.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.wp-child-theme-generatepress-child-biovida #main.site-main,
body.wp-child-theme-generatepress-child-biovida .inside-article,
body.wp-child-theme-generatepress-child-biovida .entry-content{
  background:#ffffff!important;
  background-color:#ffffff!important;
}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) #content.site-content,
body.single-post.wp-child-theme-generatepress-child-biovida #content.site-content,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) #content.site-content,
body.archive.wp-child-theme-generatepress-child-biovida #content.site-content,
body.blog.wp-child-theme-generatepress-child-biovida #content.site-content,
body.author.wp-child-theme-generatepress-child-biovida #content.site-content,
body.home.wp-child-theme-generatepress-child-biovida #content.site-content{
  background:#ffffff!important;
  background-color:#ffffff!important;
}
/* Never inject SEO copy via CSS. Disable old pseudo-texts/badges created by prior iterations. */
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1.gb-headline:after,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1:after,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1:after,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before{
  content:none!important;
  display:none!important;
}
/* Real server-rendered HTML inserted by PHP. */
.bv-archive-kicker{
  display:inline-flex!important;
  margin:0 0 1rem!important;
  padding:.45rem .78rem!important;
  border-radius:999px!important;
  border:1px solid rgba(255,255,255,.28)!important;
  background:rgba(255,255,255,.13)!important;
  color:#ffffff!important;
  font:850 .78rem/1 var(--bv-font-text)!important;
  letter-spacing:.10em!important;
  text-transform:uppercase!important;
}
.bv-archive-hero-desc{
  display:block!important;
  max-width:680px!important;
  margin:1rem 0 0!important;
  color:rgba(255,255,255,.92)!important;
  font-family:var(--bv-font-text)!important;
  font-size:clamp(1rem,1.35vw,1.18rem)!important;
  font-weight:500!important;
  line-height:1.55!important;
  text-shadow:none!important;
}
/* Archive hero spacing: articles closer to hero, centered grid. */
body.archive.wp-child-theme-generatepress-child-biovida #content.site-content,
body.blog.wp-child-theme-generatepress-child-biovida #content.site-content,
body.author.wp-child-theme-generatepress-child-biovida #content.site-content{
  padding-top:0!important;
  padding-bottom:0!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.blog.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.author.wp-child-theme-generatepress-child-biovida #primary.content-area{
  max-width:1200px!important;
  width:100%!important;
  margin:0 auto!important;
  padding:clamp(2rem,3vw,2.7rem) 24px 4rem!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main.site-main,
body.blog.wp-child-theme-generatepress-child-biovida #main.site-main,
body.author.wp-child-theme-generatepress-child-biovida #main.site-main{
  max-width:1200px!important;
  width:100%!important;
  margin:0 auto!important;
  padding:0!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main:before,
body.blog.wp-child-theme-generatepress-child-biovida #main:before,
body.author.wp-child-theme-generatepress-child-biovida #main:before{
  margin:0 0 clamp(1.2rem,2vw,1.7rem)!important;
}
body.archive.wp-child-theme-generatepress-child-biovida .generate-columns-container,
body.blog.wp-child-theme-generatepress-child-biovida .generate-columns-container,
body.author.wp-child-theme-generatepress-child-biovida .generate-columns-container{
  max-width:1200px!important;
  width:100%!important;
  margin:0 auto!important;
  justify-content:center!important;
  align-items:stretch!important;
}
body.archive.wp-child-theme-generatepress-child-biovida .generate-columns,
body.blog.wp-child-theme-generatepress-child-biovida .generate-columns,
body.author.wp-child-theme-generatepress-child-biovida .generate-columns{
  float:none!important;
}
/* Single/page hero alignment: ensure all articles/pages have the badge and same title styling as guide pages. */
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] .gb-inside-container:before,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] .gb-inside-container:before{
  content:none!important;
  display:inline-flex!important;
  margin:0 0 1rem!important;
  padding:.45rem .78rem!important;
  border-radius:999px!important;
  border:1px solid rgba(255,255,255,.28)!important;
  background:rgba(255,255,255,.13)!important;
  color:#fff!important;
  font:850 .78rem/1 var(--bv-font-text)!important;
  letter-spacing:.10em!important;
  text-transform:uppercase!important;
}
body.page-id-5064.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] .gb-inside-container:before{content:none!important;}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] h1,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] h1{
  max-width:900px!important;
  font-family:var(--bv-font-title)!important;
  font-size:clamp(2.25rem,4.7vw,4.6rem)!important;
  line-height:1.04!important;
  letter-spacing:-.035em!important;
  color:#fff!important;
  text-transform:none!important;
}
@media(max-width:640px){
  body.archive.wp-child-theme-generatepress-child-biovida #primary.content-area,
  body.blog.wp-child-theme-generatepress-child-biovida #primary.content-area,
  body.author.wp-child-theme-generatepress-child-biovida #primary.content-area{padding:1.6rem 16px 3rem!important;}
}

/* Biovida no-css-text final cleanup v1.0.10 */
/* Real HTML classes injected by PHP; CSS only styles them. */
.bv-archive-kicker,.bv-single-kicker{
  display:inline-flex!important;
  margin:0 0 1rem!important;
  padding:.45rem .78rem!important;
  border-radius:999px!important;
  border:1px solid rgba(255,255,255,.28)!important;
  background:rgba(255,255,255,.13)!important;
  color:#ffffff!important;
  font:850 .78rem/1 var(--bv-font-text)!important;
  letter-spacing:.10em!important;
  text-transform:uppercase!important;
}
.bv-archive-hero-desc{
  display:block!important;
  max-width:700px!important;
  margin:1rem 0 0!important;
  color:rgba(255,255,255,.92)!important;
  font-family:var(--bv-font-text)!important;
  font-size:clamp(1rem,1.35vw,1.18rem)!important;
  font-weight:500!important;
  line-height:1.55!important;
}
/* Disable all old pseudo copy locations explicitly. */
body.category-sante.category-77 .gb-container-ae74c347 .gb-inside-container::before,
body.category-sante.category-77 .gb-container-ae74c347 .gb-inside-container::after,
body.category-sante.category-77 .gb-container-ae74c347 h1.gb-headline::after,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1.gb-headline:after,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1:after,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1:after,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container:before,
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) .gb-container-ae74c347 .gb-inside-container:before,
body.page-id-5064 .gb-container-ae74c347 .gb-inside-container:before,
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline:before{
  content:none!important;
  display:none!important;
}
/* Keep category/article grids close and centered. */
body.archive.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.blog.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.author.wp-child-theme-generatepress-child-biovida #primary.content-area{
  max-width:1200px!important;
  margin:0 auto!important;
  padding:clamp(1.7rem,2.6vw,2.3rem) 24px 4rem!important;
}
body.archive.wp-child-theme-generatepress-child-biovida .generate-columns-container,
body.blog.wp-child-theme-generatepress-child-biovida .generate-columns-container,
body.author.wp-child-theme-generatepress-child-biovida .generate-columns-container{
  max-width:1200px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
/* Last beige killer, scoped and explicit. */
:root{--bv-bg:#ffffff!important;}
body.wp-child-theme-generatepress-child-biovida:not(.home):not(.archive) #content.site-content,
body.single-post.wp-child-theme-generatepress-child-biovida #content.site-content,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) #content.site-content,
body.archive.wp-child-theme-generatepress-child-biovida #content.site-content,
body.blog.wp-child-theme-generatepress-child-biovida #content.site-content,
body.author.wp-child-theme-generatepress-child-biovida #content.site-content,
body.home.wp-child-theme-generatepress-child-biovida #content.site-content,
body.wp-child-theme-generatepress-child-biovida #page.site,
body.wp-child-theme-generatepress-child-biovida .inside-article{
  background:#ffffff!important;
  background-color:#ffffff!important;
}

/* Biovida readability and hero image restoration v1.0.11 */
/* Decorative icon only: no textual SEO content injected with CSS. */
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline::before{
  content:""!important;
  display:block!important;
  width:82px!important;
  height:82px!important;
  margin:0 auto clamp(.9rem,1.5vw,1.2rem)!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent url('https://www.biovida.fr/wp-content/uploads/2018/08/cropped-logo.png') center top/contain no-repeat!important;
  filter:drop-shadow(0 6px 14px rgba(93,36,74,.20))!important;
  text-indent:-9999px!important;
  overflow:hidden!important;
}
/* Archive desc is real HTML (.bv-archive-hero-desc). Let it use the hero container width on desktop. */
body.archive.wp-child-theme-generatepress-child-biovida .bv-archive-hero-desc,
body.blog.wp-child-theme-generatepress-child-biovida .bv-archive-hero-desc,
body.author.wp-child-theme-generatepress-child-biovida .bv-archive-hero-desc{
  max-width:min(100%,980px)!important;
  width:100%!important;
  margin:1rem 0 0!important;
  color:rgba(255,255,255,.92)!important;
}
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container{
  max-width:1100px!important;
}
/* Excerpts/cards: too much truncation hurt readability. Clamp only after a useful preview. */
body.blog.wp-child-theme-generatepress-child-biovida #main article .entry-summary,
body.archive.wp-child-theme-generatepress-child-biovida #main article .entry-summary,
body.author.wp-child-theme-generatepress-child-biovida #main article .entry-summary,
body.blog.wp-child-theme-generatepress-child-biovida #main article .entry-content,
body.archive.wp-child-theme-generatepress-child-biovida #main article .entry-content,
body.author.wp-child-theme-generatepress-child-biovida #main article .entry-content{
  -webkit-line-clamp:6!important;
  max-height:9.6em!important;
  line-height:1.6!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main article,
body.blog.wp-child-theme-generatepress-child-biovida #main article,
body.author.wp-child-theme-generatepress-child-biovida #main article{
  min-height:unset!important;
}
/* Preserve hero images on articles/pages. Earlier layers sometimes replaced image backgrounds with a flat gradient. */
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"],
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]{
  background-size:cover!important;
  background-position:center center!important;
  background-blend-mode:normal!important;
}
/* Exception: only if there is no generated background image, the browser keeps the fallback color. Do not force a gradient image here. */
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"]::before,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]::before{
  background:linear-gradient(90deg,rgba(18,34,29,.58) 0%,rgba(48,35,45,.45) 52%,rgba(111,47,79,.38) 100%)!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"]::after,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]::after{
  background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.14))!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] .gb-inside-container,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] .gb-inside-container{
  max-width:1120px!important;
  width:100%!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] h1,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] h1,
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] h1.gb-headline,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] h1.gb-headline{
  max-width:1120px!important;
  width:100%!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida .bv-single-kicker,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .bv-single-kicker{
  margin-left:0!important;
}
@media(max-width:780px){
  body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline::before{width:62px!important;height:62px!important;}
  body.archive.wp-child-theme-generatepress-child-biovida .bv-archive-hero-desc,
  body.blog.wp-child-theme-generatepress-child-biovida .bv-archive-hero-desc,
  body.author.wp-child-theme-generatepress-child-biovida .bv-archive-hero-desc{max-width:100%!important;}
}
/* Biovida v1.0.12 - corrections Home, heroes, archive width, badges, author cards */
/* Home: restore previous hierarchy with real HTML titleline injected by PHP. */
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline::before{
  content:none!important;
  display:none!important;
  background:none!important;
}
body.home.wp-child-theme-generatepress-child-biovida .bv-home-hero-titleline{
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:clamp(.65rem,1.2vw,.95rem)!important;
  margin:0 auto clamp(.8rem,1.5vw,1.15rem)!important;
  text-align:center!important;
  color:#fff!important;
  position:relative!important;
  z-index:4!important;
}
body.home.wp-child-theme-generatepress-child-biovida .bv-home-hero-zen{
  display:block!important;
  width:72px!important;
  height:72px!important;
  background-color:rgba(255,255,255,.96)!important;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23000' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='48' cy='23' r='10'/%3E%3Cpath d='M24 48c5-16 14-24 24-24s19 8 24 24'/%3E%3Cpath d='M18 57c9-7 20-10 30-10s21 3 30 10'/%3E%3Cpath d='M29 70c9 5 29 5 38 0'/%3E%3Cpath d='M33 39c-9 1-16 7-19 16'/%3E%3Cpath d='M63 39c9 1 16 7 19 16'/%3E%3Cpath d='M34 83h28'/%3E%3Cpath d='M48 33v22'/%3E%3Cpath d='M37 55l11 11 11-11'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat!important;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23000' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='48' cy='23' r='10'/%3E%3Cpath d='M24 48c5-16 14-24 24-24s19 8 24 24'/%3E%3Cpath d='M18 57c9-7 20-10 30-10s21 3 30 10'/%3E%3Cpath d='M29 70c9 5 29 5 38 0'/%3E%3Cpath d='M33 39c-9 1-16 7-19 16'/%3E%3Cpath d='M63 39c9 1 16 7 19 16'/%3E%3Cpath d='M34 83h28'/%3E%3Cpath d='M48 33v22'/%3E%3Cpath d='M37 55l11 11 11-11'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat!important;
  filter:drop-shadow(0 4px 14px rgba(78,29,62,.22))!important;
}
body.home.wp-child-theme-generatepress-child-biovida .bv-home-hero-kicker{
  display:block!important;
  color:#fff!important;
  font-family:var(--bv-font-text)!important;
  font-size:clamp(.92rem,1.25vw,1.12rem)!important;
  font-weight:900!important;
  line-height:1.1!important;
  letter-spacing:.36em!important;
  text-transform:uppercase!important;
  text-shadow:0 2px 12px rgba(111,37,75,.18)!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline{
  max-width:900px!important;
  margin:0 auto!important;
  color:#fff!important;
  font-size:clamp(2.35rem,4.35vw,4.25rem)!important;
  line-height:1.08!important;
  letter-spacing:.005em!important;
  text-align:center!important;
  text-transform:uppercase!important;
}
/* Archives: real HTML description takes the full hero content width. */
body.archive.wp-child-theme-generatepress-child-biovida .bv-archive-hero-desc,
body.blog.wp-child-theme-generatepress-child-biovida .bv-archive-hero-desc,
body.author.wp-child-theme-generatepress-child-biovida .bv-archive-hero-desc{
  max-width:100%!important;
  width:100%!important;
}
/* Non-home heroes: image layer at 0.6 over #24362f, with content above. Inline PHP sets the actual featured image URL. */
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"],
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"],
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347{
  background:#24362f!important;
  background-color:#24362f!important;
  background-image:none!important;
  position:relative!important;
  overflow:hidden!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"]::before,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]::before,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::before,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::before,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::before{
  opacity:.6!important;
  background-size:cover!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"]::after,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]::after,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::after,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::after,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::after{
  background:linear-gradient(90deg,rgba(36,54,47,.18),rgba(36,54,47,.30))!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] .gb-inside-container,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] .gb-inside-container,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container{
  position:relative!important;
  z-index:3!important;
}
/* Real prudence badge injected by PHP, not CSS text. */
.bv-card-prudence-badge{
  display:inline-flex!important;
  align-items:center!important;
  width:max-content!important;
  max-width:calc(100% - 1.6rem)!important;
  margin:0 0 .85rem!important;
  padding:.38rem .62rem!important;
  border:1px solid #e6bcb3!important;
  border-radius:999px!important;
  background:rgba(248,232,227,.94)!important;
  color:#a54237!important;
  font:850 .74rem/1 var(--bv-font-text)!important;
  letter-spacing:.06em!important;
  text-transform:uppercase!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main article .bv-card-prudence-badge,
body.blog.wp-child-theme-generatepress-child-biovida #main article .bv-card-prudence-badge,
body.author.wp-child-theme-generatepress-child-biovida #main article .bv-card-prudence-badge{
  margin:.1rem 0 .85rem!important;
}
/* Author pages: align WP Query Loop cards with category archive cards. */
body.author.wp-child-theme-generatepress-child-biovida .wp-block-query,
body.author.wp-child-theme-generatepress-child-biovida .wp-block-post-template{
  max-width:1200px!important;
  width:100%!important;
  margin:0 auto!important;
}
body.author.wp-child-theme-generatepress-child-biovida .wp-block-post-template{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:clamp(1.25rem,2vw,1.8rem)!important;
  padding:0 0 3rem!important;
}
body.author.wp-child-theme-generatepress-child-biovida .wp-block-post-template.is-layout-flow > li.wp-block-post,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post{
  width:100%!important;
  min-width:0!important;
  margin:0!important;
  padding:clamp(1rem,2vw,1.35rem)!important;
  background:#fff!important;
  border:1px solid rgba(199,45,117,.14)!important;
  border-radius:24px!important;
  box-shadow:0 10px 28px rgba(57,39,53,.055)!important;
  overflow:hidden!important;
  box-sizing:border-box!important;
}
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post figure,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-featured-image{
  margin:0 0 1rem!important;
}
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post img{
  display:block!important;
  width:100%!important;
  aspect-ratio:16/9!important;
  height:auto!important;
  object-fit:cover!important;
  border-radius:18px!important;
  margin:0!important;
}
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-title,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-title a{
  margin:.2rem 0 .55rem!important;
  color:var(--bv-ink)!important;
  font-family:var(--bv-font-title)!important;
  font-size:clamp(1.18rem,1.6vw,1.45rem)!important;
  line-height:1.16!important;
  letter-spacing:-.018em!important;
  text-decoration:none!important;
  text-transform:none!important;
}
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-date,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-author,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .taxonomy-category,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .taxonomy-post_tag{
  display:inline-flex!important;
  flex-wrap:wrap!important;
  gap:.25rem!important;
  margin:0 .45rem .55rem 0!important;
  color:#6f8179!important;
  font-size:.78rem!important;
  line-height:1.35!important;
  vertical-align:middle!important;
}
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-excerpt,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-excerpt__excerpt{
  margin:.7rem 0 0!important;
  color:#44554f!important;
  font-size:.96rem!important;
  line-height:1.6!important;
  display:-webkit-box!important;
  -webkit-line-clamp:5!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  max-height:8em!important;
}
@media(max-width:900px){
  body.author.wp-child-theme-generatepress-child-biovida .wp-block-post-template{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:640px){
  body.home.wp-child-theme-generatepress-child-biovida .bv-home-hero-zen{width:58px!important;height:58px!important;}
  body.home.wp-child-theme-generatepress-child-biovida .bv-home-hero-kicker{font-size:.78rem!important;letter-spacing:.22em!important;}
  body.home.wp-child-theme-generatepress-child-biovida .entry-content h1.gb-headline{font-size:clamp(2rem,8vw,3rem)!important;}
  body.author.wp-child-theme-generatepress-child-biovida .wp-block-post-template{grid-template-columns:1fr!important;}
}
/* Biovida v1.0.13 - hero contrast cleanup, smaller prudence badge, wider Home */
/* Home: remove boxed/narrow feeling. Keep the visual block, but give it the same premium width as the site hero system. */
body.home.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.home.wp-child-theme-generatepress-child-biovida #main.site-main{
  max-width:none!important;
  width:100%!important;
  padding-left:0!important;
  padding-right:0!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child{
  width:min(1440px,calc(100vw - 40px))!important;
  max-width:min(1440px,calc(100vw - 40px))!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-inside-container{
  max-width:1180px!important;
}
/* Non-home heroes: final layer contract. Base must be dark #24362f, image visible but subordinate, readable white text. */
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"],
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"],
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347{
  isolation:isolate!important;
  background:#24362f!important;
  background-color:#24362f!important;
  background-image:none!important;
  background-blend-mode:normal!important;
  position:relative!important;
  overflow:hidden!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"]::before,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]::before,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::before,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::before,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:1!important;
  pointer-events:none!important;
  background-size:cover!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
  background-blend-mode:normal!important;
  opacity:.46!important;
  filter:saturate(.95) contrast(1.03) brightness(.86)!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"]::after,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"]::after,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::after,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::after,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347::after{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:2!important;
  pointer-events:none!important;
  background:
    linear-gradient(90deg,rgba(36,54,47,.56) 0%,rgba(36,54,47,.48) 48%,rgba(36,54,47,.42) 100%),
    radial-gradient(circle at 18% 42%,rgba(36,54,47,.20),transparent 38%)!important;
  opacity:1!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] .gb-inside-container,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] .gb-inside-container,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 .gb-inside-container{
  position:relative!important;
  z-index:3!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] h1,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] h1,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 h1,
body.single-post.wp-child-theme-generatepress-child-biovida > div.gb-container[class*="gb-container-"] p,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) > div.gb-container[class*="gb-container-"] p,
body.archive.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 p,
body.blog.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 p,
body.author.wp-child-theme-generatepress-child-biovida > div.gb-container.gb-container-ae74c347 p{
  color:#fff!important;
  text-shadow:0 2px 20px rgba(0,0,0,.34)!important;
}
/* Archive lotus fallback was too pastel; force the same dark contract even on category heroes. */
body.archive.wp-child-theme-generatepress-child-biovida .bv-archive-kicker,
body.blog.wp-child-theme-generatepress-child-biovida .bv-archive-kicker,
body.author.wp-child-theme-generatepress-child-biovida .bv-archive-kicker,
body.single-post.wp-child-theme-generatepress-child-biovida .bv-single-kicker,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .bv-single-kicker{
  background:rgba(255,255,255,.10)!important;
  border-color:rgba(255,255,255,.32)!important;
  color:#fff!important;
  box-shadow:0 8px 20px rgba(0,0,0,.10)!important;
}
/* Smaller, cleaner Prudence Santé badge. */
.bv-card-prudence-badge{
  padding:.24rem .46rem!important;
  border-radius:999px!important;
  font:800 .62rem/1 var(--bv-font-text)!important;
  letter-spacing:.045em!important;
  background:rgba(248,232,227,.74)!important;
  border-color:rgba(166,66,55,.24)!important;
  color:#9b463b!important;
  box-shadow:none!important;
}
body.archive.wp-child-theme-generatepress-child-biovida #main article .bv-card-prudence-badge,
body.blog.wp-child-theme-generatepress-child-biovida #main article .bv-card-prudence-badge,
body.author.wp-child-theme-generatepress-child-biovida #main article .bv-card-prudence-badge{
  margin:0 0 .65rem!important;
}
@media(max-width:780px){
  body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child{
    width:100%!important;
    max-width:100%!important;
    border-radius:0 0 28px 28px!important;
  }
}
/* Biovida v1.0.14 - simplify hero stack, Home width back to site width, author/card alignment */
/* HOME: same width family as other page/article heroes, not oversized. */
body.home.wp-child-theme-generatepress-child-biovida #primary.content-area,
body.home.wp-child-theme-generatepress-child-biovida #main.site-main{
  max-width:none!important;
  width:100%!important;
  padding-left:0!important;
  padding-right:0!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child{
  width:min(1200px,calc(100vw - 48px))!important;
  max-width:min(1200px,calc(100vw - 48px))!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child .gb-inside-container{
  max-width:1000px!important;
}
/* HERO final contract outside Home: dark base, image underlay, text always above and white. */
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347,
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-c90f7c4e,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-ae74c347,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-c90f7c4e,
body.archive.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347,
body.blog.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347,
body.author.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347{
  isolation:isolate!important;
  position:relative!important;
  overflow:hidden!important;
  background-color:#24362f!important;
  background-blend-mode:multiply!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347::before,
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-c90f7c4e::before,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-ae74c347::before,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-c90f7c4e::before,
body.archive.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347::before,
body.blog.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347::before,
body.author.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347::before{
  z-index:1!important;
  opacity:.52!important;
  filter:none!important;
  background-size:cover!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347::after,
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-c90f7c4e::after,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-ae74c347::after,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-c90f7c4e::after,
body.archive.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347::after,
body.blog.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347::after,
body.author.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347::after{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:2!important;
  pointer-events:none!important;
  opacity:1!important;
  filter:none!important;
  background:linear-gradient(90deg,rgba(36,54,47,.62) 0%,rgba(36,54,47,.50) 52%,rgba(36,54,47,.42) 100%)!important;
}
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347 .gb-inside-container,
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-c90f7c4e .gb-inside-container,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-ae74c347 .gb-inside-container,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-c90f7c4e .gb-inside-container,
body.archive.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347 .gb-inside-container,
body.blog.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347 .gb-inside-container,
body.author.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347 .gb-inside-container,
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347 .gb-inside-container *,
body.single-post.wp-child-theme-generatepress-child-biovida .gb-container-c90f7c4e .gb-inside-container *,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-ae74c347 .gb-inside-container *,
body.page.wp-child-theme-generatepress-child-biovida:not(.home) .gb-container-c90f7c4e .gb-inside-container *,
body.archive.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347 .gb-inside-container *,
body.blog.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347 .gb-inside-container *,
body.author.wp-child-theme-generatepress-child-biovida .gb-container-ae74c347 .gb-inside-container *{
  position:relative!important;
  z-index:3!important;
  opacity:1!important;
  filter:none!important;
  color:#fff!important;
  text-shadow:0 2px 18px rgba(0,0,0,.34)!important;
}
/* Remove author-page link from archive/blog cards; author bio already carries the author link. */
body.archive.wp-child-theme-generatepress-child-biovida #main article .byline,
body.blog.wp-child-theme-generatepress-child-biovida #main article .byline,
body.archive.wp-child-theme-generatepress-child-biovida #main article .author,
body.blog.wp-child-theme-generatepress-child-biovida #main article .author,
body.archive.wp-child-theme-generatepress-child-biovida #main article .wp-block-post-author,
body.blog.wp-child-theme-generatepress-child-biovida #main article .wp-block-post-author{
  display:none!important;
}
/* Author page cards: force same visual model as category archive cards. */
body.author.wp-child-theme-generatepress-child-biovida .generate-columns-container,
body.author.wp-child-theme-generatepress-child-biovida .wp-block-post-template{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:clamp(1.25rem,2vw,1.8rem)!important;
  max-width:1200px!important;
  width:100%!important;
  margin:0 auto!important;
  padding:0 0 3rem!important;
  align-items:stretch!important;
}
body.author.wp-child-theme-generatepress-child-biovida .generate-columns,
body.author.wp-child-theme-generatepress-child-biovida article.generate-columns,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post{
  width:100%!important;
  min-width:0!important;
  float:none!important;
  margin:0!important;
  padding:0!important;
  background:#fff!important;
  border:1px solid rgba(199,45,117,.14)!important;
  border-radius:24px!important;
  box-shadow:0 10px 28px rgba(57,39,53,.055)!important;
  overflow:hidden!important;
  box-sizing:border-box!important;
}
body.author.wp-child-theme-generatepress-child-biovida article .inside-article,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post{
  padding:clamp(1rem,2vw,1.35rem)!important;
}
body.author.wp-child-theme-generatepress-child-biovida article .post-image img,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post img,
body.author.wp-child-theme-generatepress-child-biovida .wp-block-post-featured-image img{
  display:block!important;
  width:100%!important;
  aspect-ratio:16/9!important;
  height:auto!important;
  object-fit:cover!important;
  border-radius:18px!important;
  margin:0 0 1rem!important;
}
body.author.wp-child-theme-generatepress-child-biovida article .entry-title,
body.author.wp-child-theme-generatepress-child-biovida article .entry-title a,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-title,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-title a{
  margin:.2rem 0 .55rem!important;
  color:var(--bv-ink)!important;
  font-family:var(--bv-font-title)!important;
  font-size:clamp(1.18rem,1.6vw,1.45rem)!important;
  line-height:1.16!important;
  letter-spacing:-.018em!important;
  text-decoration:none!important;
  text-transform:none!important;
}
body.author.wp-child-theme-generatepress-child-biovida article .entry-meta,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-date,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .taxonomy-category{
  margin:0 0 .55rem!important;
  color:#6f8179!important;
  font-size:.78rem!important;
  line-height:1.35!important;
}
body.author.wp-child-theme-generatepress-child-biovida article .entry-summary,
body.author.wp-child-theme-generatepress-child-biovida article .entry-content,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-excerpt,
body.author.wp-child-theme-generatepress-child-biovida li.wp-block-post .wp-block-post-excerpt__excerpt{
  margin:.7rem 0 0!important;
  color:#44554f!important;
  font-size:.96rem!important;
  line-height:1.6!important;
  display:-webkit-box!important;
  -webkit-line-clamp:5!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  max-height:8em!important;
}
@media(max-width:900px){
  body.author.wp-child-theme-generatepress-child-biovida .generate-columns-container,
  body.author.wp-child-theme-generatepress-child-biovida .wp-block-post-template{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:780px){
  body.home.wp-child-theme-generatepress-child-biovida .entry-content>.gb-container:first-child{width:100%!important;max-width:100%!important;}
}
@media(max-width:640px){
  body.author.wp-child-theme-generatepress-child-biovida .generate-columns-container,
  body.author.wp-child-theme-generatepress-child-biovida .wp-block-post-template{grid-template-columns:1fr!important;}
}
/* Biovida v1.0.15 cache-bypass note: critical overrides moved to style.css because minified design CSS can be stale. */

/* Biovida v1.0.16 note: final critical runtime overrides are emitted in wp_head by functions.php to beat cache/minified ordering. */

/* Biovida v1.0.17 note: article/page hero image handled directly by PHP inline background-image to avoid pseudo-selector conflicts. */
