.atl-gh-hero {
  padding: 10px;
}

.atl-gh-hero__frame {
  position: relative;
  box-sizing: border-box;
  height: max(85vh, 650px);
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .atl-gh-hero__frame {
    height: max(75vh, 550px);
    padding: 7rem 3rem;
  }
}

.atl-gh-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
}

.atl-gh-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  will-change: opacity, transform;
  transition: opacity 0.08s linear, transform 0.08s linear;
}
@media (min-width: 768px) {
  .atl-gh-hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
  }
}

.atl-gh-hero__title {
  color: #fff;
  font-size: clamp(3rem, 5.6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: normal;
  line-height: 0.95;
  margin: 0;
  max-width: 47rem;
}

@media (min-width: 768px) {
  .atl-gh-hero__title {
    font-size: 4.5rem;
  }
}
@media (max-width: 767px) {
  .atl-gh-hero__frame {
    padding-bottom: 3rem;
  }
}
.atl-gh-hero__text {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 22rem;
  margin: 0;
}
