.about-hero {
  width: min(1180px, 100%);
  margin: auto;
  min-height: 500px;
  padding: 52px 24px 34px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(500px, 1fr);
  column-gap: 72px;
  row-gap: 0;
  align-items: center;
  overflow: hidden;
}

.about-copy {
  max-width: 500px;
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
}

.about-breadcrumb {
  width: fit-content;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 800;
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.about-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.about-breadcrumb a::after {
  content: ">";
  margin-left: 8px;
  color: var(--blue-2);
}

.about-copy .about-kicker {
  margin: 0 0 14px;
  color: #a4bfe4;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
}

.about-hero h1 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 52px;
  line-height: 1.05;
}

.about-copy .about-lead {
  color: #0055e9;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.75;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-visual {
  position: relative;
  z-index: 1;
  width: min(610px, 50vw);
  height: 500px;
  justify-self: end;
  grid-column: 2;
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .26);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 32, .5) 0%, rgba(7, 16, 32, .08) 46%, rgba(7, 16, 32, .12) 100%),
    linear-gradient(180deg, rgba(7, 16, 32, .05) 0%, rgba(7, 16, 32, .78) 100%);
  pointer-events: none;
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% top;
  transform: scale(1.28);
  transform-origin: 70% top;
}

@media (max-width: 1020px) {
  .about-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 18px;
    row-gap: 28px;
  }

  .about-breadcrumb {
    margin: 0;
    order: -2;
  }

  .about-visual {
    width: min(640px, 100%);
    height: 430px;
    justify-self: center;
    order: -1;
    grid-column: 1;
    grid-row: auto;
  }

  .about-copy {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .about-hero {
    padding: 38px 18px 18px;
    gap: 28px;
  }

  .about-visual {
    width: 100%;
    height: 300px;
  }

  .about-copy .about-kicker {
    font-size: 26px;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .about-copy .about-lead {
    font-size: 20px;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.65;
  }
}
