/* V57 cross-browser typography: stable wrapping for Safari / Chrome / Edge / Firefox */
html{-webkit-text-size-adjust:100%;text-size-adjust:100%}
/* Do not rely on browser-specific pretty/balance wrapping for body copy. */
p,li,.lead,.preview-disclaimer,.trial-payment-note,.clinic-support-note,.clinic-mini-prep p,.home-clinic-head>p,.beauty-intro p,.beauty-card p{
  text-wrap:wrap!important;
  hyphens:none!important;
  -webkit-hyphens:none!important;
}
/* Japanese: strict kinsoku rules; auto-phrase is used where supported and safely ignored elsewhere. */
html[lang^="ja"] p,html[lang^="ja"] li,body.lang-ja p,body.lang-ja li{
  line-break:strict!important;
  word-break:normal!important;
  overflow-wrap:normal!important;
}
@supports (word-break:auto-phrase){
  html[lang^="ja"] p,html[lang^="ja"] li,body.lang-ja p,body.lang-ja li{word-break:auto-phrase!important}
}
/* Korean: keep syllables in words together unless the viewport genuinely requires wrapping. */
html[lang^="ko"] p,html[lang^="ko"] li,body.lang-ko p,body.lang-ko li{
  word-break:keep-all!important;
  overflow-wrap:break-word!important;
}
/* English: never split words or auto-hyphenate. */
html[lang^="en"] p,html[lang^="en"] li,body.lang-en p,body.lang-en li{
  word-break:normal!important;
  overflow-wrap:break-word!important;
  hyphens:none!important;
  -webkit-hyphens:none!important;
}
/* Chinese: use strict punctuation handling without artificial word breaking. */
html[lang^="zh"] p,html[lang^="zh"] li,body.lang-zh p,body.lang-zh li{
  line-break:strict!important;
  word-break:normal!important;
  overflow-wrap:normal!important;
}
/* Explicit sentence breaks are intentional and consistent across engines. */
p br, .lead br, .clinic-support-lead br, .home-clinic-head p br{content:"";display:block;margin-top:.28em}
/* Give mobile copy enough physical width so Safari does not create avoidable orphan characters. */
@media(max-width:640px){
  .wrap{padding-left:20px!important;padding-right:20px!important}
  p,.lead,.head p,.home-clinic-head>p,.clinic-support-lead,.clinic-support-note,.clinic-mini-prep p{
    font-size:min(15px,4vw);
    line-height:1.82!important;
    letter-spacing:0!important;
  }
  .card,.flowcard,.pricecard,.clinic-problem-group{padding-left:20px!important;padding-right:20px!important}
}
