.dpos-flexible > .dpos-hero,
.dpos-pos-page > .dpos-hero {
  position: relative;
  min-height: auto;
  padding-block: 15vh;
  background-color: var(--dpos-dark);
  background-image: linear-gradient(rgba(20, 20, 20, 0.6), rgba(20, 20, 20, 0.72)),
    radial-gradient(circle at 50% 30%, #4a4a4a 0%, #1c1c1c 75%);
  background-size: cover;
  background-position: center;
  color: var(--dpos-white);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.home .dpos-flexible > .dpos-hero {
  min-height: 100vh;
  padding-block: clamp(7rem, 10vw, 10rem) clamp(4rem, 8vw, 7rem);
}

.dpos-flexible > .dpos-hero.has-video,
.dpos-pos-page > .dpos-hero.has-video {
  background-image: none;
  background-color: #000;
}

.dpos-flexible > .dpos-hero.has-video::before,
.dpos-pos-page > .dpos-hero.has-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.dpos-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  filter: grayscale(100%) contrast(1.05) brightness(0.72);
}

.dpos-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 64rem;
}
.dpos-hero__title b, .dpos-hero__title strong { 
  font-weight: 900;
}
.dpos-hero__title {
  margin: 0;
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.dpos-hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--dpos-orange);
  z-index: 1;
}

.dpos-hero__title em::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--dpos-white);
  transform: translateY(-10px);
  z-index: -1;
}

.dpos-hero__text {
  margin: 1.75rem 0 0;
  max-width: 46rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.dpos-hero__text > :first-child {
  margin-top: 0;
}

.dpos-hero__text > :last-child {
  margin-bottom: 0;
}

.dpos-hero__actions {
  justify-content: center;
  margin-top: 2.5rem;
}
