.about-hero {
  display: grid;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 1180px;
}

.about-hero__media:not(:has(img)) {
  display: none;
}

.about-hero__copy {
  min-width: 0;
}

.about-hero__media {
  position: relative;
  min-height: 280px;
  aspect-ratio: 3 / 4;
  background: var(--vv-pearl);
  overflow: hidden;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  overflow-wrap: normal;
  text-wrap: balance;
  margin-bottom: 64px;
}

.about-hero h1 em {
  font-style: italic;
  font-weight: inherit;
  white-space: nowrap;
}

.about-hero__lede {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.62;
  max-width: 760px;
  text-wrap: pretty;
}

.about-hero__body {
  margin-top: 44px;
  max-width: 520px;
  font-size: 14px;
  line-height: 2;
  color: #555;
  font-weight: 300;
  text-wrap: pretty;
}

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

.about-story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--vv-pearl);
  overflow: hidden;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.about-story__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 20px;
}

.about-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  border-left: 1px solid var(--vv-hair);
  padding-left: 26px;
  max-width: 420px;
  margin-top: 48px;
}

.about-quote-attr {
  margin-top: 18px;
  padding-left: 27px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vv-mute);
}

.about-body-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-size: 14px;
  line-height: 2.05;
  font-weight: 300;
  color: #555;
  max-width: 460px;
}

.about-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px 40px;
}

.about-more {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--vv-hair);
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .about-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .about-hero:has(.about-hero__media img) {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: start;
    gap: 64px;
  }

  .about-hero:has(.about-hero__media img) h1 {
    font-size: clamp(36px, 4.4vw, 64px);
  }

  .about-hero {
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .about-hero__media {
    min-height: 520px;
    position: sticky;
    top: calc(var(--header-offset) + 24px);
  }

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

  .about-story__text {
    padding: 90px 72px;
  }

  .about-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .about-hero {
    padding-top: max(96px, calc(72px + var(--safe-top)));
    padding-bottom: 56px;
  }

  .about-hero h1 {
    font-size: clamp(40px, 12vw, 64px);
    margin-bottom: 36px;
  }

  .about-hero__lede {
    font-size: clamp(18px, 4.2vw, 22px);
  }

  .about-hero__body {
    margin-top: 28px;
    max-width: none;
  }

  .about-hero__media,
  .about-story__media {
    min-height: 240px;
  }

  .about-story__text {
    padding: 40px 20px 72px;
  }
}
