.dow-product-template.entry-content {
  font-family: var(--global--font-primary);
  color: var(--primary-blue);
  background-color: var(--global--color-background);
  line-height: var(--global--line-height-body);
  font-size: var(--global--font-size-base);
  font-weight: var(--global--font-weight);
  max-width: var(--responsive--alignwide-width);
  margin: 0 auto;
}

.dow-product-header {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-height: 500px;
  margin-bottom: 48px;
  background-color: var(--ciGrey);
  overflow: hidden;
  color: #FFF;

  .image-fade-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 50%;

    .dow-hero-image {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(to right, transparent 60%, #415364 100%);
    }
  }

  .hero-text-section {
    position: relative;
    width: 50%;
    margin-left: 64px;
    padding-right: 32px;
    z-index: 2;

    .product-title {
      margin-bottom: 16px;
    }

    .hero-text {
      font-family: var(--global--font-primary);
    }
  }

  &::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to right, transparent 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
  }

  @media screen and (max-width: 1200px) {
    flex-flow: row wrap;
    max-height: unset;

    .image-fade-container {
      width: 100%;

      .dow-hero-image {
        max-height: 300px;
      }

      &::after {
        background: linear-gradient(to bottom, transparent 60%, #415364 100%);
      }
    }

    .hero-text-section {
      width: 100%;
      margin-left: 0;
      padding-left: 16px;
      padding-right: 16px;
      padding-top: 24px;
      padding-bottom: 24px;
    }
  }
}

.dow-hero-section {
  width: 100%;
  margin-bottom: 2rem;
}

.dow-product-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dow-section {
  padding-left: 16px;
  padding-right: 16px;

  p {
    margin-bottom: 1rem;
  }

  ul {
    padding-left: 16px;
  }
}

.dow-section-heading {
  font-family: var(--global--font-primary);
  font-size: var(--heading--font-size-h2);
  font-weight: var(--heading--font-weight-strong);
  line-height: var(--global--line-height-heading);
  color: var(--primary-red);
  margin-top: 0;
  margin-bottom: 16px;
}

.dow-section-content {
  font-family: var(--entry-content--font-family);
}

.dow-faq-content {
  font-size: var(--global--font-size-sm);

  h3 {
    color: var(--ciGrey);
    margin-top: 16px;
    margin-bottom: 4px;
  }
}

.dow-cta-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 150px;
  overflow: hidden;
  margin: 2rem 0;

  .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFF;
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--global--font-size-lg);

    @media screen and (max-width: 768px) {
      font-size: var(--global--font-size-md);
    }

    span {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 8px;

      @media screen and (max-width: 414px) {
        flex-flow: column wrap;
        gap: 0;
        margin-top: 8px;
      }
    }
  }

  img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    object-position: center;
    transition: scale 1000ms ease-in-out;
  }

  &:hover {
    img {
      scale: 1.1;
    }
  }
}

@media screen and (max-width: 768px) {
  :root {
    --responsive--alignwide-width: 100dvw;
    --responsive--aligndefault-width: 100dvw;
  }
}
