.hero {
  height: 452px;
  position: relative;
}

.hero.simple {
  height: 278px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  display: flex;
  justify-content: end;
}

.hero-background img {
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: 90% center;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-bright) 37%, transparent 70%);
  z-index: 0;
}

.hero .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  max-width: 750px;
}

.hero.simple h1 {
  max-width: 550px;
}

.hero-text {
  max-width: 500px;
  margin-top: 12px;
}

.hero .btn-container {
  margin-top: 24px;
}