.intro-home {
  overflow: hidden;
  background: #f7f9fc;
  color: #3d3d3d;
}

.intro-home__inner {
  width: min(100% - (var(--section-padding-x) * 2), 80.625rem);
  margin: 0 auto;
  padding: 6rem 0 0;
}

.intro-home__header {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  padding-bottom: 0.75rem;
  text-align: center;
}

.intro-home__kicker,
.intro-home__title,
.intro-home__body {
  max-width: 46.25rem;
  margin: 0;
}

.intro-home__kicker {
  color: #3d3d3d;
  font-family: var(--font-hero);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
}

.intro-home__title {
  color: #3d3d3d;
  font-family: var(--font-hero);
  font-size: clamp(3rem, 5.3vw, 4.77rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

.intro-home__body {
  color: #686868;
  font-family: var(--font-intro-body);
  font-size: 1.25rem;
  line-height: 1.6;
}

.intro-home__divider {
  width: 15rem;
  height: 0.1875rem;
  margin: 2rem auto 0;
  background: #c8d6e8;
}

@media (max-width: 768px) {
  .intro-home__inner {
    padding-top: 4.5rem;
  }

  .intro-home__header {
    gap: 1rem;
  }

  .intro-home__title {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .intro-home__body {
    font-size: 1.0625rem;
    line-height: 1.55;
  }

  .intro-home__divider {
    width: 10rem;
    margin-top: 1.5rem;
  }
}
