.kaizen-touch-control {
  --touch-background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 37.5vw, 580px);
  overflow: hidden;
  isolation: isolate;
  background: var(--kaizen-black, #121212);
  color: var(--kaizen-white, #ffffff);
}

.kaizen-touch-control::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.3) 48%, rgba(0, 0, 0, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.kaizen-touch-control__background {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.kaizen-touch-control__background-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--touch-background-position);
}

.kaizen-touch-control__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1400px);
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 7.5vw, 7rem);
}

.kaizen-touch-control__heading {
  max-width: 9ch;
  margin: 0;
  font-family: var(--font-body, "Inter", Arial, sans-serif);
  font-size: clamp(2.7rem, 6.4vw, 6.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.91;
  text-transform: uppercase;
}

.kaizen-touch-control__line-group,
.kaizen-touch-control__line {
  display: block;
}

.kaizen-touch-control__line {
  white-space: nowrap;
}

.kaizen-touch-control__line-group--light {
  color: var(--kaizen-white, #ffffff);
}

.kaizen-touch-control__line-group--accent {
  color: var(--kaizen-red, #ef3e33);
}

@media (max-width: 767.98px) {
  .kaizen-touch-control {
    min-height: clamp(390px, 116vw, 540px);
  }

  .kaizen-touch-control::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.38) 100%);
  }

  .kaizen-touch-control__inner {
    padding-block: 3.5rem;
  }

  .kaizen-touch-control__heading {
    font-size: clamp(2.45rem, 11.2vw, 4.75rem);
    line-height: 0.93;
  }
}
