<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.standard_page__title_cont {
  margin-top: 1rem;
  /*                                                     margins cancel
    50% of (100% - 6rem) of 100vh - 0.5em (selecta h1) + 1rem - 1rem
    = 50% of (100vh - 6rem) - 0.5em(selecta h1)
    = 50vh - 3rem - 0.5em(selecta h1)
    - 5rem of streamblock margin (3 on mobile)
    = 50vh - 8rem (6rem on mobile) - 0.5em
    To account for relative offsets of fonts in line:
      0.16em - 0.16h4em
      = 0.16em - 0.16 * 0.52 (0.77 on mobile) * 1em 
      = 0.0768em of deviation (0.0368 on mobile)
  */
  min-height: calc(50vh - 8rem - 0.5em + 0.0768em);
}

@media (max-width: 768px) {
  .standard_page__title_cont {
    min-height: calc(var(--1svh)*50 - 6rem - 0.5em + 0.0368em);
  }
}

.standard_page__title_cont h1 {
  margin: 0;
}



/*
 * Breadcrumb
 */

.standard_page__breadcrumb_cont {
  margin-top: 0.5rem;
}

.standard_page__breadcrumb_link {
  text-decoration: none;
  display: inline-block;
}

.standard_page__breadcrumb_link:hover {
  opacity: 0.655;
}

.standard_page__breadcrumb_sep {
  display: inline-block;
  margin: 0 0.6em;
  user-select: none;
}


.standard_page__related_message {
  margin-top: 1rem;
}
</pre></body></html>