.about {
  padding: 32px 0 0;
  background: #f7fbfe url("/assets/about-meadow.webp") center bottom / cover no-repeat;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(247,251,254,.7) 38%, rgba(247,251,254,.18) 72%, rgba(247,251,254,.04) 100%);
}

.about-intro {
  position: relative;
  z-index: 4;
  margin-bottom: 8px;
}

.about-intro h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.about-intro > p:not(.eyebrow) {
  line-height: 1.48;
}

.about-intro .about-story {
  margin-top: 6px;
}

.about-stage {
  grid-template-columns: minmax(290px, .85fr) minmax(640px, 1.8fr) minmax(290px, .85fr);
  align-items: end;
  gap: 14px;
}

.about-person {
  position: relative;
  z-index: 3;
  margin-bottom: 28px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(6, 104, 189, .24);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(7, 27, 44, .16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.about-person p {
  color: #102f43;
  font-weight: 500;
  line-height: 1.55;
}

.about-portrait {
  position: relative;
  isolation: isolate;
  min-height: 450px;
  overflow: hidden;
}

.about-portrait::before {
  content: none;
}

.about-portrait::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 17%;
  right: 17%;
  bottom: 7%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.96) 0%, rgba(224,243,255,.62) 42%, rgba(6,104,189,.08) 68%, transparent 76%);
  filter: blur(8px);
  opacity: 1;
}

.about-portrait img {
  position: absolute;
  z-index: 2;
  left: 53%;
  bottom: -198px;
  width: 152%;
  max-width: none;
  height: auto;
  max-height: none;
  margin: 0;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 20px rgba(4,46,77,.24));
}

@media (max-width: 1050px) {
  .about-stage {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 1.55fr) minmax(0, 1fr);
    gap: 14px;
  }

  .about-person {
    padding-inline: 18px;
  }

  .about-portrait {
    min-height: 390px;
  }

  .about-portrait img {
    left: 52%;
    bottom: -120px;
    width: 145%;
  }
}

@media (max-width: 900px) {
  .about {
    padding-top: 42px;
  }

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

  .about-portrait {
    grid-column: 1 / -1;
    order: 3;
    width: min(760px, 100%);
    min-height: 450px;
    margin: -18px auto 0;
  }

  .about-portrait img {
    left: 50%;
    bottom: -165px;
    width: 125%;
  }

  .about-person-right {
    order: 1;
  }

  .about-person-left {
    order: 2;
  }

  .about-person {
    margin-bottom: 18px;
  }
}

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

  .about-portrait {
    grid-column: auto;
    width: calc(100% + 28px);
    min-height: 300px;
    margin: -2px -14px 0;
  }

  .about-portrait img {
    bottom: -90px;
    width: 142%;
  }
}
