/* Hero Module */
.stahl-hero {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 180px 0;
  min-height: 400px;
}

.stahl-hero__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.stahl-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stahl-hero__content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 50%;
  background: rgba(30, 30, 30, 0.95);
  border-radius: 2px 0 0 2px;
  color: #ffffff;
  padding: 12px 38px 34px;
}

.stahl-hero__icon {
  max-width: 100px;
}

.stahl-hero__subtitle {
  margin: 0;
  color: #ffa600;
  padding-left: 13px;
  position: relative;
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 27px;
}

.stahl-hero__subtitle::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url('../images/announcement.png');
  background-size: contain;
  background-repeat: no-repeat;
  left: -24px;
  top: 4px;
}

.stahl-hero__constrained {
  display: flex;
  flex-direction: column;
  max-width: 610px;
}

.stahl-hero__title {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 52px;
  line-height: 56px;
  font-weight: 700;
  color: #ffffff;
  padding: 0;
}

.stahl-hero__copy {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

.stahl-hero__button {
  display: inline-block;
  background-color: #FF6A00;
  color: #ffffff;
  padding: 14px 35px;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  align-self: flex-start;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 19px;
  font-weight: 800;
  font-family: Inter, sans-serif;
  transition: background-color 0.2s ease;
}

.stahl-hero__button:hover {
  background-color: #0067CE;
}

@media (max-width: 767px) {
  .stahl-hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    min-height: auto;
  }

  .stahl-hero__video-wrapper {
    position: relative;
    height: 229px;
  }

  .stahl-hero__content {
    width: 100%;
    padding: 44px 29px 48px;
    border-radius: 0;
    text-align: center;
    align-items: center;
    box-sizing: border-box;
  }

  .stahl-hero__subtitle {
    /*padding-left: 0;
    text-align: center;
    margin-bottom: 20px;*/
    display: none;
  }

  .stahl-hero__subtitle::before {
    display: none;
  }

  .stahl-hero__constrained {
    align-items: center;
    max-width: 333px;
  }

  .stahl-hero__title {
    font-family: Arimo, sans-serif;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.36px;
    text-align: center;
    margin-bottom: 6px;
  }

  .stahl-hero__copy {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 22px;
  }

  .stahl-hero__button {
    align-self: center;
  }
}

/* Inner Hero Module */
.stahl-inner-hero {
  position: relative;
  width: 100%;
  padding: 74px 0 180px;
}

.stahl-inner-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stahl-inner-hero__bg--mobile {
  display: none;
}

.stahl-inner-hero__title-wrapper {
  width: 50%;
  background-color: #1e1e1e;
  opacity: 0.95;
  padding: 40px 69px;
  box-sizing: border-box;
  margin: 0 0 0 auto;
}

.stahl-inner-hero__title {
  margin: 0;
  padding: 0;
  font-family: Arimo, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -0.52px;
  color: #ffffff;
}

@media (max-width: 980px) {
  .stahl-inner-hero__title-wrapper {
    width: 60%;
    padding: 30px 40px;
  }

  .stahl-inner-hero__title {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (max-width: 767px) {
  .stahl-inner-hero {
    height: 229px;
  }

  .stahl-inner-hero__bg--mobile {
    display: block;
  }

  .stahl-inner-hero__bg--mobile + .stahl-inner-hero__bg--desktop,
  .stahl-inner-hero:has(.stahl-inner-hero__bg--mobile) .stahl-inner-hero__bg--desktop {
    display: none;
  }

  .stahl-inner-hero__title-wrapper {
    display: none;
  }
}
