/* se-retreat-herotrust-v1.css — M-herotrust, 2026-09-17.
 *
 * The hero stat line under the star rating ("Loved by 256 retreatants · fully vegan ·
 * all inclusive") is laid out by every retreat skin as
 *   .hero-trust { display:flex; align-items:center; gap:10px }
 * with no flex-wrap. The line's markup is a .stars span followed by plain text with a
 * <span data-ti-count> in the middle of it, and FLEX MAKES EVERY RUN OF THAT ITS OWN
 * ITEM: the stars, the text "Loved by", the number, and the remaining text become four
 * columns squeezed into one non-wrapping row. Measured at 375px on staging before this
 * sheet existed: "Loved by" broke over two lines inside a 48px column and "256" sat in a
 * 24px column of its own, which is exactly what David reported from his phone.
 *
 * The fix is to stop it being a flex row at all. As normal inline flow the line wraps at
 * spaces like prose, and the phrases that must not be split carry .ht-keep. Nothing here
 * changes a word of the copy.
 *
 * Own sheet, not an edit to the seven skins, for the reason se-retreat-hero-v2.css and
 * se-retreat-links-v1.css are their own sheets: the delivered designs stay as handed over
 * and this is one line to remove. Specificity is one `body` higher than the skins' own
 * rule so it wins without !important; it is enqueued after the skin either way.
 *
 * .ht-keep is white-space:nowrap, so anything wrapped in it MUST be short enough to fit a
 * phone. The widest one here is "Loved by 256 retreatants" at 159px in a 327px column.
 * A long nowrap phrase is how a retreat page gets a sideways scroll - see
 * manual/frontend-and-assets.md on .datecard .dv.
 */
body .se-retreat              .hero-trust,
body .se-retreat-cat          .hero-trust,
body .se-retreat-dayretreat   .hero-trust,
body .se-retreat-devon        .hero-trust,
body .se-retreat-lincolnshire .hero-trust,
body .se-retreat-online-cat   .hero-trust,
body .se-retreat-online-happy .hero-trust,
body .se-retreat-trigonos     .hero-trust {
  display: block;
  line-height: 1.55;
  text-wrap: balance;
}

body .se-retreat              .hero-trust .stars,
body .se-retreat-cat          .hero-trust .stars,
body .se-retreat-dayretreat   .hero-trust .stars,
body .se-retreat-devon        .hero-trust .stars,
body .se-retreat-lincolnshire .hero-trust .stars,
body .se-retreat-online-cat   .hero-trust .stars,
body .se-retreat-online-happy .hero-trust .stars,
body .se-retreat-trigonos     .hero-trust .stars {
  display: inline-block;
  margin-right: 8px;
}

body .se-retreat              .ht-keep,
body .se-retreat-cat          .ht-keep,
body .se-retreat-dayretreat   .ht-keep,
body .se-retreat-devon        .ht-keep,
body .se-retreat-lincolnshire .ht-keep,
body .se-retreat-online-cat   .ht-keep,
body .se-retreat-online-happy .ht-keep,
body .se-retreat-trigonos     .ht-keep {
  white-space: nowrap;
}
