.about-section {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: calc(100vh - var(--footer-height));
  background: var(--bg-gradient);
}

.about-row {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 0;
}

.about-row + .about-row {
  border-top: 0.45rem solid rgba(36, 210, 191, 0.55);
}

.about-image {
  display: block;
  min-height: 0;
  overflow: hidden;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(4rem, 6vw, 6.5rem) clamp(2.5rem, 5vw, 5.5rem);
}

.about-copy h1 {
  margin: 0 0 2.5rem;
}

.about-copy--team {
  justify-content: center;
}

.about-copy h1 {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.about-text {
  max-width: 380px;
}

.about-text p {
  letter-spacing: 0.045em;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
