.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner__image {
  position: relative;
}

.hero-banner__image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 0 8%;
  box-sizing: border-box;
}

.hero-banner__content .hero-banner__headline {
  line-height: 1;
}

.hero-banner__content .hero-banner__subline {
  line-height: 1.4;
}

.hero-banner__content .hero-banner__button {
  margin-top: 0;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .hero-banner__content {
    padding: 0 30px;
  }
}

.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, var(--overlay-opacity));
  z-index: 1;
}