.home-intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
  margin: 2.5rem 0 3rem;
}

.home-intro p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.1rem;
}

.home-intro p:last-child {
  margin-bottom: 0;
}

.home-intro__portrait {
  width: 210px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background-color: #f7f7f3;
  background-image: url("images/pengbin-headshot.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(40, 48, 62, 0.08);
}

.home-intro__content {
  max-width: 64rem;
}

.home-intro__identity {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f6b7a;
  margin: 0 0 1rem;
}

@media (max-width: 900px) {
  .home-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-intro__portrait {
    width: 180px;
  }

  .home-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
