.about-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 80vh;
  padding: 40px 0 60px;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 90px 40px 40px;
  border-radius: 30px;
  overflow: hidden;
}

.about-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(191, 51, 19, 0) 20%, var(--color-bg) 73%);
  opacity: 0.75;
}

.about-hero-title {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 64px;
  letter-spacing: -0.03em;
  line-height: 1.05em;
  color: var(--color-text);
}

@media (max-width: 900px) {
  .about-hero {
    height: 70vh;
  }

  .about-hero-media {
    inset: 80px 20px 24px;
  }

  .about-hero-title {
    font-size: 40px;
  }
}
