/* Match the competition banner's typography across learning surfaces. */
main:is(.learn-page,.path-page,.school-page,.lesson-page,.creator-page) :is(h1,h2,h3) {
  font-family:Inter,Arial,sans-serif;
  font-style:normal;
  font-weight:850;
  letter-spacing:-.035em;
  line-height:1.15;
  overflow-wrap:anywhere;
}
main:is(.learn-page,.path-page,.school-page,.lesson-page,.creator-page) h1 {
  font-size:clamp(32px,4vw,58px);
  letter-spacing:-.045em;
  line-height:1.05;
  text-wrap:balance;
}
@media(max-width:650px) {
  main:is(.learn-page,.path-page,.school-page,.lesson-page,.creator-page) h1 {
    font-size:clamp(30px,9vw,38px);
  }
}
