.about-hero {
  grid-template-columns: 59% 41%;
  min-height: 0;
  aspect-ratio: 2.46 / 1;
  max-height: 650px;
  overflow: hidden;
}

.about-photo {
  position: relative;
  display: flex;
  min-width: 0;
  background: var(--ink-dark);
  border-right: 1px solid rgba(250, 205, 59, .22);
}

.about-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 92%, transparent 100%);
}

.about-photo::after,
.about-number {
  display: none;
}

.about-intro {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px clamp(32px, 6vw, 90px);
}

.about-intro::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 0;
  width: 110px;
  height: 76%;
  opacity: .08;
  background: radial-gradient(circle, var(--yellow) 1.5px, transparent 2px);
  background-size: 14px 14px;
}

.about-intro h1 {
  max-width: none;
  margin: 0 0 24px;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-intro > .eyebrow {
  display: none;
}

.about-intro > p:last-of-type {
  max-width: 500px;
  margin: 0;
  font-size: clamp(24px, 2.4vw, 37px);
  line-height: 1.15;
}

.about-flags { margin-top: 28px; }
.about-story { margin-top: 75px; }

@media (max-width: 760px) {
  .about-hero {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    max-height: none;
  }

  .about-photo {
    height: auto;
    aspect-ratio: 1600 / 1102;
    border-right: 0;
    border-bottom: 1px solid rgba(250, 205, 59, .22);
  }

  .about-photo > img {
    object-position: center;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  }

  .about-intro {
    padding: 38px 24px 58px;
  }

  .about-intro h1 {
    font-size: clamp(34px, 11vw, 46px);
    white-space: normal;
  }
}
