.hero-image {
  min-height: 0;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  box-shadow: none;
}

.hero-image > img,
.login-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image > div,
.login-photo > div {
  display: none;
}

.about-hero {
  grid-template-columns: 1fr minmax(300px, 0.72fr);
}

.about-biography {
  align-items: start;
  gap: clamp(40px, 5vw, 72px);
}

.about-introduction {
  max-width: 760px;
}

.about-introduction h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.12;
  margin: 0 0 28px;
}

.about-introduction p,
.about-process-copy p {
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.8;
  margin-bottom: 22px;
}

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

.about-hero > img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.about-process {
  padding-top: clamp(64px, 7vw, 95px);
  padding-bottom: clamp(64px, 7vw, 95px);
}

.about-process-copy {
  width: min(100%, 920px);
  margin: 0 auto;
}

.about-process-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 28px;
}

.login-page {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 30px;
  align-items: start;
  min-height: 0;
}

.login-photo {
  aspect-ratio: 3 / 2;
  border-radius: 18px;
}

.login-card {
  border-radius: 18px;
}

@media (max-width: 900px) {
  .login-page {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .login-photo {
    display: block;
  }
}

@media (max-width: 760px) {
  .hero-image {
    min-height: 0;
  }

  .hero-image > img {
    height: 100%;
  }

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

  .about-biography {
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .about-introduction h1 {
    font-size: clamp(40px, 12vw, 50px);
    margin-bottom: 24px;
  }

  .about-introduction p,
  .about-process-copy p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .about-hero > img {
    order: -1;
    width: min(100%, 440px);
    justify-self: center;
  }

  .about-process-copy h2 {
    font-size: 34px;
    margin-bottom: 24px;
  }

  .login-page {
    margin: 25px auto;
  }
}
