.about-profile {
  display: grid;
  gap: 34px;
}

.about-profile__intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 8vw, 132px);
  align-items: start;
}

.about-profile__title-art {
  width: 100%;
  max-width: 620px;
  margin-bottom: 0;
  line-height: 0;
}

.about-profile__title-art img {
  width: 100%;
  height: auto;
}

.about-profile__copy {
  padding-top: 34px;
}

.about-profile__copy .lead {
  margin-bottom: 20px;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.about-profile__copy > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.about-fact {
  display: grid;
  gap: 4px;
  padding: 22px clamp(18px, 2.6vw, 38px);
  border-right: 1px solid var(--line);
}

.about-fact:first-child {
  padding-left: 0;
}

.about-fact:last-child {
  border-right: 0;
}

.about-fact strong {
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  letter-spacing: -.04em;
  line-height: 1;
}

.about-fact span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-stories {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}

.about-story {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 46px);
  border-radius: var(--radius-md);
}

.about-story h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
}

.about-story > p {
  max-width: 660px;
  margin: 30px 0 26px;
}

.about-story__heading {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
}

.about-story__number {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
}

.about-story__label {
  margin-bottom: 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-story--tenders {
  color: var(--white);
  background: var(--red);
}

.about-story--tenders > p,
.about-story--tenders .about-story__number,
.about-story--tenders .about-story__label {
  color: rgba(255, 255, 255, .74);
}

.about-story .button {
  align-self: flex-start;
  margin-top: auto;
}

.about-story .button--white:hover,
.about-story .button--white:focus-visible {
  color: var(--ink);
  background: var(--soft);
}

.about-story--quality {
  color: var(--white);
  background:
    radial-gradient(circle at 94% 4%, rgba(216, 0, 22, .24), transparent 15rem),
    var(--ink);
}

.about-story--quality > p,
.about-story--quality .about-story__number,
.about-story--quality .about-story__label {
  color: rgba(255, 255, 255, .64);
}

@media (max-width: 980px) {
  .about-profile__intro,
  .about-stories {
    grid-template-columns: 1fr;
  }

  .about-profile__intro {
    gap: 24px;
  }

  .about-profile__copy {
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .about-profile {
    gap: 24px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-fact,
  .about-fact:first-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-fact:last-child {
    border-bottom: 0;
  }

  .about-story {
    padding: 26px 22px;
  }

  .about-story__heading {
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }

  .about-story > p {
    margin-top: 24px;
  }
}
