/* v2.7 About page: authentic GS exhibition imagery and conversion path */
.about-hero-expo {
  position: relative;
  min-height: clamp(620px, 70vh, 790px);
  isolation: isolate;
  overflow: hidden;
  background: #07111a;
}

.about-hero-expo .about-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}

.about-hero-expo .about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.82) contrast(1.06) brightness(.72);
  transform: scale(1.012);
}

.about-hero-expo .about-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 13, .99) 0%, rgba(5, 9, 13, .94) 30%, rgba(5, 9, 13, .69) 54%, rgba(5, 9, 13, .16) 84%),
    linear-gradient(0deg, rgba(5, 9, 13, .5), transparent 46%);
}

.about-hero-expo .about-hero-copy {
  position: relative;
  z-index: 2;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.about-story-copy h2 {
  max-width: 700px;
}

.about-story-copy > p {
  max-width: 720px;
}

.about-story-copy .about-facts {
  margin-top: clamp(38px, 5vw, 62px);
}

.about-story-media {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 0 0 24px 24px;
}

.about-story-media::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 24px 24px 0 0;
  border: 1px solid var(--line);
}

.about-story-media picture {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  background: var(--graphite);
}

.about-story-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.about-story-media:hover img {
  transform: scale(1.018);
}

.about-story-media figcaption {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--grey);
  font-size: .82rem;
  line-height: 1.55;
}

.about-contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
}

.about-contact-cta h2 {
  max-width: 900px;
  margin-bottom: 22px;
}

.about-contact-cta p {
  max-width: 830px;
  margin-bottom: 0;
}

.about-contact-cta .button {
  min-width: min(100%, 310px);
}

html[data-theme='light'] .about-story-media picture {
  background: #e5edf3;
}

@media (max-width: 1050px) {
  .about-story-layout {
    grid-template-columns: 1fr;
  }

  .about-story-media {
    width: min(860px, 100%);
  }

  .about-contact-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-contact-cta .button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .about-hero-expo {
    min-height: 680px;
  }

  .about-hero-expo .about-hero-media img {
    object-position: 64% center;
    filter: saturate(.76) contrast(1.05) brightness(.62);
  }

  .about-hero-expo .about-hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 9, 13, .99) 4%, rgba(5, 9, 13, .92) 45%, rgba(5, 9, 13, .25) 100%),
      linear-gradient(90deg, rgba(5, 9, 13, .45), rgba(5, 9, 13, .08));
  }

  .about-hero-expo .about-hero-copy {
    align-self: end;
  }

  .about-story-media {
    padding: 0 0 14px 14px;
  }

  .about-story-media::before {
    inset: 14px 14px 0 0;
  }

  .about-story-copy .about-facts div {
    gap: 24px;
  }

  .about-contact-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-story-media img {
    transition: none;
  }
}
