.single-prod-brand {
  justify-content: flex-start;

  @media (min-width: 992px) {
    display: flex !important;
  }
}

.single-prod-hero-zone {
  display: grid;
  grid-template-columns: 1fr;

  @media (min-width: 992px) {
    grid-template-columns: 2fr 3fr;
    grid-template-rows: auto 1fr;
  }

  .prod-feat-img {
    order: 2;

    @media (min-width: 992px) {
      order: 1;
      grid-row: 1 / 3;
    }
  }

  .single-prod-header {
    order: 1;

    @media (min-width: 992px) {
      order: 2;
    }
  }

  .single-prod-info {
    order: 3;
    h2 {
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #dae2ea;
      margin-bottom: 1.5rem;

      @media (min-width: 992px) {
        margin-bottom: 18px;
        padding-bottom: 18px;
      }
    }
  }
}

#overview ul li {
  list-style: none;
  position: relative;
}
#overview ul li::before {
  content: "•";
  display: inline-block;
  color: #36cca7;
  font-size: 32px;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: -20px;
}
