.dm_product_feature__copy.site__copy h2 {
  letter-spacing: 0.03em;
  font-family: var(--font_heading);
  font-weight: bold;
}

.dm_product_feature {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 60px;
}
@supports (margin: clamp(1em, 1vw, 1em)) {
  .dm_product_feature {
    margin-top: clamp(60px, 8.4027777778vw, 110px);
  }
}
.dm_product_feature .site__inner {
  z-index: 100;
}
.dm_product_feature .button__container {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .dm_product_feature .button__container {
    justify-content: center;
  }
}

.dm_product_feature__content {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding-top: 44px;
  padding-bottom: 36px;
  min-height: 480px;
}
@supports (padding: clamp(1em, 1vw, 1em)) {
  .dm_product_feature__content {
    padding-top: clamp(44px, 4.8611111111vw, 70px);
    padding-bottom: clamp(36px, 4.8611111111vw, 70px);
  }
}

.dm_product_feature__copy.site__copy {
  color: var(--white);
}
@media (max-width: 768px) {
  .dm_product_feature__copy.site__copy {
    text-align: center;
  }
}
.dm_product_feature__copy.site__copy h2 {
  font-size: 24px;
  line-height: 1.1944444444;
}
@supports (font-size: clamp(1em, 1vw, 1em)) {
  .dm_product_feature__copy.site__copy h2 {
    font-size: clamp(24px, 2.5vw, 36px);
  }
}
.dm_product_feature__copy.site__copy h2 + p {
  margin-top: 0.8em;
}
.dm_product_feature__copy.site__copy p, .dm_product_feature__copy.site__copy li {
  font-size: 18px;
  line-height: 1.2083333333;
  text-wrap: pretty;
}
@supports (font-size: clamp(1em, 1vw, 1em)) {
  .dm_product_feature__copy.site__copy p, .dm_product_feature__copy.site__copy li {
    font-size: clamp(18px, 1.6666666667vw, 24px);
  }
}

.dm_product_feature__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dm_product_feature__background__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.dm_product_feature__background--align_middle .dm_product_feature__background__image {
  object-position: center;
}
.dm_product_feature__background--align_bottom .dm_product_feature__background__image {
  object-position: center bottom;
}

.dm_product_feature__background__fade {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--product_feature_fade);
}

.dm_product_feature__line__container {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  z-index: 20;
  mix-blend-mode: multiply;
}

.dm_product_feature__line {
  height: 32px;
  background-color: var(--blue);
}
@media (min-width: 769px) {
  .dm_product_feature__line {
    display: grid;
    grid-template-columns: 440fr 580fr;
    column-gap: 36px;
    background-color: transparent;
  }
  @supports (margin: clamp(1em, 1vw, 1em)) {
    .dm_product_feature__line {
      column-gap: clamp(36px, 5.5555555556vw, 80px);
    }
  }
}
@media (min-width: 769px) {
  .dm_product_feature__line span {
    display: block;
    height: 100%;
    background-color: var(--blue);
  }
}
