:root {
  --about-width: min(66%, 940px);
}

.about-page {
  display: grid;
  width: var(--about-width);
  min-height: calc(100svh - var(--site-header-height));
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.85fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(64px, 9vw, 150px);
  margin: 0 auto;
  padding: clamp(58px, 6vw, 92px) 0 clamp(52px, 6vw, 88px);
  color: #111111;
  font-family: "Heebo", Arial, sans-serif;
}

.about-section h1,
.about-section h2 {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 32px);
  font-weight: 600;
  line-height: 1;
}

.about-section p,
.about-copy p,
.about-section li {
  margin: 0;
  font-size: clamp(12px, 0.92vw, 15px);
  font-weight: 300;
  line-height: 1.45;
}

.about-section a {
  color: inherit;
  text-decoration: none;
}

.about-section a:hover,
.about-section a:focus-visible {
  outline: 0;
  opacity: 0.55;
}

.about-section--education {
  grid-column: 1;
  grid-row: 1;
}

.education-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: clamp(24px, 2.4vw, 38px);
}

.about-section--contact {
  grid-column: 2;
  grid-row: 1;
}

.about-section--contact p {
  margin-top: clamp(24px, 2.4vw, 38px);
  white-space: nowrap;
}

.about-cv-links {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  gap: 8px 18px;
  margin-top: clamp(24px, 3vw, 42px);
}

.about-cv {
  color: inherit;
  display: inline-block;
  font-size: clamp(12px, 0.92vw, 15px);
  font-weight: 400;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-copy {
  max-width: 520px;
}

.about-copy--journey {
  grid-column: 1;
  grid-row: 2;
  margin-top: clamp(24px, 3vw, 42px);
}

.about-copy--approach {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  margin-top: clamp(38px, 5vw, 70px);
}

.about-section--skills {
  grid-column: 2;
  grid-row: 3;
  align-self: start;
  margin-top: clamp(38px, 5vw, 70px);
  transform: translateY(4px);
}

.about-section--skills h2 {
  margin-bottom: clamp(10px, 1vw, 16px);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
}

.about-section--skills ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-section--skills li {
  line-height: 1.25;
}

@media (max-width: 760px) {
  .about-page {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 48px;
    padding-top: 56px;
  }

  .about-section--education,
  .about-section--contact,
  .about-cv-links,
  .about-copy--journey,
  .about-copy--approach,
  .about-section--skills {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }

  .about-section--skills {
    transform: none;
  }

  .about-section--contact p {
    white-space: normal;
  }
}
