  /*
 * Keep a 22-24 character opening phrase together in the homepage hero.
 * The parent theme constrains this title to roughly half the viewport on
 * desktop, which is too narrow for the current 22-character opening line.
 */
.details-page .topper-background .topper-background__text .topper-background__text-inner .topper-background__title {
  flex: 0 0 auto;
  align-self: center;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: min(800px, calc(100vw - 32px));
}

/* Preserve the same line on narrow phones without allowing horizontal scroll. */
@media (max-width: 600px) {
  .details-page .topper-background .topper-background__text .topper-background__text-inner .topper-background__title--length-long {
    font-size: clamp(26px, 8.3vw, 50px);
  }
}
