/* Versioned mobile corrections bypass stale cached styles on the public site. */
@media (max-width: 800px) {
  .intro.section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .intro.section > * {
    grid-column: 1 !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .intro.section h2 {
    font-size: clamp(31px, 9.4vw, 41px);
    line-height: 1.42;
  }

  .intro.section .introLine {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
