.intro-grid {
  align-items: center;
  --gutter: 0rem;
}

.intro-grid .column {
  display: flex;
  justify-content: center;
}

.intro-grid .intro-lead {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.intro-lead-figure {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
}

.intro-header {
  margin: 0;
  max-width: 34rem;
  font-size: 3.5rem;
  line-height: 1;
  /* border-left: 2px solid var(--color-black); */
  padding-left: 1rem;
  font-weight: 400;
  color: var(--color-accent);
  margin-bottom: 1rem;
}


.rive-canvas {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  touch-action: auto;
  -webkit-user-drag: none;

  opacity: 0;
  transition: opacity 0.4s ease;

}

.rive-canvas.is-loaded {
  opacity: 1;
}

.home-image {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
}


.intro-quote {
  margin: 0;
  max-width: 28rem;
  font-size: 1.5rem;
  line-height: 1.35;
  padding-left: 1rem;
  font-weight: 200;

}

.intro-text {
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 200;
}

@media (max-width: 60rem) {
  .intro-grid .column {
    justify-content: center;
  }

  /* Keep the intro text aligned with the page flow on narrow viewports */
  .intro-grid .intro-lead {
    align-items: flex-start;
  }

  .intro-lead-figure {
    align-items: flex-start;
  }

  .intro-grid .intro-lead .intro-quote {
    margin-left: 0;
    margin-right: 0;
  }

  .intro-quote {
    margin-left: auto;
    margin-right: auto;
  }

  .home-image {
    display: none;
  }
}
