
  
  .pageTitleLandingPage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .pageTitleLandingPage img {
    justify-self: center;
  }

  .pageTitleLandingPage .pageTitleLandingPageContent {
    display:grid;
    gap: 1em;
  }
  
  .listOptions {
    font-size: 0.8rem;
    flex-flow: row wrap;
    column-gap: 1rem;
  }
  
  .pageTitleLandingPage h2 {
    color: #e66238;
  }
  
  .listOptions li {
    align-items: center;
  }

  .pageTitleLandingPage h1 {
    padding-bottom: 1rem;
  }
  
  .pageTitleLandingPage::before {
    background-color: #f2f2f2;
  }

  @media (min-width: 800px) {
    
    .new .pageTitleLandingPage,
    .pageTitleLandingPage {
      
      grid-template-columns: 1fr 1fr;
    }
  }
