html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.about {
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 92px);
}

.about > div {
  min-width: 0;
}

.about h2 {
  max-width: 760px;
  font-size: clamp(43px, 4.7vw, 70px);
  line-height: 1.02;
  overflow-wrap: normal;
}

.about > div:last-child > p,
.about blockquote {
  max-width: 760px;
}

.credentials {
  max-width: 760px;
}

@media (max-width: 1000px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about > div:last-child {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .about h2 {
    font-size: 43px;
  }
}
